/* ════════════════════════════════════════════════════════════════════════════
   BIKERENTAL THEME — main.css v3.1
   Cinematic MTB-relax homepage + reservation page layouts.

   Photo strategy: all photo slots use CSS vars (--hero-image / --about-image /
   --reservation-image) injected by the Customizer. When a slot is empty, a
   rich earthy gradient placeholder fills the role so the design holds up
   before the client uploads photos.
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Section base ──────────────────────────────────────────────────────── */
.m-section { padding: var(--cu-section-y) 0; }
.m-section--dark { background: var(--cu-ink); color: #fff; }
.m-section--soft { background: var(--cu-surface-2); }

.m-sec-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.m-sec-header h2 {
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
}
.m-sec-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--cu-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.55;
}


/* ════════════════════════════════════════════════════════════════════════════
   HERO — full-bleed photo, cinematic
   ════════════════════════════════════════════════════════════════════════════ */
.m-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    margin-top: 0;
}

.m-hero__photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}

.m-hero__photo--placeholder {
    background:
        radial-gradient(circle at 30% 20%, rgba(232,93,47,.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(31,63,46,.6) 0%, transparent 50%),
        linear-gradient(135deg, #0F1A15 0%, #1F3F2E 50%, #2A3A30 100%);
    animation: none;
}

/* Dark scrim — bottom-heavy for legibility, doesn't kill the photo */
.m-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(15,26,21,.35) 0%, rgba(15,26,21,.15) 30%, rgba(15,26,21,.65) 75%, rgba(15,26,21,.85) 100%),
        linear-gradient(90deg, rgba(15,26,21,.55) 0%, transparent 50%);
}

@keyframes heroKenBurns {
    from { transform: scale(1.06) translate(0,0); }
    to   { transform: scale(1.14) translate(-1%, -1%); }
}

.m-hero__inner {
    position: relative;
    padding: calc(var(--cu-header-h) + 60px) 0 100px;
    width: min(100% - 40px, var(--cu-container));
    margin: 0 auto;
}

/* Kicker pill — top of hero */
.m-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 14px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--cu-radius-pill);
    font: 600 9px/1 var(--cu-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}
.m-hero__kicker-dot {
    width: 8px; height: 8px;
    background: var(--cu-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--cu-accent);
    animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--cu-accent) 60%, transparent); }
    70%  { box-shadow: 0 0 0 12px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.m-hero__title {
    font-family: var(--cu-display);
    font-weight: 700;
    font-size: clamp(40px, 8.5vw, 72px);
    line-height: .95;
    letter-spacing: -.035em;
    color: #fff;
    margin: 0 0 28px;
    max-width: 14h;
}
.m-hero__title em {
    font-style: normal;
    color: var(--cu-accent);
}

.m-hero__sub {
    font-size: clamp(14px, 1.7vw, 21px);
    line-height: 1.5;
    color: color-mix(in oklab, #fff 88%, transparent);
    margin: 0 0 44px;
    max-width: 56ch;
}

.m-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
}

/* Stats row at bottom of hero */
.m-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 28px;
    max-width: 720px;
}
.m-hero__stat {
    flex: 1 1 0;
    min-width: 140px;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,.18);
}
.m-hero__stat:last-child { border-right: none; }
.m-hero__stat:not(:first-child) { padding-left: 24px; }

.m-hero__stat dt {
    font: 600 11px/1 var(--cu-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: color-mix(in oklab, #fff 65%, transparent);
    margin-bottom: 10px;
}
.m-hero__stat dd {
    font-family: var(--cu-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #fff;
    letter-spacing: -.02em;
}
.m-hero__stat dd span {
    font-size: .42em;
    font-weight: 500;
    color: color-mix(in oklab, #fff 65%, transparent);
    margin-left: 4px;
    vertical-align: 4px;
    letter-spacing: 0;
}

/* Scroll cue — bottom-right */
.m-hero__scroll {
    position: absolute;
    bottom: 36px;
    right: 32px;
    z-index: 2;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1.5px solid rgba(255,255,255,.4);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}
.m-hero__scroll span {
    width: 8px; height: 8px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg) translate(-2px,-2px);
    animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(-3px,-3px); opacity: .5; }
    50%      { transform: rotate(45deg) translate(0,0);       opacity: 1; }
}

@media (max-width: 760px) {
    .m-hero { min-height: 90vh; min-height: 90svh; }
    .m-hero__inner { padding-top: calc(var(--cu-header-h) + 64px); padding-bottom: 64px; }
    .m-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .m-hero__actions .m-btn { width: 100%; }
    .m-hero__stats { gap: 0; flex-wrap: wrap; padding-top: 20px; }
    .m-hero__stat { flex: 1 1 calc(50% - 8px); padding: 12px 0; min-width: 0; border-right: none; }
    .m-hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); padding-right: 16px; }
    .m-hero__stat:nth-child(even) { padding-left: 16px; }
    .m-hero__stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.18); padding-top: 16px; margin-top: 8px; }
    .m-hero__scroll { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   YOUR TRAIL — editorial section, copy left + portrait photo right
   ════════════════════════════════════════════════════════════════════════════ */
.m-trail {
    padding: var(--cu-section-y) 0;
    background: var(--cu-bg);
    position: relative;
}

.m-trail__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

.m-trail__copy h2 {
    font-size: clamp(30px, 5.5vw, 64px);
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -.03em;
}
.m-trail__lead {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
    color: var(--cu-ink-mid);
    margin: 0 0 36px;
    max-width: 56ch;
}

.m-trail__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    gap: 22px;
}
.m-trail__list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
}
.m-trail__icon {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    border-radius: 12px;
    flex-shrink: 0;
}
.m-trail__list h3 {
    font-family: var(--cu-display);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--cu-ink);
}
.m-trail__list p {
    margin: 0;
    color: var(--cu-muted);
    font-size: 15px;
    line-height: 1.55;
}

.m-trail__media {
    position: relative;
    margin: 0;
    border-radius: var(--cu-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--cu-shadow-lg);
    background: var(--cu-surface-3);
}
.m-trail__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.m-trail__media-placeholder {
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 70% 30%, rgba(232,93,47,.3) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(31,63,46,.4) 0%, transparent 50%),
        linear-gradient(135deg, #1F3F2E 0%, #0F1A15 100%);
}
.m-trail__caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(15,26,21,.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--cu-radius-pill);
    color: #fff;
    font: 600 12px/1 var(--cu-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.m-trail__caption svg { color: var(--cu-accent); }

@media (min-width: 960px) {
    .m-trail__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
    .m-trail__media { aspect-ratio: 4 / 5; }
}

/* ════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS — 3 large numbered steps
   ════════════════════════════════════════════════════════════════════════════ */
.m-section--steps { background: var(--cu-surface-2); }

.m-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    counter-reset: step;
}
.m-step {
    position: relative;
    background: var(--cu-surface);
    padding: 36px 28px 32px;
    border-radius: var(--cu-radius-lg);
    border: 1px solid var(--cu-border);
    transition: transform var(--cu-tx), box-shadow var(--cu-tx), border-color var(--cu-tx);
    overflow: hidden;
}
.m-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--cu-shadow-md);
    border-color: var(--cu-border-2);
}
.m-step__num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--cu-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: color-mix(in oklab, var(--cu-accent) 10%, transparent);
    letter-spacing: -.04em;
    pointer-events: none;
}
.m-step__ic {
    display: grid;
    place-items: center;
    width: 60px; height: 60px;
    background: var(--cu-accent);
    color: #fff;
    border-radius: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.m-step__title {
    font-family: var(--cu-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
}
.m-step__desc {
    color: var(--cu-muted);
    line-height: 1.55;
    margin: 0;
    font-size: 15px;
}

@media (min-width: 760px) {
    .m-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   PRICING — 3 plan cards, middle one featured
   ════════════════════════════════════════════════════════════════════════════ */
.m-section--pricing { background: var(--cu-bg); }

.m-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.m-plan {
    position: relative;
    background: var(--cu-surface);
    border: 1.5px solid var(--cu-border);
    border-radius: var(--cu-radius-lg);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    transition: transform var(--cu-tx), box-shadow var(--cu-tx), border-color var(--cu-tx);
}
.m-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--cu-shadow-md);
}
.m-plan.is-featured {
    border-color: var(--cu-accent);
    background: linear-gradient(180deg, color-mix(in oklab, var(--cu-accent) 3%, var(--cu-surface)) 0%, var(--cu-surface) 100%);
    box-shadow: var(--cu-shadow-md);
}
.m-plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cu-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--cu-radius-pill);
    font: 700 11px/1 var(--cu-mono);
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}
.m-plan__icon {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    border-radius: 14px;
    margin-bottom: 22px;
}
.m-plan.is-featured .m-plan__icon { background: var(--cu-accent); color: #fff; }

.m-plan__name {
    font-family: var(--cu-display);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--cu-ink);
}
.m-plan__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 4px;
}
.m-plan__price strong {
    font-family: var(--cu-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--cu-ink);
    letter-spacing: -.03em;
}
.m-plan__price span {
    font-family: var(--cu-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--cu-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.m-plan__unit {
    color: var(--cu-muted);
    font-size: 14px;
    margin: 0 0 24px;
}
.m-plan__perks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
    flex: 1;
}
.m-plan__perks li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 15px;
    color: var(--cu-ink-mid);
    line-height: 1.4;
}
.m-plan__perks li span {
    display: grid; place-items: center;
    width: 22px; height: 22px;
    background: var(--cu-success-soft);
    color: var(--cu-success);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.m-pricing__note {
    text-align: center;
    color: var(--cu-muted);
    margin: 40px auto 0;
    font-size: 14px;
    max-width: 600px;
}

@media (min-width: 880px) {
    .m-pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
    .m-plan.is-featured { transform: translateY(-12px); }
    .m-plan.is-featured:hover { transform: translateY(-16px); }
}

/* ════════════════════════════════════════════════════════════════════════════
   AGRITOURISM — full-bleed split: photo + body
   ════════════════════════════════════════════════════════════════════════════ */
.m-agri {
    background: var(--br-secondary);
    color: #fff;
    padding: var(--cu-section-y) 0;
    position: relative;
    overflow: hidden;
}

.m-agri__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

.m-agri .m-eyebrow {
    color: color-mix(in oklab, var(--cu-accent) 70%, #fff 30%);
}
.m-agri .m-eyebrow::before {
    background: currentColor;
}

.m-agri__title {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -.025em;
    max-width: 18ch;
}
.m-agri__lead {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    color: color-mix(in oklab, #fff 82%, transparent);
    margin: 0 0 36px;
    max-width: 60ch;
}

.m-agri__lead a {
    font-weight: 800;
    color: #fff;
    text-decoration: underline;
}

.m-agri__sub-heading {
    font-family: var(--cu-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: color-mix(in oklab, #fff 60%, transparent);
    margin: 0 0 18px;
}
.m-agri__features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    gap: 14px;
}
.m-agri__feature {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: center;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}
.m-agri__feature-icon {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    background: color-mix(in oklab, #1f3f2e 92%, #fff 8%);
    color: #fff;
    border-radius: 50%;
}

.m-agri__cta { margin-top: 36px; }
.m-agri__cta-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: color-mix(in oklab, #fff 55%, transparent);
    font-family: var(--cu-mono);
    letter-spacing: .04em;
}

.m-agri__media {
    margin: 0;
    border-radius: var(--cu-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--cu-shadow-lg);
    position: relative;
}
.m-agri__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.m-agri__media-placeholder {
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 50% 30%, rgba(232,93,47,.35) 0%, transparent 60%),
        linear-gradient(135deg, #2A4A38 0%, #0F1A15 100%);
}

@media (min-width: 960px) {
    .m-agri__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   CTA STRIP — final push
   ════════════════════════════════════════════════════════════════════════════ */
.m-cta {
    padding: 80px 0;
    background: var(--cu-ink);
    color: #fff;
}
.m-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}
.m-cta h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    margin: 0 0 8px;
    letter-spacing: -.025em;
}
.m-cta p {
    margin: 0;
    color: color-mix(in oklab, #fff 70%, transparent);
    font-size: 17px;
}
.m-cta .m-btn { justify-self: start; }

@media (min-width: 760px) {
    .m-cta__inner { grid-template-columns: 1fr auto; gap: 40px; }
    .m-cta .m-btn { justify-self: end; }
}

/* ════════════════════════════════════════════════════════════════════════════
   TRUST BAR — 4 icon items
   ════════════════════════════════════════════════════════════════════════════ */
.m-section--trust { background: var(--cu-bg); padding: 80px 0; }

.m-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.m-trust__item {
    text-align: left;
    padding: 0;
}
.m-trust__icon {
    display: grid;
    place-items: center;
    width: 56px; height: 56px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    border-radius: 16px;
    margin-bottom: 18px;
}
.m-trust__item h3 {
    font-family: var(--cu-display);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}
.m-trust__item p {
    margin: 0;
    color: var(--cu-muted);
    font-size: 14px;
    line-height: 1.55;
}

@media (min-width: 640px) { .m-trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .m-trust { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

/* ════════════════════════════════════════════════════════════════════════════
   RESERVATION PAGE — split layout: photo left, widget right
   ════════════════════════════════════════════════════════════════════════════ */
.m-resv {
    background: var(--cu-bg);
    min-height: 100vh;
    min-height: 100svh;
    margin-top: calc(var(--cu-header-h) * -1);
    padding-top: 0;
}
body:not(.home) .site-main:has(.m-resv) { padding-top: 0; }

.m-resv__split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100svh;
}

.m-resv__hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    padding: calc(var(--cu-header-h) + 36px) 32px 48px;
    display: flex;
    flex-direction: column;
}
.m-resv__hero img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.m-resv__hero-placeholder {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 30% 30%, rgba(232,93,47,.35) 0%, transparent 60%),
        linear-gradient(135deg, #1F3F2E 0%, #0F1A15 100%);
}
.m-resv__hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0,0,0,.8);
    /*background:*/
    /*    linear-gradient(180deg, rgba(15,26,21,.4) 0%, rgba(15,26,21,.65) 100%),*/
    /*    linear-gradient(90deg, rgba(15,26,21,.4) 0%, transparent 50%);*/
}

.m-resv__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 14px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--cu-radius-pill);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 32px;
    transition: background var(--cu-tx);
}
.m-resv__back:hover { background: rgba(255,255,255,.22); color: #fff; }
.m-resv__back svg { transform: rotate(180deg); }

.m-resv__hero-content {
    margin-top: auto;
}

.m-resv__title {
    font-family: var(--cu-display);
    font-size: clamp(40px, 7vw, 80px);
    line-height: .98;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -.03em;
}
.m-resv__title em {
    font-style: normal;
    color: var(--cu-accent);
}
.m-resv__lead {
    font-size: 18px;
    color: color-mix(in oklab, #fff 82%, transparent);
    margin: 0 0 28px;
    max-width: 40ch;
}

.m-resv__trust {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}
.m-resv__trust li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
}
.m-resv__trust li span {
    display: grid;
    place-items: center;
    width: 24px; height: 24px;
    background: var(--cu-accent);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.m-resv__help {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--cu-radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 14px;
    color: color-mix(in oklab, #fff 80%, transparent);
}
.m-resv__help svg { color: var(--cu-accent); flex-shrink: 0; }
.m-resv__help a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: auto;
}
.m-resv__help a:hover { color: var(--cu-accent); }

.m-resv__widget-wrap {
    background: var(--cu-bg);
    padding: 48px 24px 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.m-resv__widget {
    width: 100%;
    max-width: 720px;
}

/* Override widget styles for the dedicated page */
.m-resv__widget .br-widget {
    margin: 0;
    max-width: 100%;
    border-radius: var(--cu-radius-lg);
}

@media (min-width: 960px) {
    .m-resv__split {
        grid-template-columns: 5fr 7fr;
    }
    .m-resv__hero {
        padding: calc(var(--cu-header-h) + 64px) 56px 56px;
        min-height: 100vh;
        min-height: 100svh;
        position: sticky;
        top: 0;
    }
    .m-resv__widget-wrap {
        padding: calc(var(--cu-header-h) + 56px) 48px 80px;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   BLOG / PAGES (kept minimal, no emojis)
   ════════════════════════════════════════════════════════════════════════════ */
.entry-header { padding: 60px 0 40px; }
.entry-title {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -.025em;
}
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--cu-muted);
    font: 500 13px/1 var(--cu-mono);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.entry-content {
    max-width: var(--cu-container-narrow);
    margin: 0 auto;
    padding: 0 20px 60px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--cu-ink-mid);
}
.entry-content h2 { font-size: clamp(24px, 3vw, 36px); margin-top: 48px; }
.entry-content h3 { font-size: clamp(20px, 2.5vw, 28px); margin-top: 36px; }
.entry-content img,
.entry-content figure {
    margin: 32px 0;
    border-radius: var(--cu-radius-md);
    overflow: hidden;
}
.entry-content a {
    color: var(--cu-accent);
    border-bottom: 1.5px solid color-mix(in oklab, var(--cu-accent) 30%, transparent);
    transition: border-color var(--cu-tx);
}
.entry-content a:hover { border-bottom-color: var(--cu-accent); }
.entry-content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--cu-accent);
    background: var(--cu-surface-2);
    border-radius: 0 var(--cu-radius-md) var(--cu-radius-md) 0;
    font-size: 19px;
    line-height: 1.55;
    color: var(--cu-ink);
}

/* 404 */
.error-404 {
    text-align: center;
    padding: 120px 24px;
}
.error-404 h1 {
    font-size: clamp(96px, 16vw, 200px);
    line-height: 1;
    margin: 0 0 24px;
    color: var(--cu-accent);
    letter-spacing: -.04em;
}
.error-404 p {
    font-size: 18px;
    color: var(--cu-muted);
    margin: 0 0 32px;
}

.cta-action  {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: inline-flex;
    z-index: 100;
    justify-content: center;
}