.mh-booking{
  --mh-navy:#1F355E;
  --mh-navy-deep:#0B1F73;
  --mh-gold:#8A6A28;
  --mh-bg:#F7F8FA;
  --mh-card:#ffffff;
  --mh-text:#2A3340;
  --mh-muted:#6B7280;
  --mh-line:#E6E8EE;
  --mh-radius:20px;
  font-family:inherit;
  color:var(--mh-text);
  background:#fff;
  border:1px solid var(--mh-line);
  border-radius:22px;
  padding:20px 22px;
  margin:0 auto;
  max-width:1100px;
  box-shadow:none;
}

.mh-booking__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}

.mh-booking__panel-head{margin-bottom:14px}
.mh-booking__panel-head--sm{margin:18px 0 10px}
.mh-booking__eyebrow{
  display:inline-block;
  color:var(--mh-gold);
  font-size:12px;
  letter-spacing:.08em;
  margin-bottom:6px;
}
.mh-booking__panel-head h3,
.mh-booking__panel-head h4{
  margin:0;
  color:var(--mh-navy);
  font-size:22px;
  line-height:1.4;
}
.mh-booking__panel-head--sm h4{font-size:16px}

.mh-cal{
  background:var(--mh-card);
  border:1px solid var(--mh-line);
  border-radius:var(--mh-radius);
  padding:14px;
}
.mh-cal__nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.mh-cal__title{
  font-weight:700;
  color:var(--mh-navy);
}
.mh-cal__btn{
  width:40px;height:40px;
  border:1px solid var(--mh-line);
  border-radius:12px;
  background:#fff;
  color:var(--mh-navy);
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.mh-cal__btn:hover{border-color:var(--mh-gold);color:var(--mh-gold)}
.mh-cal__weekdays,
.mh-cal__days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}
.mh-cal__weekdays span{
  text-align:center;
  font-size:12px;
  color:var(--mh-muted);
  padding:4px 0;
}
.mh-cal__day{
  min-height:42px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:var(--mh-text);
  cursor:pointer;
  font-size:14px;
}
.mh-cal__day:disabled{
  opacity:.35;
  cursor:not-allowed;
}
.mh-cal__day.is-today{box-shadow:inset 0 0 0 1px var(--mh-gold)}
.mh-cal__day.is-selected{
  background:var(--mh-navy);
  color:#fff;
}
.mh-cal__day:not(:disabled):hover{background:#EEF1F7}

.mh-slots{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.mh-slot{
  min-height:44px;
  border:1px solid var(--mh-line);
  border-radius:12px;
  background:#fff;
  color:var(--mh-navy);
  cursor:pointer;
  font-weight:600;
}
.mh-slot:disabled{opacity:.4;cursor:not-allowed}
.mh-slot.is-selected,
.mh-slot:not(:disabled):hover{
  background:var(--mh-navy);
  border-color:var(--mh-navy);
  color:#fff;
}

.mh-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:14px;
  color:var(--mh-navy);
  font-weight:600;
}
.mh-form input,
.mh-form select,
.mh-form textarea{
  width:100%;
  min-height:48px;
  border:1px solid var(--mh-line);
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  color:var(--mh-text);
  background:#fff;
  box-sizing:border-box;
}
.mh-form textarea{min-height:96px}
.mh-form input:focus,
.mh-form select:focus,
.mh-form textarea:focus{
  outline:2px solid rgba(31,53,94,.2);
  border-color:var(--mh-navy);
}
.mh-form__row{margin-bottom:14px}
.mh-form__row--2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.mh-form__summary{
  background:#F4F6FA;
  border-radius:12px;
  padding:12px 14px;
  margin-bottom:14px;
  color:var(--mh-navy);
  font-size:14px;
}
.mh-booking__price{
  color:var(--mh-gold);
  font-weight:700;
  margin:0 0 12px;
}
.mh-btn{
  width:100%;
  min-height:50px;
  border:0;
  border-radius:999px;
  background:var(--mh-navy-deep);
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  box-shadow:inset 0 0 0 2px var(--mh-gold);
}
.mh-btn:hover{filter:brightness(1.05)}
.mh-btn:disabled{opacity:.6;cursor:wait}
.mh-form__msg{
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  font-size:14px;
}
.mh-form__msg.is-ok{background:#EAF7EE;color:#146C2E}
.mh-form__msg.is-err{background:#FDECEC;color:#8A1F1F}
.mh-muted{color:var(--mh-muted);font-size:14px}

.mh-booking__outcomes{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid var(--mh-line);
}
.mh-booking__outcomes h4{
  margin:0 0 10px;
  color:var(--mh-navy);
  font-size:16px;
}
.mh-booking__outcomes ul{
  margin:0;
  padding:0 18px 0 0;
  color:var(--mh-muted);
  line-height:1.9;
}

.mh-booking__faq{
  margin-top:20px;
  border-top:1px solid var(--mh-line);
  padding-top:14px;
}
.mh-booking__faq summary{
  cursor:pointer;
  color:var(--mh-navy);
  font-weight:700;
}
.mh-faq__body{
  margin-top:12px;
  color:var(--mh-muted);
  line-height:1.9;
}

@media (max-width:900px){
  .mh-booking{padding:14px 12px;border-radius:18px}
  .mh-booking__grid{grid-template-columns:1fr;gap:16px}
  .mh-form__row--2{grid-template-columns:1fr}
  .mh-slots{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:480px){
  .mh-slots{grid-template-columns:1fr}
  .mh-cal__day{min-height:38px;font-size:13px}
}

/* Articles archive + single post polish */
.mh-articles{--mh-navy:#0b1f73;--mh-ink:#2a3340;--mh-muted:#6b7280;--mh-gold:#8a6a28;--mh-line:#e6e8ee;max-width:880px;margin:0 auto;padding:0 1.25rem 2rem}
.mh-articles__featured{padding:0 0 2rem;margin-bottom:1.5rem;border-bottom:1px solid var(--mh-line)}
.mh-articles__meta{display:flex;align-items:center;gap:12px;margin-bottom:12px;color:var(--mh-muted);font-size:.9rem}
.mh-articles__label{display:inline-block;color:var(--mh-gold);font-weight:700;letter-spacing:.04em}
.mh-articles__title{margin:0 0 .65rem;font-size:1.2rem;line-height:1.55;font-weight:700}
.mh-articles__title--xl{font-size:clamp(1.55rem,3.5vw,2.15rem);line-height:1.45;margin-bottom:.9rem}
.mh-articles__title a{color:var(--mh-navy);text-decoration:none}
.mh-articles__title a:hover{color:var(--mh-gold)}
.mh-articles__excerpt{margin:0 0 1rem;color:var(--mh-ink);line-height:1.95;font-size:1rem}
.mh-articles__more{display:inline-flex;align-items:center;gap:6px;color:var(--mh-gold);font-weight:700;text-decoration:none}
.mh-articles__more:hover{color:var(--mh-navy)}
.mh-articles__list{display:flex;flex-direction:column}
.mh-articles__item{display:grid;grid-template-columns:48px 1fr auto;gap:14px;align-items:start;padding:1.35rem 0;border-bottom:1px solid var(--mh-line)}
.mh-articles__item:last-child{border-bottom:0}
.mh-articles__index{font-size:1.1rem;font-weight:700;color:var(--mh-gold);padding-top:4px}
.mh-articles__date{display:block;color:var(--mh-muted);font-size:.88rem;margin-bottom:6px}
.mh-articles__go{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:999px;border:1px solid var(--mh-line);color:var(--mh-navy);text-decoration:none;font-size:1.1rem;margin-top:4px;transition:background .15s ease,border-color .15s ease}
.mh-articles__go:hover{background:var(--mh-navy);border-color:var(--mh-navy);color:#fff}
.mh-articles__empty{text-align:center;color:var(--mh-muted)}
body.page-id-113 .wp-block-post-title,.page-id-113 main>.wp-block-group>.wp-block-post-title,body.page-id-113 .entry-title,body.page-id-113 main h1.wp-block-post-title,body.page-id-113 .wp-block-post-title{display:none!important}
#mh-blog-hero{padding-inline:1.25rem;margin-bottom:.5rem}
#mh-blog-hero .mh-blog-kicker{color:var(--mh-gold);font-size:.95rem;font-weight:600;text-align:center;margin:0 0 .35rem}
#mh-blog-hero h1{color:var(--mh-navy);font-size:clamp(1.8rem,4vw,2.5rem);margin:.2rem 0 .85rem;text-align:center;font-weight:700}
#mh-blog-hero p{max-width:40rem;margin:0 auto 1.5rem;text-align:center;line-height:1.9;color:var(--mh-ink)}
.single-post .wp-block-post-title,.single-post h1.wp-block-post-title{color:var(--mh-navy)!important;font-size:clamp(1.7rem,4vw,2.4rem)!important;line-height:1.45!important;max-width:44rem;margin-inline:auto!important;text-align:center}
.single-post .wp-block-post-date,.single-post .wp-block-post-author-name{text-align:center;color:var(--mh-muted)}
.single-post .entry-content,.single-post .wp-block-post-content{max-width:42rem;margin-inline:auto;line-height:2;color:var(--mh-ink);font-size:1.05rem}
.single-post .entry-content a,.single-post .wp-block-post-content a{color:var(--mh-gold)}
.single-post .wp-block-buttons{justify-content:center;margin-top:2rem}
.single-post .wp-block-button__link{border-radius:999px!important;background:#0b1f73!important}
@media (max-width:640px){.mh-articles__item{grid-template-columns:36px 1fr;gap:10px}.mh-articles__go{display:none}}

