/* ═══════════════════════════════════════════════════════════════
   BMH Weather Tool – Styles v2
   All improvements: hero card, icons, gradient areas, CTA,
   accordion FAQ, floating nav, breadcrumbs, packing actions
   ═══════════════════════════════════════════════════════════════ */

.bmh-weather-page { max-width: 100%; margin: 0; padding: 0; overflow-x: hidden; }

.bmh-weather {
    --bmh-blue: var(--color-primary, #014DA0);
    --bmh-gold: var(--color-accent, #E8A317);
    --bmh-bg: #f8f7f4;
    --bmh-white: #ffffff;
    --bmh-dark: #1a1a2e;
    --bmh-muted: #5a6a7a;
    --bmh-line: #e2e8f0;
    --bmh-font-heading: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
    --bmh-font-body: var(--font-body, 'Source Serif 4', Georgia, serif);
    --bmh-font-ui: var(--font-nav, 'Montserrat', system-ui, sans-serif);
    --bmh-radius: 12px;
    --bmh-radius-sm: 8px;
    --bmh-shadow: 0 2px 12px rgba(1,77,160,.08);
    --bmh-shadow-hover: 0 4px 20px rgba(1,77,160,.14);
    --bmh-max: 960px;
    --bmh-gap: 24px;
    font-family: var(--bmh-font-body);
    color: var(--bmh-dark);
    line-height: 1.65;
}
.bmh-weather *, .bmh-weather *::before, .bmh-weather *::after { box-sizing: border-box; }

/* ── Breadcrumbs ── */
.bmh-w-breadcrumbs {
    max-width: var(--bmh-max); margin: 0 auto; padding: 1rem 0 0;
    font-family: var(--bmh-font-ui); font-size: .78rem; color: var(--bmh-muted);
}
.bmh-w-breadcrumbs a { color: var(--bmh-muted); text-decoration: none; }
.bmh-w-breadcrumbs a:hover { color: var(--bmh-blue); }
.bmh-w-breadcrumbs .sep { margin: 0 .4rem; }
.bmh-w-breadcrumbs .current { color: var(--bmh-dark); }

/* ── Hero ── */
.bmh-w-hero {
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    padding: 3rem 1.5rem 3.5rem; color: var(--bmh-white);
    position: relative; overflow: hidden;
}
.bmh-w-hero--spring { background: linear-gradient(135deg, var(--bmh-blue) 0%, #2d7dd2 100%); }
.bmh-w-hero--summer { background: linear-gradient(135deg, var(--bmh-blue) 0%, #1a6fb5 60%, #2d7dd2 100%); }
.bmh-w-hero--autumn { background: linear-gradient(135deg, #1a3a5c 0%, var(--bmh-blue) 100%); }
.bmh-w-hero--winter { background: linear-gradient(135deg, #0d2b4d 0%, var(--bmh-blue) 100%); }

.bmh-w-hero__grid {
    max-width: var(--bmh-max); margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center;
}
.bmh-w-hero__kicker {
    font-family: var(--bmh-font-ui); text-transform: uppercase;
    letter-spacing: .12em; font-size: .75rem; opacity: .85; margin-bottom: .5rem;
}
.bmh-w-hero__title {
    font-family: var(--bmh-font-heading);
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 600;
    margin: 0 0 1rem; line-height: 1.15; color: var(--bmh-white);
}
.bmh-w-hero__lead { font-size: 1rem; max-width: 540px; opacity: .9; margin: 0 0 1.5rem; }
.bmh-w-hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Hero snapshot card */
.bmh-w-hero__card {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--bmh-radius); padding: 1.25rem;
    backdrop-filter: blur(10px); box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.bmh-w-snap { display: grid; gap: .5rem; }
.bmh-w-snap__row {
    display: grid; grid-template-columns: 1fr auto; gap: .75rem; align-items: center;
    padding: .6rem .75rem; border-radius: 8px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
}
.bmh-w-snap__row span { color: rgba(255,255,255,.7); font-size: .8rem; }
.bmh-w-snap__row strong { text-align: right; font-size: 1rem; }

/* ── Buttons ── */
.bmh-w-btn {
    display: inline-block; font-family: var(--bmh-font-ui); font-weight: 600;
    font-size: .85rem; padding: .7rem 1.5rem; border-radius: 50px;
    text-decoration: none; transition: all .2s; cursor: pointer;
    border: 2px solid transparent;
}
.bmh-w-btn--gold { background: var(--bmh-gold); color: var(--bmh-white); }
.bmh-w-btn--gold:hover { background: #d09415; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,163,23,.35); }
.bmh-w-btn--cta { background: #db0c64; color: var(--bmh-white); }
.bmh-w-btn--cta:hover { background: #AB0049; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(219,12,100,.35); }
.bmh-w-btn--outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--bmh-white); }
.bmh-w-btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--bmh-white); }
.bmh-w-btn--outline-dark { background: transparent; border-color: var(--bmh-line); color: var(--bmh-muted); font-size: .78rem; padding: .4rem 1rem; }
.bmh-w-btn--outline-dark:hover { border-color: var(--bmh-blue); color: var(--bmh-blue); }
.bmh-w-btn--sm { font-size: .8rem; padding: .55rem 1.2rem; }
.bmh-w-btn--lg { font-size: .95rem; padding: .85rem 2rem; }

/* ── Month tabs ── */
.bmh-w-months {
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    background: var(--bmh-white); border-bottom: 1px solid var(--bmh-line);
    position: sticky; top: 0; z-index: 50;
}
.bmh-w-months__track {
    max-width: 1100px; margin: 0 auto; display: flex;
    overflow-x: auto; scrollbar-width: none; padding: 0 1rem;
}
.bmh-w-months__track::-webkit-scrollbar { display: none; }
.bmh-w-months__tab {
    flex: 0 0 auto; padding: .75rem 1rem;
    font-family: var(--bmh-font-ui); font-size: .78rem; font-weight: 500;
    text-decoration: none; color: var(--bmh-muted); white-space: nowrap;
    border-bottom: 3px solid transparent; transition: color .2s, border-color .2s;
}
.bmh-w-months__tab:hover { color: var(--bmh-blue); }
.bmh-w-months__tab--active { color: var(--bmh-blue); border-bottom-color: var(--bmh-blue); font-weight: 700; }
.bmh-w-months__tab--now { position: relative; }
.bmh-w-months__tab--now::after {
    content: ''; position: absolute; top: 6px; right: 2px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--bmh-gold);
}

/* ── Sections ── */
.bmh-w-section { max-width: var(--bmh-max); margin: 0 auto; padding: 2.5rem 0; }
.bmh-w-section + .bmh-w-section { border-top: 1px solid var(--bmh-line); }

/* Highlight (full-width bg, centered content) */
.bmh-w-section--highlight {
    max-width: none;
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    padding: 2.5rem 1.5rem; background: var(--bmh-bg);
    border-top: none;
}
.bmh-w-section__inner {
    max-width: var(--bmh-max); margin: 0 auto;
}

/* CTA (blue gradient, full-width) */
.bmh-w-section--cta {
    max-width: none;
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    padding: 3rem 1.5rem; background: linear-gradient(135deg, var(--bmh-blue), #063a78);
    color: var(--bmh-white); border-top: none;
}
.bmh-w-cta__inner {
    max-width: var(--bmh-max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.bmh-w-section--cta h2 { font-family: var(--bmh-font-heading); font-size: 1.6rem; margin: 0 0 .5rem; color: #ffffff !important; }
.bmh-w-section--cta p { color: rgba(255,255,255,.82); margin: 0; font-size: 1rem; }

.bmh-w-section h2 {
    font-family: var(--bmh-font-heading); font-size: 1.5rem; font-weight: 600;
    color: var(--bmh-dark); margin: .5rem 0 .75rem; line-height: 1.25;
}

/* ── Badge ── */
.bmh-w-badge {
    display: inline-block; font-family: var(--bmh-font-ui);
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--bmh-blue);
    background: rgba(1,77,160,.08); padding: .3rem .7rem; border-radius: 4px;
}
.bmh-w-intro { color: var(--bmh-muted); font-size: .95rem; margin-bottom: 1.5rem; max-width: 720px; }

/* ── Trust ── */
.bmh-w-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.bmh-w-trust__item {
    display: flex; flex-direction: column; gap: .2rem; padding: .75rem;
    background: var(--bmh-white); border-radius: var(--bmh-radius-sm);
    border-left: 3px solid var(--bmh-gold);
}
.bmh-w-trust__item strong { font-family: var(--bmh-font-ui); font-size: .82rem; }
.bmh-w-trust__item span { font-size: .85rem; color: var(--bmh-muted); }

/* ── Quick answer ── */
.bmh-w-quick {
    background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: var(--bmh-radius); padding: 1.5rem;
}
.bmh-w-quick__badge {
    display: inline-block; font-family: var(--bmh-font-ui); font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; color: var(--bmh-gold);
    background: rgba(232,163,23,.1); padding: .25rem .6rem; border-radius: 4px; margin-bottom: .5rem;
}
.bmh-w-quick__title { font-family: var(--bmh-font-heading); font-size: 1.25rem; margin: 0 0 .5rem; }
.bmh-w-quick__text { color: var(--bmh-muted); font-size: .93rem; margin: 0; line-height: 1.6; }

/* ── Cards with icons ── */
.bmh-w-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--bmh-gap); }
.bmh-w-card {
    background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: var(--bmh-radius); padding: 1.5rem; text-align: center;
    transition: box-shadow .2s;
}
.bmh-w-card:hover { box-shadow: var(--bmh-shadow-hover); }
.bmh-w-card__icon {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin: 0 auto .75rem;
    background: rgba(1,77,160,.06); border-radius: 50%; color: var(--bmh-blue);
}
.bmh-w-card__icon svg { width: 24px; height: 24px; }
.bmh-w-card__label {
    display: block; font-family: var(--bmh-font-ui); font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em; color: var(--bmh-muted); margin-bottom: .5rem;
}
.bmh-w-card__number {
    display: block; font-family: var(--bmh-font-heading);
    font-size: 2.5rem; font-weight: 700; color: var(--bmh-blue);
    line-height: 1; margin-bottom: .25rem;
}
.bmh-w-card__number small { font-size: .5em; font-weight: 400; }
.bmh-w-card__sub {
    display: block; font-family: var(--bmh-font-ui); font-size: .8rem;
    color: var(--bmh-dark); font-weight: 600; margin-bottom: .5rem;
}
.bmh-w-card__text { font-size: .85rem; color: var(--bmh-muted); margin: 0; }

/* ── Table ── */
.bmh-w-table-wrap { overflow-x: auto; }
.bmh-w-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.bmh-w-table th {
    font-family: var(--bmh-font-ui); font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; color: var(--bmh-muted);
    text-align: left; padding: .75rem; border-bottom: 2px solid var(--bmh-line);
}
.bmh-w-table td { padding: .75rem; border-bottom: 1px solid var(--bmh-line); vertical-align: top; }
.bmh-w-table td:first-child { font-weight: 600; white-space: nowrap; }
.bmh-w-table tr:last-child td { border-bottom: none; }
.bmh-w-table tbody tr:hover { background: rgba(1,77,160,.02); }

/* ── Feel grid with icons ── */
.bmh-w-feel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--bmh-gap); }
.bmh-w-feel {
    display: flex; gap: .75rem; padding: 1rem;
    background: var(--bmh-white); border-radius: var(--bmh-radius-sm);
    border: 1px solid var(--bmh-line);
}
.bmh-w-feel__icon {
    flex-shrink: 0; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(232,163,23,.1); border-radius: 50%; color: var(--bmh-gold);
}
.bmh-w-feel__icon svg { width: 20px; height: 20px; }
.bmh-w-feel__content { flex: 1; min-width: 0; }
.bmh-w-feel__period {
    display: block; font-family: var(--bmh-font-ui); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; color: var(--bmh-gold); margin-bottom: .2rem;
}
.bmh-w-feel__summary { display: block; font-family: var(--bmh-font-ui); font-size: .88rem; color: var(--bmh-dark); margin-bottom: .25rem; }
.bmh-w-feel p { font-size: .82rem; color: var(--bmh-muted); margin: 0; }
.bmh-w-feel__cta { margin-top: 1rem; }
.bmh-w-feel__cta a { font-family: var(--bmh-font-ui); font-size: .85rem; color: var(--bmh-blue); font-weight: 600; text-decoration: none; }
.bmh-w-feel__cta a:hover { text-decoration: underline; }

/* ── Areas (gradient cards) ── */
.bmh-w-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--bmh-gap); }
.bmh-w-area {
    border-radius: var(--bmh-radius); padding: 1.5rem; color: var(--bmh-white);
    background: linear-gradient(150deg, rgba(1,77,160,.92), rgba(1,77,160,.7));
    display: flex; flex-direction: column; justify-content: space-between; min-height: 200px;
    transition: transform .2s;
}
.bmh-w-area:nth-child(2n) { background: linear-gradient(150deg, rgba(17,24,39,.9), rgba(1,77,160,.65)); }
.bmh-w-area:hover { transform: translateY(-2px); }
.bmh-w-area__name {
    font-family: var(--bmh-font-heading); font-size: 1.3rem; font-weight: 600;
    margin: 0 0 .5rem; color: var(--bmh-white);
}
.bmh-w-area__desc { font-size: .87rem; color: rgba(255,255,255,.82); margin: 0 0 .75rem; }
.bmh-w-area__badge {
    display: inline-block; font-family: var(--bmh-font-ui); font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; color: var(--bmh-gold);
    border-top: 1px solid rgba(255,255,255,.2); padding-top: .75rem; margin-top: auto;
}
.bmh-w-area .bmh-w-btn--cta { margin-top: .75rem; font-size: .78rem; }

/* ── Planner ── */
.bmh-w-planner__q { margin-bottom: 1.5rem; }
.bmh-w-planner__label { font-family: var(--bmh-font-ui); font-weight: 600; font-size: .9rem; margin-bottom: .6rem; }
.bmh-w-planner__options { display: flex; flex-wrap: wrap; gap: .5rem; }
.bmh-w-planner__opt {
    display: flex; align-items: center; gap: .4rem; font-family: var(--bmh-font-ui); font-size: .82rem;
    padding: .55rem 1rem; border: 2px solid var(--bmh-line); border-radius: 50px;
    cursor: pointer; transition: all .15s; background: var(--bmh-white); color: var(--bmh-dark);
}
.bmh-w-planner__opt:hover { border-color: var(--bmh-blue); }
.bmh-w-planner__opt input { display: none; }
.bmh-w-planner__opt--selected { background: var(--bmh-blue); color: var(--bmh-white); border-color: var(--bmh-blue); }

.bmh-w-planner__result { margin-top: 1.5rem; }
.bmh-w-planner__rec {
    background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: var(--bmh-radius); padding: 1.5rem; margin-bottom: 1rem;
    transition: box-shadow .3s;
}
.bmh-w-planner__rec.is-active { box-shadow: var(--bmh-shadow-hover); }
.bmh-w-planner__rec h3 { font-family: var(--bmh-font-heading); font-size: 1.2rem; color: var(--bmh-blue); margin: 0 0 .5rem; }
.bmh-w-planner__rec p { font-size: .9rem; color: var(--bmh-muted); margin: 0 0 1rem; }
.bmh-w-planner__placeholder { font-style: italic; }
.bmh-w-planner__details {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem;
}
.bmh-w-planner__details > div {
    padding: .75rem; background: var(--bmh-bg); border-radius: var(--bmh-radius-sm);
    font-size: .82rem; line-height: 1.5;
}
.bmh-w-planner__details strong {
    font-family: var(--bmh-font-ui); font-size: .7rem; text-transform: uppercase;
    letter-spacing: .06em; color: var(--bmh-dark);
}

/* ── Packing ── */
.bmh-w-packing {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem;
}
.bmh-w-packing__item {
    display: flex; align-items: center; gap: .5rem; font-size: .88rem;
    padding: .5rem .75rem; background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: var(--bmh-radius-sm); cursor: pointer; transition: background .15s;
}
.bmh-w-packing__item:hover { background: rgba(1,77,160,.03); }
.bmh-w-packing__check { font-size: 1rem; color: var(--bmh-muted); }
.bmh-w-packing__item--checked .bmh-w-packing__check { color: var(--bmh-gold); }
.bmh-w-packing__item--checked { text-decoration: line-through; color: var(--bmh-muted); }
.bmh-w-packing__actions { display: flex; gap: .5rem; margin-top: 1rem; }

/* ── Hotels ── */
.bmh-w-hotels { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--bmh-gap); }
.bmh-w-hotel {
    display: flex; gap: 1rem; padding: 1.25rem; background: var(--bmh-white);
    border: 1px solid var(--bmh-line); border-radius: var(--bmh-radius); transition: box-shadow .2s;
}
.bmh-w-hotel:hover { box-shadow: var(--bmh-shadow-hover); }
.bmh-w-hotel__emoji { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.bmh-w-hotel__body { flex: 1; min-width: 0; }
.bmh-w-hotel__name { font-family: var(--bmh-font-heading); font-size: 1rem; font-weight: 600; margin: 0 0 .3rem; }
.bmh-w-hotel__desc { font-size: .83rem; color: var(--bmh-muted); margin: 0 0 .5rem; }
.bmh-w-hotel__link { font-family: var(--bmh-font-ui); font-size: .78rem; font-weight: 600; color: var(--bmh-blue); text-decoration: none; }
.bmh-w-hotel__link:hover { text-decoration: underline; }

/* ── Compare ── */
.bmh-w-compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--bmh-gap); }
.bmh-w-compare__month {
    padding: 1.25rem; background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: var(--bmh-radius); text-align: center;
}
.bmh-w-compare__month--active { border-color: var(--bmh-blue); background: rgba(1,77,160,.03); }
.bmh-w-compare__name { display: block; font-family: var(--bmh-font-ui); font-size: .9rem; margin-bottom: .75rem; }
.bmh-w-compare__name a { color: var(--bmh-blue); text-decoration: none; }
.bmh-w-compare__name a:hover { text-decoration: underline; }
.bmh-w-compare__row { display: flex; justify-content: space-between; padding: .3rem 0; font-size: .82rem; color: var(--bmh-muted); }
.bmh-w-compare__val { font-weight: 600; color: var(--bmh-dark); }
.bmh-w-compare__all { margin-top: 1rem; }
.bmh-w-compare__all a { font-family: var(--bmh-font-ui); font-size: .85rem; font-weight: 600; color: var(--bmh-blue); text-decoration: none; }
.bmh-w-compare__all a:hover { text-decoration: underline; }

/* ── FAQ accordion ── */
.bmh-w-faq { display: grid; gap: .75rem; }
.bmh-w-faq__item {
    background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: var(--bmh-radius); padding: 1rem 1.25rem;
}
.bmh-w-faq__item summary {
    font-family: var(--bmh-font-heading); font-weight: 600; font-size: 1.05rem;
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
    color: var(--bmh-dark);
}
.bmh-w-faq__item summary::-webkit-details-marker { display: none; }
.bmh-w-faq__item summary::after { content: '+'; font-size: 1.3rem; color: var(--bmh-blue); font-weight: 400; flex-shrink: 0; margin-left: 1rem; }
.bmh-w-faq__item[open] summary::after { content: '−'; }
.bmh-w-faq__item[open] { border-color: var(--bmh-blue); }
.bmh-w-faq__item p { color: var(--bmh-muted); margin: .75rem 0 0; font-size: .9rem; }

/* ── Footer ── */
.bmh-w-footer { max-width: var(--bmh-max); margin: 0 auto; padding: 1.5rem 0; border-top: 1px solid var(--bmh-line); }
.bmh-w-footer p { font-size: .75rem; color: var(--bmh-muted); text-align: center; font-style: italic; margin: 0; }

/* ── Floating nav ── */
.bmh-w-floatnav {
    position: fixed; right: 1rem; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: .4rem; z-index: 40;
    background: var(--bmh-white); border: 1px solid var(--bmh-line);
    border-radius: 30px; padding: .4rem; box-shadow: var(--bmh-shadow);
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.bmh-w-floatnav.is-visible { opacity: 1; pointer-events: auto; }
.bmh-w-floatnav a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: .9rem; text-decoration: none; transition: background .15s;
}
.bmh-w-floatnav a:hover { background: rgba(1,77,160,.08); }

/* ── Planner area buttons ── */
.bmh-w-planner__buttons { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }

/* ── Print styles ── */
@media print {
    .bmh-w-floatnav, .bmh-w-months, .bmh-w-hero__actions, .bmh-w-packing__actions,
    .bmh-w-planner, .bmh-w-btn, .bmh-w-breadcrumbs { display: none !important; }
    .bmh-w-section--highlight, .bmh-w-section--cta, .bmh-w-hero {
        margin-left: 0 !important; margin-right: 0 !important;
        background: none !important; color: #000 !important;
    }
    .bmh-w-packing { page-break-inside: avoid; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .bmh-w-hero { padding: 2rem 1rem; }
    .bmh-w-hero__grid { grid-template-columns: 1fr; }
    .bmh-w-hero__title { font-size: 1.8rem; }
    .bmh-w-section { padding: 2rem 1rem; }
    .bmh-w-section--highlight { padding: 2rem 1rem; }
    .bmh-w-section--cta { padding: 2rem 1rem; }
    .bmh-w-cta__inner { grid-template-columns: 1fr; text-align: center; }
    .bmh-w-cards, .bmh-w-areas, .bmh-w-hotels { grid-template-columns: 1fr; }
    .bmh-w-compare { grid-template-columns: repeat(2, 1fr); }
    .bmh-w-planner__options { flex-direction: column; }
    .bmh-w-feel-grid { grid-template-columns: 1fr 1fr; }
    .bmh-w-floatnav { display: none; }
}
@media (max-width: 480px) {
    .bmh-w-feel-grid { grid-template-columns: 1fr; }
    .bmh-w-compare { grid-template-columns: 1fr 1fr; }
    .bmh-w-table { font-size: .8rem; }
    .bmh-w-table td:first-child { white-space: normal; }
    .bmh-w-packing { grid-template-columns: 1fr 1fr; }
}
