/* =========================================================
   MEETINGS — Group Hub
   Routing-first page: hero → location split → formats → sticky switcher → CTA.
   ========================================================= */

:root {
  --mh-shell-x: clamp(24px, 5vw, 80px);
}

/* ── HERO ─────────────────────────────────────────────────── */
.mh-hero{
  position: relative;
  min-height: clamp(640px, 92vh, 880px);
  display: flex; align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.mh-hero__media{ position: absolute; inset: 0; z-index: -2; }
.mh-hero__media img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mh-hero::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.18) 35%, rgba(11,11,12,0.78) 100%);
}
.mh-hero__inner{
  width: 100%; max-width: 1640px; margin: 0 auto;
  padding: 220px var(--mh-shell-x) clamp(56px, 6vw, 96px);
  display: grid; gap: 28px;
}
.mh-hero__eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak);
  font-weight: 500;
}
.mh-hero__eyebrow .dot{ width: 6px; height: 6px; border-radius: 999px; background: var(--oak); }
.mh-hero__h1{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(54px, 7vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.mh-hero__h1 em{
  font-style: italic; font-family: var(--font-serif); font-weight: 400;
  color: var(--oak);
}
.mh-hero__sub{
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
  margin: 0;
  max-width: 56ch;
}
.mh-hero__ctas{
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px;
}
.mh-btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.mh-btn--primary{
  background: var(--oak); color: var(--ink); border-color: var(--oak);
}
.mh-btn--primary:hover{ background: #fff; border-color: #fff; }
.mh-btn--ghost{
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.mh-btn--ghost:hover{ background: #fff; color: var(--ink); border-color: #fff; }
.mh-btn--dark{
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.mh-btn--dark:hover{ background: transparent; color: var(--ink); }
.mh-btn--outline{
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.mh-btn--outline:hover{ background: var(--ink); color: #fff; }
.mh-hero__secondary{
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none; padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  align-self: start;
  margin-top: 14px;
  transition: color .15s ease, border-color .15s ease;
}
.mh-hero__secondary:hover{ color: #fff; border-bottom-color: #fff; }
.mh-hero__meta{
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 14px;
}
.mh-hero__meta span::before{ content: ""; display: inline-block; width: 5px; height: 5px; background: var(--oak); border-radius: 999px; margin-right: 10px; vertical-align: middle; }

/* ── LOCATION SPLIT ──────────────────────────────────────── */
.mh-split{
  background: var(--paper);
  padding: clamp(80px, 8vw, 128px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.mh-split__inner{
  max-width: 1640px; margin: 0 auto; padding: 0 var(--mh-shell-x);
}
.mh-split__head{
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: end; margin-bottom: clamp(48px, 5vw, 80px);
}
.mh-split__eyebrow{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oak-deep); margin-bottom: 14px;
}
.mh-split__head h2{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4.4vw, 64px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0; text-wrap: balance;
}
.mh-split__head h2 em{
  font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep);
}
.mh-split__head__copy{
  font-size: 16px; line-height: 1.55; color: var(--ink-700); max-width: 50ch;
}
.mh-split__grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2vw, 32px);
}
.mh-loc{
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--rule-soft);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.mh-loc:hover{ transform: translateY(-4px); box-shadow: 0 24px 60px rgba(11,11,12,0.12); border-color: var(--ink-300); }
.mh-loc__media{
  aspect-ratio: 4/3; overflow: hidden; background: var(--ink-100);
}
.mh-loc__media img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.mh-loc:hover .mh-loc__media img{ transform: scale(1.04); }
.mh-loc__body{
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.mh-loc__chip{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oak-deep);
}
.mh-loc__chip .dot{ width: 6px; height: 6px; border-radius: 999px; background: var(--oak); }
.mh-loc__title{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0;
}
.mh-loc__title em{
  font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep);
}
.mh-loc__desc{
  font-size: 15px; line-height: 1.55; color: var(--ink-700); margin: 0; max-width: 48ch;
}
.mh-loc__facts{
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500);
  margin-top: 4px;
}
.mh-loc__facts strong{ color: var(--ink); font-weight: 500; }
.mh-loc__cta{
  margin-top: auto; padding-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14px; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
  align-self: start;
  transition: color .2s ease, border-color .2s ease;
}
.mh-loc:hover .mh-loc__cta{ color: var(--oak-deep); border-bottom-color: var(--oak-deep); }
.mh-loc__cta .arr{ transition: transform .25s ease; }
.mh-loc:hover .mh-loc__cta .arr{ transform: translateX(4px); }

.mh-loc--soon{ background: var(--concrete); }
.mh-loc--soon .mh-loc__media{ aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2d 60%, #3a3a3f 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; }

/* ── FORMATS ─────────────────────────────────────────────── */
.mh-formats{
  background: var(--concrete);
  padding: clamp(80px, 8vw, 128px) 0;
}
.mh-formats__inner{ max-width: 1640px; margin: 0 auto; padding: 0 var(--mh-shell-x); }
.mh-formats__head{
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: end; margin-bottom: clamp(40px, 4vw, 64px);
  padding-bottom: clamp(24px, 2.5vw, 40px);
  border-bottom: 1px solid var(--rule-soft);
}
.mh-formats__head h3{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0;
}
.mh-formats__head h3 em{
  font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep);
}
.mh-formats__count{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-500); justify-self: end; align-self: end;
}
.mh-formats__copy{ font-size: 15px; line-height: 1.55; color: var(--ink-700); max-width: 50ch; margin-top: 14px; }
.mh-formats__grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.mh-fmt{
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: clamp(24px, 2.5vw, 36px);
  text-decoration: none; color: var(--ink);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  min-height: 380px;
}
.mh-fmt:hover{ transform: translateY(-4px); box-shadow: 0 24px 60px rgba(11,11,12,0.10); border-color: var(--ink-300); }
.mh-fmt__num{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oak-deep); margin-bottom: 22px;
}
.mh-fmt__title{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1.02; letter-spacing: -0.018em;
  margin: 0 0 14px;
}
.mh-fmt__title em{
  font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep);
}
.mh-fmt__desc{ font-size: 14px; line-height: 1.55; color: var(--ink-700); margin: 0 0 22px; }
.mh-fmt__facts{
  display: grid; gap: 12px;
  color: var(--ink-700);
  padding-top: 18px; border-top: 1px solid var(--rule-soft);
  margin-bottom: 22px;
}
.mh-fmt__facts__row{ display: grid; gap: 3px; }
.mh-fmt__facts__k{
  font-family: var(--font-mono);
  color: var(--ink-500); letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 9.5px; line-height: 1;
}
.mh-fmt__facts__v{
  font-family: var(--font-body); font-size: 13px; line-height: 1.35;
  color: var(--ink); font-weight: 500;
}
.mh-fmt__cta{
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-700);
  letter-spacing: 0.01em;
}
.mh-fmt__cta .arr{ transition: transform .25s ease; color: var(--oak-deep); }
.mh-fmt:hover .mh-fmt__cta{ color: var(--ink); }
.mh-fmt:hover .mh-fmt__cta .arr{ transform: translateX(4px); }

/* Inline mini location pills */
.mh-fmt__locs{
  display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap;
}
.mh-fmt__loc{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(198,168,122,0.14);
  color: var(--oak-deep);
  border-radius: 999px;
}

/* ── INTERSTITIAL: split call to action ──────────────────── */
.mh-mid{
  background: var(--ink); color: #fff;
  padding: clamp(72px, 7vw, 112px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mh-mid__inner{ max-width: 1640px; margin: 0 auto; padding: 0 var(--mh-shell-x); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.mh-mid__eyebrow{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oak); margin-bottom: 14px;
}
.mh-mid h3{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0; text-wrap: balance;
}
.mh-mid h3 em{ font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak); }
.mh-mid__copy p{ font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0 0 22px; max-width: 50ch; }
.mh-mid__ctas{ display: flex; flex-wrap: wrap; gap: 14px; }

/* ── COMPARE ─────────────────────────────────────────────── */
.mh-compare{
  background: var(--paper);
  padding: clamp(80px, 8vw, 128px) 0;
}
.mh-compare__inner{ max-width: 1640px; margin: 0 auto; padding: 0 var(--mh-shell-x); }
.mh-compare__head{ margin-bottom: clamp(40px, 4vw, 64px); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: end; }
.mh-compare__head h3{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.02em; margin: 0;
}
.mh-compare__head h3 em{ font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.mh-compare__copy{ font-size: 15px; line-height: 1.55; color: var(--ink-700); max-width: 50ch; }
.mh-compare__table{
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.mh-compare__row{
  display: grid; grid-template-columns: 1.2fr 2fr 1.2fr 1fr;
  gap: 16px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.mh-compare__row:last-child{ border-bottom: 0; }
.mh-compare__row--head{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-500);
  padding: 14px 0; background: rgba(0,0,0,0.02);
}
.mh-compare__row__need{ font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--ink); }
.mh-compare__row__rooms{ font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.mh-compare__row__pax{ font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-700); }
.mh-compare__row__loc{
  display: inline-flex; gap: 6px; flex-wrap: wrap;
}
.mh-compare__row__loc span{
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(0,0,0,0.05);
  color: var(--ink);
  border-radius: 999px;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.mh-cta{
  background: var(--paper);
  padding: clamp(80px, 8vw, 128px) 0 clamp(96px, 10vw, 160px);
  text-align: center;
  border-top: 1px solid var(--rule-soft);
}
.mh-cta__inner{ max-width: 900px; margin: 0 auto; padding: 0 var(--mh-shell-x); display: grid; gap: 22px; }
.mh-cta__eyebrow{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oak-deep);
}
.mh-cta h3{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.025em;
  margin: 0;
}
.mh-cta h3 em{ font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.mh-cta p{ font-size: 16px; line-height: 1.55; color: var(--ink-700); margin: 0 auto; max-width: 56ch; }
.mh-cta__ctas{ display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 14px; }

/* ── STICKY LOCATION SWITCHER ────────────────────────────── */
.mh-stick{
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; gap: 6px;
  padding: 6px;
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.mh-stick.is-visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.mh-stick__label{
  display: none;
}
.mh-stick a{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.mh-stick a:hover{ background: rgba(255,255,255,0.12); color: #fff; }
.mh-stick a .arr{ font-size: 11px; opacity: 0.6; }
.mh-stick a:hover .arr{ opacity: 1; }
.mh-stick a.is-soon{ color: rgba(255,255,255,0.45); }
.mh-stick a.is-soon::after{
  content: "Soon"; margin-left: 4px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oak); padding: 2px 6px; background: rgba(198,168,122,0.18); border-radius: 999px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px){
  .mh-formats__grid{ grid-template-columns: repeat(2, 1fr); }
  .mh-compare__row{ grid-template-columns: 1fr 1.5fr 1fr; }
  .mh-compare__row__loc{ display: none; }
  .mh-compare__row--head .mh-compare__row__loc{ display: none; }
}
@media (max-width: 900px){
  .mh-hero__inner{ padding-top: 180px; }
  .mh-split__head, .mh-formats__head, .mh-compare__head, .mh-mid__inner{ grid-template-columns: 1fr; }
  .mh-split__grid{ grid-template-columns: 1fr; }
  .mh-stick{ right: 16px; bottom: 16px; }
  .mh-stick a{ padding: 8px 12px; font-size: 11px; }
}
@media (max-width: 700px){
  .mh-formats__grid{ grid-template-columns: 1fr; }
  .mh-fmt{ min-height: auto; }
  .mh-compare__row{ grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .mh-compare__row__pax{ display: none; }
}
