/* [project]/src/modules/m67/styles/m67-public.css [app-client] (css) */
.m67-scope {
  --brand: #e63259;
  --ink: #090909;
  --paper: #fafafa;
  --m-card: #121212;
  --m-border: #ffffff1f;
  --m-muted: #a4a4a4;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-archivo), Archivo, Inter, system-ui, sans-serif;
  min-height: 100vh;
}

@supports (color: lab(0% 0 0)) {
  .m67-scope {
    --ink: lab(2.47865% 0 0);
    --paper: lab(98.26% 0 0);
    --m-card: lab(5.26802% 0 0);
    --m-border: lab(100% 0 0 / .12);
    --m-muted: lab(67.52% -.0000298023 0);
  }
}

.m67-scope .black {
  letter-spacing: -.04em;
  font-weight: 900;
  line-height: .9;
}

.m67-scope .wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.m67-scope .topline {
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--m-muted);
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 11px;
  display: flex;
}

.m67-scope .dot {
  background: var(--brand);
  border-radius: 99px;
  width: 8px;
  height: 8px;
  animation: 1.6s infinite m67pulse;
}

@keyframes m67pulse {
  50% {
    opacity: .35;
  }
}

.m67-scope .brandtxt {
  color: var(--brand);
}

.m67-scope h1 {
  font-size: clamp(44px, 7vw, 84px);
}

.m67-scope .lead {
  color: var(--m-muted);
  max-width: 560px;
  margin: 18px 0 40px;
  font-size: 16px;
  line-height: 1.5;
}

.m67-scope .roomsel {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
  display: grid;
}

.m67-scope .roomcard {
  border: 1.5px solid var(--m-border);
  cursor: default;
  border-radius: 6px;
  padding: 20px;
  position: relative;
}

.m67-scope .roomcard.on {
  border-color: var(--brand);
}

.m67-scope .roomcard.on:after {
  content: "✓";
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  top: 14px;
  right: 16px;
}

.m67-scope .roomcard .rk {
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--brand);
  margin-bottom: 10px;
  font-size: 10px;
}

.m67-scope .roomcard b {
  letter-spacing: -.02em;
  font-size: 22px;
  font-weight: 900;
}

.m67-scope .roomcard p {
  color: var(--m-muted);
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.45;
}

.m67-scope .flab {
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--m-muted);
  margin: 0 0 8px;
  font-size: 10px;
  display: block;
}

.m67-scope .fin {
  border: 1.5px solid var(--m-border);
  width: 100%;
  color: var(--paper);
  font: inherit;
  background: none;
  border-radius: 6px;
  padding: 13px 14px;
  font-size: 14.5px;
}

.m67-scope .fin.ph {
  color: #636363;
  color: lab(42% 0 0);
}

.m67-scope .grid2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

.m67-scope .grid3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  display: grid;
}

.m67-scope .fgap {
  margin-bottom: 22px;
}

.m67-scope .hours {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  display: flex;
}

.m67-scope .hr {
  border: 1px solid var(--m-border);
  color: var(--m-muted);
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 11.5px;
}

.m67-scope .hr.taken {
  opacity: .3;
  text-decoration: line-through;
}

.m67-scope .hr.sel {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--paper);
  font-weight: 700;
}

.m67-scope .consent {
  color: var(--m-muted);
  align-items: flex-start;
  gap: 12px;
  margin: 26px 0;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
}

.m67-scope .cbox {
  border: 1.5px solid var(--brand);
  width: 18px;
  height: 18px;
  color: var(--brand);
  border-radius: 3px;
  flex: none;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  display: grid;
}

.m67-scope .consent a {
  color: var(--paper);
  text-decoration: underline;
}

.m67-scope .cta {
  background: var(--brand);
  color: var(--paper);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  border: none;
  border-radius: 99px;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.m67-scope .cta:hover {
  background: var(--paper);
  color: var(--ink);
}

.m67-scope .cta.ghosted {
  border: 1.5px solid var(--m-border);
  color: var(--paper);
  background: none;
}

.m67-scope .cta.ghosted:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: none;
}

.m67-scope .cta:disabled {
  opacity: .45;
  cursor: default;
}

.m67-scope .cta:disabled:hover {
  background: var(--brand);
  color: var(--paper);
}

.m67-scope .cta.ghosted:disabled:hover {
  color: var(--paper);
  border-color: var(--m-border);
  background: none;
}

.m67-scope .aftercta {
  color: var(--m-muted);
  margin-top: 16px;
  font-size: 12px;
}

.m67-scope .statuscard {
  border: 1.5px solid var(--m-border);
  border-radius: 6px;
  margin-top: 34px;
  padding: 26px;
}

.m67-scope .skv {
  grid-template-columns: 150px 1fr;
  gap: 10px 18px;
  font-size: 14px;
  display: grid;
}

.m67-scope .skv dt {
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--m-muted);
  padding-top: 3px;
  font-size: 10px;
}

.m67-scope .skv dd {
  font-weight: 700;
}

.m67-scope .qrhero {
  max-width: 420px;
  margin: 30px auto 0;
}

.m67-scope .qrhead {
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 900;
}

.m67-scope .qrcard {
  color: var(--ink);
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 16px;
}

.m67-scope .qrcard .qr, .m67-scope .qrcard svg {
  width: min(74vw, 310px);
  height: auto;
  margin: 0 auto;
  display: block;
}

.m67-scope .qrmeta {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.m67-scope .qrtimer {
  background: #dedede;
  background: lab(88.4% 0 .0000119209);
  border-radius: 99px;
  height: 4px;
  margin: 12px 16px 8px;
  overflow: hidden;
}

.m67-scope .qrtimerbar {
  background: var(--brand);
  height: 100%;
}

.m67-scope .qrrefresh {
  color: #555;
  color: lab(36.2% 0 .00000596046);
  padding-bottom: 6px;
  font-size: 11px;
}

.m67-scope .qrnotes {
  color: var(--m-muted);
  text-align: center;
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.55;
}

.m67-scope .qrnotes b {
  color: var(--paper);
}

.m67-scope .qrfull {
  color: var(--ink);
  z-index: 300;
  text-align: center;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 24px;
  display: none;
  position: fixed;
  inset: 0;
}

.m67-scope .qrfull.open {
  display: flex;
}

.m67-scope .qrfull .qr, .m67-scope .qrfull svg {
  width: min(88vw, 480px);
  height: auto;
}

.m67-scope .qrfull .fm {
  max-width: 480px;
  font-size: 14px;
  font-weight: 700;
}

.m67-scope .qrfull .fs {
  color: #555;
  color: lab(36.2% 0 .00000596046);
  font-size: 11.5px;
}

.m67-scope .qrclose {
  color: var(--ink);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cecece;
  border: 1.5px solid lab(82.6% .0000298023 -.0000119209);
  border-radius: 99px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: 16px;
  right: 16px;
}

.m67-scope .statusrow {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  display: flex;
}

.m67-scope .spill {
  border: 1px solid var(--m-border);
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--m-muted);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 10.5px;
}

.m67-scope .spill.on {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--paper);
  font-weight: 700;
}

.m67-scope .foot {
  border-top: 1px solid var(--m-border);
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--m-muted);
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
  padding-top: 20px;
  font-size: 10.5px;
  display: flex;
}

.m67-scope .lnav {
  border-bottom: 1px solid var(--m-border);
  text-transform: uppercase;
  letter-spacing: .2em;
  align-items: center;
  gap: 26px;
  padding: 16px 24px;
  font-size: 11px;
  display: flex;
}

.m67-scope .lnav .logo {
  letter-spacing: -.02em;
  text-transform: none;
  font-size: 16px;
  font-weight: 900;
}

.m67-scope .lnav .navlinks {
  gap: 26px;
  display: flex;
}

.m67-scope .lnav .logo em {
  color: var(--brand);
  font-style: normal;
}

.m67-scope .lnav a {
  color: var(--paper);
  text-decoration: none;
}

.m67-scope .lnav a:hover {
  color: var(--brand);
}

.m67-scope .bookpill {
  background: var(--brand);
  color: var(--paper);
  border: 1px solid var(--brand);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  border-radius: 99px;
  margin-left: auto;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.m67-scope .bookpill:hover {
  color: var(--brand);
  background: none;
}

.m67-scope .mega {
  letter-spacing: -.04em;
  font-size: clamp(62px, 12vw, 164px);
  font-weight: 900;
  line-height: .85;
}

.m67-scope .mega sup {
  color: var(--brand);
  vertical-align: top;
  letter-spacing: 0;
  font-size: .26em;
}

.m67-scope .oline {
  color: #0000;
  -webkit-text-stroke: 1.5px var(--paper);
}

.m67-scope .oline-brand {
  color: #0000;
  -webkit-text-stroke: 1.5px var(--brand);
}

.m67-scope .herogrid {
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 28px;
  margin-top: 34px;
  display: grid;
}

.m67-scope .herogrid p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.45;
}

.m67-scope .herogrid p em {
  color: var(--brand);
  font-style: normal;
}

.m67-scope .heroctas {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.m67-scope .kpis {
  background: var(--m-border);
  border: 1px solid var(--m-border);
  border-radius: 6px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  display: grid;
  overflow: hidden;
}

.m67-scope .kpi {
  background: var(--ink);
  padding: 18px 20px;
}

.m67-scope .kpi b {
  color: var(--brand);
  letter-spacing: -.02em;
  font-size: 32px;
  font-weight: 900;
  display: block;
}

.m67-scope .kpi span {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--m-muted);
  font-size: 9.5px;
}

.m67-scope .marq {
  background: var(--brand);
  margin: 60px -24px 0;
  padding: 16px 0;
  overflow: hidden;
}

.m67-scope .marq .track {
  white-space: nowrap;
  letter-spacing: -.02em;
  color: var(--paper);
  align-items: center;
  gap: 44px;
  font-size: 42px;
  font-weight: 900;
  animation: 28s linear infinite m67marquee;
  display: inline-flex;
}

.m67-scope .marq .track i {
  background: var(--paper);
  border-radius: 99px;
  flex: none;
  width: 10px;
  height: 10px;
}

@keyframes m67marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.m67-scope .sechead {
  grid-template-columns: 200px 1fr;
  align-items: end;
  gap: 20px;
  margin: 76px 0 28px;
  display: grid;
}

.m67-scope .secno {
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--m-muted);
  font-size: 10px;
}

.m67-scope .secno b {
  color: var(--brand);
  font-weight: 700;
}

.m67-scope .sechead h2 {
  letter-spacing: -.03em;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  line-height: .92;
}

.m67-scope .sgrid {
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  display: grid;
}

.m67-scope .imgph {
  background: repeating-linear-gradient(45deg, #141414 0 16px, #1d1d1d 16px 32px);
  background: repeating-linear-gradient(45deg, lab(6.19571% 0 0) 0 16px, lab(10.68% .00000745058 -.00000298023) 16px 32px);
  border-radius: 6px;
  align-items: flex-end;
  min-height: 230px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.m67-scope .imgph.tall {
  min-height: 478px;
}

.m67-scope .imgph .cap {
  background: #090909e0;
  background: lab(2.47865% 0 0 / .88);
  border-radius: 4px;
  max-width: 90%;
  margin: 14px;
  padding: 11px 14px;
  font-size: 12.5px;
}

.m67-scope .cap .ck {
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--brand);
  margin-bottom: 5px;
  font-size: 9px;
  display: block;
}

.m67-scope .cap b {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.m67-scope .phtag {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--m-muted);
  border: 1px dashed var(--m-border);
  background: #090909b3;
  background: lab(2.47865% 0 0 / .7);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  position: absolute;
  top: 12px;
  right: 12px;
}

.m67-scope .shot {
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.m67-scope .imgph .cap, .m67-scope .broll .inner {
  z-index: 1;
  position: relative;
}

.m67-scope .factcard {
  background: var(--m-card);
  border-radius: 6px;
  padding: 22px;
}

.m67-scope .factrow {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  display: grid;
}

.m67-scope .factrow b {
  color: var(--brand);
  font-size: 30px;
  font-weight: 900;
  display: block;
}

.m67-scope .factrow span {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--m-muted);
  font-size: 9.5px;
}

.m67-scope .feats {
  margin: 0;
  padding: 0;
  font-size: 12.5px;
  list-style: none;
}

.m67-scope .feats li {
  border-top: 1px solid var(--m-border);
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  display: flex;
}

.m67-scope .feats li:before {
  content: "◆";
  color: var(--brand);
  font-size: 10px;
}

.m67-scope .tiles {
  background: var(--m-border);
  border: 1px solid var(--m-border);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid;
}

.m67-scope .tile {
  background: var(--ink);
  min-height: 190px;
  padding: 24px;
  transition: background .25s;
  position: relative;
}

.m67-scope .tile .tn {
  letter-spacing: .2em;
  color: var(--m-muted);
  justify-content: space-between;
  font-size: 10px;
  display: flex;
}

.m67-scope .tile h3 {
  letter-spacing: -.02em;
  margin-top: 44px;
  font-size: 25px;
  font-weight: 900;
}

.m67-scope .tile p {
  color: var(--m-muted);
  max-width: 260px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.m67-scope .tile:hover {
  background: var(--brand);
}

.m67-scope .tile:hover .tn, .m67-scope .tile:hover p {
  color: #eeeeeee6;
  color: lab(94.2% 0 0 / .9);
}

.m67-scope .whycards {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  display: grid;
}

.m67-scope .wcard {
  border: 1px solid var(--m-border);
  background: var(--m-card);
  border-radius: 6px;
  padding: 22px;
}

.m67-scope .wcard .wn {
  letter-spacing: .3em;
  color: var(--brand);
  margin-bottom: 14px;
  font-size: 10px;
}

.m67-scope .wcard b {
  letter-spacing: -.02em;
  font-size: 20px;
  font-weight: 900;
}

.m67-scope .wcard p {
  color: var(--m-muted);
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.55;
}

.m67-scope .broll {
  background: repeating-linear-gradient(-45deg, #0f0f0f 0 18px, #181818 18px 36px);
  background: repeating-linear-gradient(-45deg, lab(4.4379% 0 0) 0 18px, lab(8.36% -.00000745058 0) 18px 36px);
  border-radius: 6px;
  align-items: flex-end;
  min-height: 300px;
  margin-top: 76px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.m67-scope .broll .inner {
  background: linear-gradient(to top, #090909eb, #0000);
  background: linear-gradient(to top, lab(2.47865% 0 0 / .92), #0000);
  padding: 28px;
}

.m67-scope .broll .inner p {
  letter-spacing: -.02em;
  max-width: 640px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.05;
}

.m67-scope .ccards {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.m67-scope .ccard {
  border: 1px solid var(--m-border);
  background: var(--m-card);
  color: inherit;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  text-decoration: none;
  display: flex;
}

.m67-scope .ccard:hover {
  border-color: var(--brand);
}

.m67-scope .ccard .ck2 {
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--brand);
  font-size: 9px;
}

.m67-scope .ccard b {
  letter-spacing: -.02em;
  margin-top: 5px;
  font-size: 21px;
  font-weight: 900;
  display: block;
}

.m67-scope .ccard small {
  color: var(--m-muted);
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.m67-scope .contactgrid {
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 34px;
  display: grid;
}

.m67-scope .lfoot {
  border-top: 1px solid var(--m-border);
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--m-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 70px;
  padding: 20px 0;
  font-size: 10px;
  display: flex;
}

.m67-scope .lfoot .fsoc {
  gap: 16px;
  margin-left: auto;
  display: flex;
}

.m67-scope .lfoot .fsoc a {
  color: var(--m-muted);
  text-decoration: none;
}

.m67-scope .lfoot .fsoc a:hover {
  color: var(--brand);
}

@media (max-width: 900px) {
  .m67-scope .herogrid, .m67-scope .sgrid, .m67-scope .contactgrid {
    grid-template-columns: 1fr;
  }

  .m67-scope .kpis {
    grid-template-columns: 1fr 1fr;
  }

  .m67-scope .tiles, .m67-scope .whycards, .m67-scope .sechead {
    grid-template-columns: 1fr;
  }

  .m67-scope .lnav .navlinks {
    display: none;
  }

  .m67-scope .roomsel, .m67-scope .grid2, .m67-scope .grid3 {
    grid-template-columns: 1fr;
  }
}

.m67-scope .fin {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

.m67-scope select.fin {
  appearance: none;
  cursor: pointer;
}

.m67-scope select.fin:disabled {
  color: #636363;
  color: lab(42% 0 0);
  cursor: default;
}

.m67-scope select.fin option {
  color: var(--paper);
  background: #121212;
  background: lab(5.26802% 0 0);
}

.m67-scope select.fin option:disabled {
  color: #555;
  color: lab(36.2% 0 .00000596046);
}

.m67-scope textarea.fin {
  resize: vertical;
  min-height: 88px;
}

.m67-scope .fin::placeholder {
  color: #636363;
  color: lab(42% 0 0);
}

.m67-scope .selwrap {
  position: relative;
}

.m67-scope .selwrap .caret {
  pointer-events: none;
  color: var(--m-muted);
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.m67-scope .datewrap {
  position: relative;
}

.m67-scope .datewrap input[type="date"] {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.m67-scope .consent {
  cursor: pointer;
}

.m67-scope .consent input[type="checkbox"] {
  opacity: 0;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.m67-scope .consent input[type="checkbox"]:focus-visible ~ .cbox {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.m67-scope button.roomcard {
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  width: 100%;
}

.m67-scope a.cta {
  text-decoration: none;
}

.m67-scope .ferr {
  color: var(--brand);
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.5;
}

.m67-scope .fnote {
  color: var(--m-muted);
  font-size: 12px;
  line-height: 1.5;
}

.m67-scope :focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.m67-scope .qrtimerbar {
  transition: width 1s linear;
}

.m67-scope .qrcard .cta.ghosted {
  color: var(--ink);
  border-color: #cecece;
  border-color: lab(82.6% .0000298023 -.0000119209);
  margin-top: 14px;
  padding: 11px 22px;
}

.m67-scope .qrcard .cta.ghosted:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: none;
}

