/* ============================================================
   MISS BEACH HAVEN — bespoke theme
   Pixel-targeted to missbeachhaven.com (live Neve customizer)
   Tokens lifted directly from the live site:
     navy     #00203b  (chrome, headings, hero overlay)  [nv-secondary-accent]
     maroon   #9e150f  (links, primary CTA)              [nv-primary-accent]
     teal     #005470  (CTA band background)
     sand     #f5edd0  (welcome / alt section bg)
     cyan     #1f9ec9  (leaping-fish logo splash accent)
     text     #08090e  /  muted #5a5a5a
     display  Jomolhari (serif, headings)
     body     Montserrat 400/500/600/700
   ============================================================ */

:root {
    --mbh-navy:          #00203b;
    --mbh-navy-2:        #003355;
    --mbh-maroon:        #9e150f;
    --mbh-maroon-hover:  #7d0f0a;
    --mbh-teal:          #005470;
    --mbh-teal-hover:    #00405680;
    --mbh-cyan:          #1f9ec9;
    --mbh-sand:          #f5edd0;
    --mbh-sand-2:        #fafae1;
    --mbh-site-bg:       #ffffff;
    --mbh-text:          #08090e;
    --mbh-text-muted:    #5a5a5a;
    --mbh-text-on-dark:  #ffffff;
    --mbh-line:          rgba(0, 32, 59, .10);
    --mbh-line-dark:     rgba(255, 255, 255, .14);
    --mbh-radius:        6px;
    --mbh-radius-pill:   999px;
    --mbh-radius-card:   10px;
    --mbh-shadow-card:   0 2px 4px rgba(0,32,59,.05), 0 14px 34px rgba(0,32,59,.09);
    --mbh-shadow-elev:   0 14px 40px rgba(0,16,30,.22);
    --mbh-container:     1200px;
    --mbh-container-wide:1340px;
    --mbh-h-header:      88px;
    --mbh-fs-h1:         3.4rem;
    --mbh-fs-h2:         2.4rem;
    --mbh-fs-h3:         1.5rem;
    --mbh-fs-h4:         1.1rem;
    --mbh-ff-display:    "Jomolhari", "Georgia", "Times New Roman", serif;
    --mbh-ff-body:       "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
    scroll-padding-top: var(--mbh-h-header);
}
body {
    margin: 0;
    background: var(--mbh-site-bg);
    color: var(--mbh-text);
    font-family: var(--mbh-ff-body);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--mbh-maroon); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--mbh-maroon-hover); }

/* Heading type scale — Jomolhari display serif. (app.css preflight resets all
   h1..h6 to 1rem; we restore a full scale here so unsized headings don't
   collapse to body size — see reference_mmcms_rich_content_h3_unsized.) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--mbh-ff-display);
    color: var(--mbh-navy);
    margin: 0 0 .55em;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .01em;
    overflow-wrap: anywhere;
}
h1 { font-size: var(--mbh-fs-h1); line-height: 1.1; }
h2 { font-size: var(--mbh-fs-h2); }
h3 { font-size: var(--mbh-fs-h3); }
h4 { font-size: var(--mbh-fs-h4); }
h5 { font-size: 1rem; }
h6 { font-size: .9rem; }
p  { margin: 0 0 1.1em; }

.mbh-uppercase { text-transform: uppercase; letter-spacing: .04em; }

/* ── Layout helpers ─────────────────────────────────────────── */
.mbh-container {
    width: 100%;
    max-width: var(--mbh-container);
    margin-inline: auto;
    padding-inline: 22px;
}
.mbh-container--wide { max-width: var(--mbh-container-wide); }
.mbh-section { padding: 84px 0; }
.mbh-section--tight { padding: 56px 0; }
.mbh-section--sand { background: var(--mbh-sand); }
.mbh-section--sand-2 { background: var(--mbh-sand-2); }
.mbh-eyebrow {
    font-family: var(--mbh-ff-body);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .8rem;
    font-weight: 600;
    color: var(--mbh-maroon);
    margin: 0 0 .9rem;
}
.skip-to-content {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--mbh-navy); color: #fff; padding: 10px 18px;
}
.skip-to-content:focus { left: 8px; top: 8px; }

/* ── Buttons ────────────────────────────────────────────────── */
.mbh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    font-family: var(--mbh-ff-body);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
    padding: 16px 30px;
    border-radius: var(--mbh-radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
    white-space: nowrap;
}
.mbh-btn:active { transform: translateY(1px); }
.mbh-btn--primary { background: var(--mbh-maroon); color: #fff; box-shadow: 0 8px 20px rgba(158,21,15,.28); }
.mbh-btn--primary:hover { background: var(--mbh-maroon-hover); color: #fff; }
.mbh-btn--navy { background: var(--mbh-navy); color: #fff; }
.mbh-btn--navy:hover { background: var(--mbh-navy-2); color: #fff; }
.mbh-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.mbh-btn--ghost:hover { background: #fff; color: var(--mbh-navy); border-color: #fff; }
.mbh-btn--outline { background: transparent; color: var(--mbh-navy); border-color: var(--mbh-navy); }
.mbh-btn--outline:hover { background: var(--mbh-navy); color: #fff; }
.mbh-btn--lg { padding: 19px 40px; font-size: 1rem; }
.mbh-btn__icon { width: 18px; height: 18px; fill: currentColor; }

/* ── Header ─────────────────────────────────────────────────── */
.mbh-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--mbh-line);
    transition: box-shadow .2s ease, background .2s ease;
}
.mbh-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,32,59,.10); }
.mbh-header__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    min-height: var(--mbh-h-header);
}
.mbh-logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.mbh-logo img { height: 60px; width: auto; }
.mbh-logo__word {
    display: flex; flex-direction: column; line-height: 1;
}
.mbh-logo__word b {
    font-family: var(--mbh-ff-display); font-weight: 400; font-size: 1.32rem;
    color: var(--mbh-navy); letter-spacing: .02em;
}
.mbh-logo__word span {
    font-family: var(--mbh-ff-body); font-size: .58rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .16em; color: var(--mbh-maroon); margin-top: 4px;
}

.mbh-nav__menu { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.mbh-nav__menu > li { position: relative; }
.mbh-nav__menu > li > a {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--mbh-ff-body); font-weight: 600; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--mbh-navy); padding: 12px 14px; border-radius: var(--mbh-radius);
}
.mbh-nav__menu > li > a:hover { color: var(--mbh-maroon); }
.mbh-nav__submenu {
    position: absolute; top: calc(100% + 4px); left: 0; min-width: 230px;
    list-style: none; margin: 0; padding: 8px;
    background: #fff; border: 1px solid var(--mbh-line); border-radius: var(--mbh-radius-card);
    box-shadow: var(--mbh-shadow-card);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease; z-index: 60;
}
.mbh-nav__menu > li:hover > .mbh-nav__submenu,
.mbh-nav__menu > li:focus-within > .mbh-nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.mbh-nav__submenu a {
    display: block; padding: 10px 14px; border-radius: var(--mbh-radius);
    font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
    color: var(--mbh-navy);
}
.mbh-nav__submenu a:hover { background: var(--mbh-sand); color: var(--mbh-maroon); }

.mbh-header__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.mbh-burger {
    display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--mbh-navy);
}
.mbh-burger svg { width: 28px; height: 28px; }

/* ── Mobile drawer ──────────────────────────────────────────── */
.mbh-mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,16,30,.55); z-index: 200;
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.mbh-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.mbh-mobile-menu {
    position: fixed; top: 0; right: 0; height: 100%; width: min(340px, 86vw); z-index: 210;
    background: var(--mbh-navy); color: #fff; transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
    overflow-y: auto;
}
.mbh-mobile-menu.is-open { transform: translateX(0); }
.mbh-mobile-menu__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid var(--mbh-line-dark);
}
.mbh-mobile-menu__head img { height: 46px; }
.mbh-mobile-menu__head .mbh-logo__word b,
.mbh-mobile-menu__head .mbh-logo__word span { color: #fff; }
.mbh-mobile-menu__close { background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.mbh-mobile-menu__list { list-style: none; margin: 0; padding: 10px 0; flex: 1; }
.mbh-mobile-menu__list > li { border-bottom: 1px solid var(--mbh-line-dark); }
.mbh-mobile-menu__list a,
.mbh-mobile-menu__list > li > span {
    display: block; padding: 15px 22px; color: #fff;
    font-family: var(--mbh-ff-body); font-weight: 600; font-size: .92rem;
    text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
}
.mbh-mobile-menu__list a:hover { color: var(--mbh-cyan); }
.mbh-mobile-submenu { list-style: none; margin: 0; padding: 0 0 8px; background: rgba(0,0,0,.18); }
.mbh-mobile-submenu a { padding: 12px 34px; font-size: .82rem; opacity: .92; }
.mbh-mobile-menu__foot { padding: 18px 22px; border-top: 1px solid var(--mbh-line-dark); display: grid; gap: 10px; }

/* ── Hero ───────────────────────────────────────────────────── */
.mbh-hero { position: relative; min-height: 78vh; display: flex; align-items: center; isolation: isolate; }
.mbh-hero__bg { position: absolute; inset: 0; z-index: -2; }
.mbh-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.mbh-hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(0,32,59,.34) 0%, rgba(0,32,59,.30) 45%, rgba(0,16,30,.62) 100%);
}
.mbh-hero__inner { text-align: center; color: #fff; max-width: 880px; margin-inline: auto; padding: 120px 0; }
.mbh-hero__title {
    color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02;
    text-transform: uppercase; letter-spacing: .03em; margin: 0 0 .2em;
    text-shadow: 0 4px 30px rgba(0,16,30,.5);
}
.mbh-hero__subtitle {
    font-family: var(--mbh-ff-body); font-weight: 600; font-size: clamp(.95rem, 2.4vw, 1.35rem);
    text-transform: uppercase; letter-spacing: .22em; color: #fff; margin: 0 0 2rem;
}
.mbh-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Welcome (media + text) ─────────────────────────────────── */
.mbh-welcome__grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
}
.mbh-welcome__media { position: relative; }
.mbh-welcome__media img {
    width: 100%; border-radius: var(--mbh-radius-card); box-shadow: var(--mbh-shadow-card);
    aspect-ratio: 4 / 3; object-fit: cover;
}
.mbh-welcome__media::before {
    content: ""; position: absolute; left: -16px; top: -16px; width: 70%; height: 70%;
    border: 3px solid var(--mbh-cyan); border-radius: var(--mbh-radius-card); z-index: -1;
}
.mbh-welcome__body h2 { margin-bottom: .5em; }
.mbh-welcome__body .mbh-btn { margin-top: 12px; }

/* ── CTA band (teal) ────────────────────────────────────────── */
.mbh-ctaband { background: var(--mbh-teal); color: #fff; text-align: center; padding: 72px 0; }
.mbh-ctaband h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6em; }
.mbh-ctaband p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto 1.8em; }

/* ── Reviews wall (sunset cover) ────────────────────────────── */
.mbh-reviews { position: relative; padding: 96px 0; isolation: isolate; }
.mbh-reviews__bg { position: absolute; inset: 0; z-index: -2; }
.mbh-reviews__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 18%; }
.mbh-reviews::after {
    content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(124,105,88,.55);
}
.mbh-reviews__title { text-align: center; color: #fff; margin-bottom: 48px; font-size: clamp(1.8rem,4.5vw,2.6rem); text-shadow: 0 3px 20px rgba(0,0,0,.4); }
.mbh-reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1080px; margin-inline: auto; }
.mbh-review {
    background: #fff; border-radius: var(--mbh-radius-card); padding: 30px 32px;
    box-shadow: var(--mbh-shadow-elev);
}
.mbh-review__stars { color: #f5b301; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 14px; }
.mbh-review__text { font-size: 1.02rem; color: #2a2a2a; line-height: 1.65; margin: 0 0 14px; }
.mbh-review__author { text-align: right; font-weight: 600; color: var(--mbh-navy); font-size: .92rem; }
.mbh-review img { width: 100%; height: auto; border-radius: var(--mbh-radius); display: block; }

/* ── Blog feed ──────────────────────────────────────────────── */
.mbh-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mbh-card {
    background: #fff; border: 1px solid var(--mbh-line); border-radius: var(--mbh-radius-card);
    overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.mbh-card:hover { transform: translateY(-4px); box-shadow: var(--mbh-shadow-card); }
.mbh-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mbh-sand); }
.mbh-card__media img { width: 100%; height: 100%; object-fit: cover; }
.mbh-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mbh-card__date { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mbh-text-muted); font-weight: 600; }
.mbh-card__title { font-size: 1.2rem; margin: 0; }
.mbh-card__title a { color: var(--mbh-navy); }
.mbh-card__title a:hover { color: var(--mbh-maroon); }
.mbh-card__excerpt { color: var(--mbh-text-muted); font-size: .92rem; margin: 0; }

/* ── Inner page hero ────────────────────────────────────────── */
.mbh-pagehero { position: relative; background: var(--mbh-navy); color: #fff; padding: 80px 0 64px; text-align: center; isolation: isolate; }
.mbh-pagehero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(31,158,201,.18), rgba(0,32,59,0)); }
.mbh-pagehero h1 { color: #fff; font-size: clamp(2.2rem,5vw,3.4rem); margin: 0; }
.mbh-pagehero p { color: rgba(255,255,255,.85); max-width: 640px; margin: .8em auto 0; }
.mbh-breadcrumbs { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.mbh-breadcrumbs a { color: rgba(255,255,255,.85); }

/* ── Rich content (inner pages, blog posts) ─────────────────── */
.mbh-prose { max-width: 760px; margin-inline: auto; }
.mbh-prose h2 { margin: 1.6em 0 .5em; }
.mbh-prose h3 { margin: 1.4em 0 .4em; }
.mbh-prose img { border-radius: var(--mbh-radius-card); margin: 1.4em 0; }
.mbh-prose ul, .mbh-prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.mbh-prose li { margin-bottom: .4em; }
.mbh-prose blockquote {
    border-left: 4px solid var(--mbh-cyan); margin: 1.4em 0; padding: .4em 1.2em;
    color: var(--mbh-text-muted); font-style: italic;
}

/* ── Core Pages Mendol templates (inner-hero / inner-content) ──
   The default modules/pages/pages/show.blade.php emits these core class
   names; style them on-brand so About/Contact render without a template
   override. */
.inner-page-wrapper { background: var(--mbh-site-bg); }
.inner-hero { position: relative; background: var(--mbh-navy); color: #fff; isolation: isolate; }
.inner-hero-banner {
    min-height: 240px; background: linear-gradient(135deg, var(--mbh-navy), var(--mbh-teal));
    background-size: cover; background-position: center;
}
.inner-hero-overlay {
    position: absolute; inset: 0; display: grid; place-items: center;
    background: linear-gradient(180deg, rgba(0,32,59,.55), rgba(0,32,59,.78)); text-align: center; padding: 24px;
}
.inner-hero-overlay h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0; text-shadow: 0 3px 20px rgba(0,0,0,.4); }
.inner-content {
    max-width: 820px; margin-inline: auto; padding: 64px 22px;
    font-size: 1.05rem; line-height: 1.8; color: var(--mbh-text);
}
.inner-content h2 { margin: 1.4em 0 .5em; }
.inner-content h3 { margin: 1.3em 0 .4em; }
.inner-content img { border-radius: var(--mbh-radius-card); margin: 1.3em 0; box-shadow: var(--mbh-shadow-card); }
.inner-content ul, .inner-content ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.inner-content blockquote {
    border-left: 4px solid var(--mbh-cyan); margin: 1.4em 0; padding: .4em 1.2em;
    color: var(--mbh-text-muted); font-style: italic;
}

/* ── Contact ────────────────────────────────────────────────── */
.mbh-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.mbh-contact__info { display: grid; gap: 18px; }
.mbh-contact__row { display: flex; gap: 14px; align-items: flex-start; }
.mbh-contact__row svg { width: 22px; height: 22px; fill: var(--mbh-maroon); flex-shrink: 0; margin-top: 3px; }
.mbh-field { display: block; margin-bottom: 16px; }
.mbh-field label { display: block; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; color: var(--mbh-navy); }
.mbh-field input, .mbh-field textarea, .mbh-field select {
    width: 100%; padding: 13px 15px; border: 1px solid var(--mbh-line); border-radius: var(--mbh-radius);
    font-family: inherit; font-size: .95rem; background: #fff; color: var(--mbh-text);
}
.mbh-field input:focus, .mbh-field textarea:focus { outline: 2px solid var(--mbh-cyan); border-color: var(--mbh-cyan); }

/* ── Footer ─────────────────────────────────────────────────── */
.mbh-footer { background: var(--mbh-navy); color: rgba(255,255,255,.82); padding: 70px 0 0; }
.mbh-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px; padding-bottom: 52px; }
.mbh-footer__brand img { height: 84px; margin-bottom: 16px; }
.mbh-footer__brand p { color: rgba(255,255,255,.72); font-size: .92rem; max-width: 34ch; }
.mbh-footer h4 {
    color: #fff; font-family: var(--mbh-ff-body); font-weight: 700; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px;
}
.mbh-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.mbh-footer__col a { color: rgba(255,255,255,.78); font-size: .92rem; }
.mbh-footer__col a:hover { color: var(--mbh-cyan); }
.mbh-footer__contact { display: grid; gap: 14px; }
.mbh-footer__contact a, .mbh-footer__contact span { display: inline-flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .92rem; }
.mbh-footer__contact svg { width: 18px; height: 18px; fill: var(--mbh-cyan); flex-shrink: 0; margin-top: 3px; }
.mbh-footer__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.mbh-footer__socials { display: flex; gap: 12px; list-style: none; padding: 0; margin: 18px 0 0; }
.mbh-footer__socials a {
    display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #fff;
}
.mbh-footer__socials a:hover { background: var(--mbh-cyan); }
.mbh-footer__socials svg { width: 18px; height: 18px; fill: currentColor; }
.mbh-footer__bottom {
    border-top: 1px solid var(--mbh-line-dark); padding: 22px 0; text-align: center;
    font-size: .82rem; color: rgba(255,255,255,.6);
}
.mbh-footer__bottom a { color: rgba(255,255,255,.8); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .mbh-nav, .mbh-header__cta .mbh-btn--primary { display: none; }
    .mbh-burger { display: inline-flex; }
    .mbh-welcome__grid { grid-template-columns: 1fr; gap: 36px; }
    .mbh-welcome__media::before { display: none; }
    .mbh-blog__grid { grid-template-columns: repeat(2, 1fr); }
    .mbh-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
    :root { --mbh-fs-h1: 2.5rem; --mbh-fs-h2: 1.9rem; }
    .mbh-section { padding: 60px 0; }
    .mbh-reviews__grid, .mbh-blog__grid, .mbh-contact__grid, .mbh-footer__grid { grid-template-columns: 1fr; }
    .mbh-hero__inner { padding: 90px 0; }
    .mbh-footer__brand { grid-column: 1 / -1; }
}
