:root {
    --ink: #14213d;
    --ink-soft: #233557;
    --paper: #f5f4ef;
    --white: #ffffff;
    --accent: #ffb703;
    --accent-dark: #d88f00;
    --teal: #168c82;
    --whatsapp: #16883f;
    --whatsapp-hover: #0f7333;
    --phone: #ffb703;
    --muted: #697386;
    --line: #dfe3e8;
    --radius: 24px;
    --shadow: 0 22px 60px rgba(20, 33, 61, .12);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }
.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 9999;
    padding: .75rem 1rem;
    background: var(--white);
    color: var(--ink);
}
.skip-link:focus { top: 1rem; }
.section-space { padding: 6rem 0; }
.section-kicker {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 1rem;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.section-kicker span {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: currentColor;
}
.section-kicker--light { color: #9de0d9; }
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 3rem;
}
.section-heading h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-heading--center {
    display: block;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.section-heading--center > p { margin-top: 1.25rem; }
.btn {
    border-radius: 999px;
    font-weight: 750;
}
.btn-accent {
    border-color: var(--accent);
    background: var(--accent);
    color: #171a21;
}
.btn-accent:hover, .btn-accent:focus {
    border-color: #ffc53d;
    background: #ffc53d;
    color: #171a21;
}
.btn-whatsapp {
    border-color: var(--whatsapp);
    background: var(--whatsapp);
    color: var(--white);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    border-color: var(--whatsapp-hover);
    background: var(--whatsapp-hover);
    color: var(--white);
}
.btn-phone {
    border-color: var(--phone);
    background: var(--phone);
    color: #171a21;
}
.btn-phone:hover, .btn-phone:focus {
    border-color: #ffc53d;
    background: #ffc53d;
    color: #171a21;
}
.btn-ghost {
    border: 1px solid rgba(255,255,255,.38);
    color: var(--white);
}
.btn-ghost:hover, .btn-ghost:focus { background: var(--white); color: var(--ink); }

.utility-bar {
    padding: .55rem 0;
    background: var(--ink);
    color: rgba(255,255,255,.82);
    font-size: .84rem;
}
.utility-bar a { color: var(--white); text-decoration: none; }
.site-header .navbar {
    position: relative;
    z-index: 20;
    padding: .95rem 0;
    background: rgba(255,255,255,.96);
    box-shadow: 0 1px 0 rgba(20,33,61,.08);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.navbar-brand img { width: 96px; height: 34px; object-fit: contain; }
.navbar-brand span { display: grid; }
.navbar-brand strong { font-size: 1rem; }
.navbar-nav .nav-link {
    margin: 0 .12rem;
    padding: .6rem .64rem !important;
    color: var(--ink-soft);
    font-size: .91rem;
    font-weight: 700;
    border-radius: 999px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background: var(--paper);
    color: var(--ink);
}
.language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 850;
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 12%, rgba(22,140,130,.32), transparent 34%),
        linear-gradient(135deg, #101c34 0%, #172b4f 63%, #0d5056 130%);
}
.hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
    gap: 2rem;
    align-items: center;
    min-height: 720px;
}
.hero-copy { position: relative; z-index: 3; padding: 5rem 0; }
.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3rem, 6.5vw, 5.85rem);
    font-weight: 850;
    letter-spacing: -.068em;
    line-height: .94;
}
.hero-lead { max-width: 720px; margin: 2rem 0 0; color: rgba(255,255,255,.76); font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
    margin-top: 3.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,.16);
}
.hero-facts div { display: grid; gap: .15rem; padding-right: 1.2rem; }
.hero-facts strong { color: var(--white); font-size: 1.15rem; }
.hero-facts span { color: rgba(255,255,255,.58); font-size: .8rem; }
.hero-visual { position: relative; align-self: stretch; min-height: 620px; }
.hero-visual > img {
    position: absolute;
    z-index: 2;
    right: -12%;
    bottom: 2%;
    width: 118%;
    height: auto;
    max-width: none;
    filter: drop-shadow(0 34px 30px rgba(0,0,0,.28));
    transform: rotate(-2deg);
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero-orbit--one { right: -26%; bottom: -22%; width: 680px; height: 680px; }
.hero-orbit--two { right: -6%; bottom: -3%; width: 460px; height: 460px; }
.hero-badge {
    position: absolute;
    z-index: 4;
    top: 17%;
    right: 0;
    display: flex;
    gap: .8rem;
    align-items: center;
    padding: .9rem 1.1rem;
    color: var(--ink);
    background: rgba(255,255,255,.92);
    border-radius: 18px;
    box-shadow: var(--shadow);
    font-size: .8rem;
    backdrop-filter: blur(14px);
}
.hero-badge i { color: var(--teal); font-size: 1.4rem; }
.hero-price-note {
    position: absolute;
    z-index: 4;
    right: 3%;
    bottom: 12%;
    display: grid;
    padding: 1rem 1.25rem;
    color: var(--ink);
    background: var(--accent);
    border-radius: 18px;
    transform: rotate(3deg);
}
.hero-price-note span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-price-note strong { font-size: 1.05rem; }

.journeys { background: var(--paper); }
.journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.journey-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 2rem;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    transition: transform .25s ease, box-shadow .25s ease;
}
.journey-card::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(150deg, transparent, rgba(0,0,0,.28));
    content: "";
}
.journey-card > * { position: relative; z-index: 1; }
.journey-card:hover { color: var(--white); box-shadow: var(--shadow); transform: translateY(-6px); }
.journey-card--city { background: #1f5d73; }
.journey-card--road { background: #1c355d; }
.journey-card--family { background: #58755a; }
.journey-card--group { background: #745647; }
.journey-card__number { position: absolute; top: 1.2rem; right: 1.5rem; color: rgba(255,255,255,.36); font-size: 3.2rem; font-weight: 800; }
.journey-card > i { margin: 3.5rem 0 2rem; font-size: 2rem; }
.journey-card h3 { font-size: 1.35rem; font-weight: 800; }
.journey-card p { color: rgba(255,255,255,.72); font-size: .93rem; }
.journey-card__link { position: absolute; bottom: 1.8rem; display: flex; gap: .6rem; align-items: center; font-size: .88rem; font-weight: 800; }

.featured { background: var(--white); }
.car-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.4rem; }
.car-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.car-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }
.car-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; background: #f2f4f6; }
.car-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.car-card:hover .car-card__media img { transform: scale(1.035); }
.car-card__price {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: .45rem .7rem;
    color: var(--ink);
    background: rgba(255,255,255,.94);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 850;
}
.car-card__body { padding: 1.4rem; }
.car-card__eyebrow { margin: 0 0 .3rem; color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.car-card h3 { margin: 0; font-size: 1.25rem; font-weight: 850; }
.car-card h3 a { color: inherit; text-decoration: none; }
.car-card__specs { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin: 1.2rem 0; color: var(--muted); font-size: .8rem; }
.car-card__specs span { display: flex; gap: .38rem; align-items: center; }
.car-card__specs i { color: var(--teal); }
.car-card__actions { display: grid; grid-template-columns: minmax(0,1fr) 2.8rem; gap: .6rem; align-items: stretch; padding-top: 1rem; border-top: 1px solid var(--line); }
.car-card__link { display: flex; justify-content: space-between; align-items: center; color: var(--ink); font-size: .88rem; font-weight: 800; text-decoration: none; }
.car-card__whatsapp { display: grid; place-items: center; min-height: 2.8rem; color: var(--white); background: var(--whatsapp); border-radius: 50%; text-decoration: none; }
.car-card__whatsapp:hover, .car-card__whatsapp:focus { color: var(--white); background: var(--whatsapp-hover); }

.pickup { padding-top: 2rem; background: var(--white); }
.pickup-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 590px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-radius: 34px;
    box-shadow: var(--shadow);
}
.pickup-map { position: relative; overflow: hidden; min-height: 440px; background: #dce6df; }
.pickup-map::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(32deg, transparent 42%, rgba(255,255,255,.9) 43%, rgba(255,255,255,.9) 47%, transparent 48%), linear-gradient(-35deg, transparent 30%, rgba(20,33,61,.08) 31%, rgba(20,33,61,.08) 34%, transparent 35%);
    background-size: 180px 180px, 230px 230px;
    content: "";
}
.map-line { position: absolute; height: 8px; background: rgba(255,255,255,.85); border-radius: 99px; transform-origin: left center; }
.map-line--one { top: 27%; left: -10%; width: 125%; transform: rotate(17deg); }
.map-line--two { top: 68%; left: -20%; width: 140%; transform: rotate(-22deg); }
.map-line--three { top: 5%; left: 58%; width: 95%; transform: rotate(76deg); }
.map-pin { position: absolute; z-index: 2; top: 47%; left: 48%; display: grid; place-items: center; width: 66px; height: 66px; color: var(--white); background: var(--teal); border: 8px solid rgba(255,255,255,.65); border-radius: 50%; box-shadow: 0 14px 30px rgba(20,33,61,.25); }
.map-label { position: absolute; z-index: 2; top: 60%; left: 48%; padding: .7rem 1rem; color: var(--ink); background: var(--white); border-radius: 12px; font-size: .82rem; }
.pickup-copy { padding: clamp(2.5rem, 5vw, 5.2rem); }
.pickup-copy h2 { max-width: 650px; margin: 0 0 1.5rem; font-size: clamp(2.3rem, 4.5vw, 4.2rem); font-weight: 850; letter-spacing: -.055em; line-height: 1; }
.pickup-copy > p:not(.section-kicker) { color: rgba(255,255,255,.67); }
.pickup-steps { display: grid; gap: 1rem; margin: 2rem 0; padding: 0; list-style: none; }
.pickup-steps li { display: flex; gap: 1rem; align-items: center; }
.pickup-steps li > span { display: grid; flex: 0 0 42px; place-items: center; width: 42px; height: 42px; color: var(--ink); background: var(--accent); border-radius: 50%; font-weight: 850; }
.pickup-steps div { display: grid; }
.pickup-steps small { color: rgba(255,255,255,.58); }

.included { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; }
.benefit { padding: 2rem 1.7rem; background: var(--white); border-radius: var(--radius); }
.benefit i { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 2.8rem; color: var(--teal); background: rgba(22,140,130,.1); border-radius: 14px; font-size: 1.2rem; }
.benefit h3 { font-size: 1.05rem; font-weight: 850; }
.benefit p { margin: 0; color: var(--muted); font-size: .9rem; }

.faq-home h2 { font-size: clamp(2.3rem,4vw,3.6rem); font-weight: 850; letter-spacing: -.05em; line-height: 1.04; }
.accordion-item { border-color: var(--line); }
.accordion-button { padding: 1.4rem .2rem; color: var(--ink); font-weight: 800; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--teal); background: transparent; }
.accordion-body { padding: 0 .2rem 1.5rem; color: var(--muted); }

.closing-cta { padding: 4.5rem 0; color: var(--white); background: linear-gradient(115deg, var(--teal), #0c5e68); }
.closing-cta__inner { display: flex; justify-content: space-between; gap: 3rem; align-items: center; }
.closing-cta h2 { max-width: 760px; margin: 0; font-size: clamp(2.2rem,4vw,3.8rem); font-weight: 850; letter-spacing: -.05em; line-height: 1.02; }
.closing-cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; min-width: 330px; }

.site-footer { padding: 5rem 0 1.5rem; color: rgba(255,255,255,.7); background: #0d172b; }
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-kicker { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.footer-bottom { margin-top: 4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }
.site-footer--contact { padding-top: 3.5rem; }
.footer-contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
.mobile-actions {
    position: fixed;
    z-index: 50;
    right: .8rem;
    bottom: .8rem;
    left: .8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--ink);
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.mobile-actions a { display: flex; gap: .5rem; justify-content: center; align-items: center; padding: .8rem; color: var(--white); text-decoration: none; font-size: .84rem; font-weight: 800; }
.mobile-actions .mobile-action--phone { color: var(--ink); background: var(--phone); }
.mobile-actions .mobile-action--whatsapp { color: var(--white); background: var(--whatsapp); }

.page-hero { padding: 5rem 0 4rem; color: var(--white); background: linear-gradient(135deg,var(--ink),#174e5b); }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.6rem,6vw,5rem); font-weight: 850; letter-spacing: -.06em; line-height: .98; }
.page-hero p { max-width: 760px; margin: 1.4rem 0 0; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.content-section { padding: 5rem 0; }
.content-card { height: 100%; padding: 2rem; background: var(--paper); border-radius: var(--radius); }
.content-card h2, .content-card h3 { font-weight: 850; }
.vehicle-detail-hero { padding: 3rem 0 5rem; background: linear-gradient(180deg, var(--paper), var(--white)); }
.vehicle-detail-back { display: inline-flex; align-items: center; color: var(--ink-soft); font-size: .9rem; font-weight: 800; text-decoration: none; }
.vehicle-detail-image { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); }
.vehicle-detail-image img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.vehicle-detail-hero h1 { margin: 0; font-size: clamp(2.8rem,5vw,5rem); font-weight: 850; letter-spacing: -.06em; line-height: .96; }
.vehicle-detail-lead { margin: 1.5rem 0; color: var(--muted); }
.vehicle-detail-price { margin: 1.5rem 0; font-size: 1.05rem; }
.vehicle-detail-price strong { color: var(--ink); font-size: 1.65rem; }
.vehicle-detail-actions { display: grid; gap: .75rem; margin-top: 1.5rem; }
.vehicle-facts__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; }
.vehicle-facts__grid div { display: grid; gap: .15rem; padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.vehicle-facts__grid span { color: var(--muted); font-size: .78rem; }
.vehicle-equipment { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .6rem 1rem; margin: 0; padding: 0; list-style: none; }
.vehicle-equipment li { display: flex; gap: .55rem; align-items: flex-start; }
.vehicle-equipment i { margin-top: .35rem; color: var(--teal); }
.vehicle-pricing__minimum, .vehicle-pricing__deposit { padding: .8rem 1rem; background: var(--white); border-radius: 14px; }
.booking-section { padding: 1rem 0 5rem; }
.booking-panel { display: flex; justify-content: space-between; gap: 2rem; align-items: center; padding: 2rem; color: var(--white); background: linear-gradient(115deg,var(--teal),#0c5e68); border-radius: 24px; }
.booking-panel h2 { font-weight: 850; }
.booking-panel p:last-child { margin-bottom: 0; color: rgba(255,255,255,.75); }
.booking-frame { margin-top: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }
.booking-frame iframe { display: block; width: 100%; height: 2800px; border: 0; }
.opening-countdown { display: flex; gap: .8rem; align-items: center; padding: 1rem 1.15rem; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 28px rgba(20,33,61,.08); }
.opening-countdown__dot { flex: 0 0 12px; width: 12px; height: 12px; background: var(--muted); border-radius: 50%; box-shadow: 0 0 0 6px rgba(105,115,134,.12); }
.opening-countdown div { display: grid; }
.opening-countdown strong { color: var(--ink); }
.opening-countdown small { color: var(--muted); }
.opening-countdown--open .opening-countdown__dot { background: var(--whatsapp); box-shadow: 0 0 0 6px rgba(22,136,63,.14); }
.opening-countdown--before .opening-countdown__dot { background: var(--phone); box-shadow: 0 0 0 6px rgba(255,183,3,.18); }
.price-catalog { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 38px rgba(20,33,61,.07); }
.price-catalog .table { margin: 0; }
.price-catalog th { padding: 1rem; color: var(--muted); background: var(--paper); font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; }
.price-catalog td { padding: .85rem 1rem; }
.price-catalog__car { display: flex; gap: .8rem; align-items: center; min-width: 230px; color: var(--ink); text-decoration: none; }
.price-catalog__car img { width: 88px; height: 56px; object-fit: cover; background: var(--paper); border-radius: 10px; }
.price-catalog__actions { display: flex; gap: .4rem; justify-content: flex-end; }

@media (max-width: 1199.98px) {
    .hero-grid { grid-template-columns: 1fr .8fr; }
    .hero h1 { font-size: clamp(3rem,6vw,4.9rem); }
    .journey-grid, .benefit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 991.98px) {
    body { padding-bottom: 76px; }
    .section-space { padding: 4.5rem 0; }
    .utility-bar { display: none; }
    .navbar-brand span { display: none; }
    .navbar-collapse { padding: 1rem 0; }
    .footer-contact-actions { justify-content: flex-start; }
    .hero { min-height: auto; }
    .hero-grid { display: block; min-height: auto; }
    .hero-copy { padding: 5rem 0 1rem; }
    .hero-visual { min-height: 500px; }
    .hero-visual > img { right: -8%; width: 80%; }
    .hero-badge { right: 8%; }
    .hero-price-note { right: 13%; }
    .section-heading { display: block; }
    .section-heading > p { max-width: 700px; margin-top: 1rem; }
    .car-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .pickup-panel { grid-template-columns: 1fr; }
    .pickup-map { min-height: 380px; }
    .closing-cta__inner { display: block; }
    .closing-cta__actions { justify-content: flex-start; margin-top: 2rem; }
}
@media (max-width: 575.98px) {
    .section-space { padding: 3.7rem 0; }
    .hero h1 { font-size: 3.25rem; }
    .hero-lead { font-size: 1rem; }
    .hero-actions .btn { width: 100%; }
    .hero-facts { gap: 1rem; }
    .hero-facts div { padding-right: 0; }
    .hero-visual { min-height: 370px; }
    .hero-visual > img { right: -28%; bottom: 0; width: 125%; }
    .hero-badge { top: 6%; right: 0; }
    .hero-price-note { right: 0; bottom: 6%; }
    .journey-grid, .car-grid, .benefit-grid { grid-template-columns: 1fr; }
    .journey-card { min-height: 310px; }
    .pickup-panel { border-radius: 24px; }
    .pickup-copy { padding: 2rem 1.4rem; }
    .pickup-copy h2 { font-size: 2.5rem; }
    .closing-cta__actions, .closing-cta__actions .btn { width: 100%; }
    .vehicle-facts__grid, .vehicle-equipment { grid-template-columns: 1fr; }
    .booking-panel { display: grid; }
    .booking-panel .btn { width: 100%; }
}
