/* ==========================================================
   Ski Martock — design system
   Winter #0e296e · Gold #c49b58 · "Serious about snow."
   ========================================================== */

:root {
  --martock-deep:   #0a1f54;
  --martock-snow:   #f1f4fb;
  --martock-line:   #d9dee9;
  --gold-light:     #d9b06a;
  --gold-dark:      #b48542;
  --hd-blue:        #24399a;   /* header bar blue (per hlavicka_new.JPG) */
  --hd-line:        rgba(255,255,255,.16);
  --hd-open:        #5fd08a;   /* "OPEN" green */
}

/* Global pulse for status dot (also used outside mobile media query) */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(95, 208, 138, .18); }
  50%      { box-shadow: 0 0 0 8px rgba(95, 208, 138, .04); }
}

/* =========================================
   1) UTILITY STRIP — Cape Smokey-style top bar
   Promo message left + pills (weather, cam, status) right
   ========================================= */
.m-util {
  background: var(--winter);
  color: #fff;
}
.m-util__inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px var(--wrap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.m-util__msg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: .85rem;
  letter-spacing: .02em;
  color: #fff;
}
.m-util__msg .material-symbols-outlined {
  color: var(--gold);
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.m-util__msg strong {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.m-util__sub { opacity: .8; font-size: .8rem; }

.m-util__pills {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.util-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .02em;
}
.util-pill .material-symbols-outlined {
  color: var(--gold);
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.util-pill strong { font-weight: 700; font-size: .9rem; }
.util-pill span:not(.material-symbols-outlined):not(.status-dot) { opacity: .85; font-size: .8rem; }

.util-pill--link {
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.util-pill--link:hover { color: var(--gold); border-color: var(--gold); }
.util-pill--link:hover .material-symbols-outlined { color: var(--gold-light); }

.util-pill--status { display: none; }
.util-pill--status .status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4cb86b;
  box-shadow: 0 0 0 4px rgba(76, 184, 107, .18);
  display: inline-block;
}
.util-pill--status span:not(.status-dot) {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 1 !important;
}

@media (max-width: 1100px) {
  /* Keep the blue utility strip visible on mobile, just slimmer */
  .m-util__inner {
    padding: 8px var(--wrap);
    gap: 12px;
  }
  .m-util__msg { gap: 8px; font-size: .78rem; }
  .m-util__msg strong { font-size: .72rem; letter-spacing: .08em; }
  .m-util__sub { display: none; }
  .util-pill--status { padding: 2px 10px; }
  .util-pill--status span:not(.status-dot) { font-size: .66rem; letter-spacing: .14em; }
}
@media (max-width: 560px) {
  .util-pill--status { display: none; }
  .m-util__inner { justify-content: center; }
}

/* =========================================
   GOLD ACTION BAR (per mainbar.jpg)
   White uppercase, outlined material icons
   ========================================= */
.m-actionbar {
  background: var(--gold);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}
/* globální action bar v hlavičce skrytý — zobrazuje se jen varianta pod hero */
.m-actionbar { display: none; }
.m-actionbar--hero { display: flex; }
.m-actionbar__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, .25);
  transition: background .25s, color .25s;
}
.m-actionbar__btn:last-child { border-right: 0; }
.m-actionbar__btn:hover {
  background: var(--gold-dark);
  color: #fff;
}
.m-actionbar__btn .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 26px;
  color: #fff;
}

/* Mobile: gold action bar left-aligned (desktop stays centered) */
@media (max-width: 1100px) {
  .m-actionbar {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .m-actionbar__btn {
    justify-content: flex-start;
    padding: 14px var(--wrap);
    font-size: .82rem;
    letter-spacing: .08em;
  }
}
@media (max-width: 560px) {
  .m-actionbar__btn {
    flex-basis: 100%;
    padding: 12px var(--wrap);
    font-size: .8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }
  .m-actionbar__btn:last-child { border-bottom: 0; }
}

/* =========================================
   2) MAIN MENU STRIP — logo left, menu right
   Sits ABOVE the gold action bar
   ========================================= */
.m-mainmenu {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--martock-line);
  z-index: 300;   /* above the mobile backdrop (150) so the drawer is visible */
}
.m-mainmenu__inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 12px var(--wrap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.m-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-top: -54px;
  position: relative;
  z-index: 60;
}
.m-brand img,
.m-brand svg {
  height: 101px;
  width: auto;
  display: block;
  filter: none !important;
  -webkit-filter: none !important;
  box-shadow: none !important;
  transition: height .25s ease;
}

.m-mainmenu__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--martock-line);
  background: #fff;
}
.m-mainmenu__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--winter);
}

.m-nav { margin-left: auto; }
.m-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.m-nav__list > li { position: relative; }
.m-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  /* no underline by default */
  transition: color .25s;
}
.m-nav__list > li > a .caret {
  font-size: .65rem;
  opacity: .6;
  transition: transform .25s, color .25s;
}
.m-nav__list > li:hover > a,
.m-nav__list > li:focus-within > a {
  color: var(--gold);
}
.m-nav__list > li:hover > a .caret { transform: rotate(180deg); color: var(--gold); }

/* ===== Mega dropdown — anchored to the right edge of its trigger ===== */
.mega {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(8px);
  min-width: 480px;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 50px -12px rgba(10, 31, 84, .35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 26px 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 100;
}
.mega--wide {
  grid-template-columns: repeat(3, 1fr);
  min-width: 720px;
}
/* For the leftmost has-sub item ("Pricing"), anchor to left to avoid clipping */
.m-nav__list > li.has-sub:nth-child(2) .mega { right: auto; left: 0; }

.m-nav__list > li.has-sub:hover .mega,
.m-nav__list > li.has-sub:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* Small invisible bridge so cursor can move from link to dropdown without closing */
.m-nav__list > li.has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
}
.mega__col h4 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--martock-line);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.mega__col ul { list-style: none; margin: 0; padding: 0; }
.mega__col li { padding: 6px 0; }
.mega__col a {
  color: var(--ink);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s, padding .15s;
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.mega__col a:hover {
  color: var(--winter);
  border-color: var(--gold);
}

/* ===== Mobile utility chips (hidden on desktop) ===== */
.m-mobile-util { display: none; }

/* =========================================
   DESKTOP UTILITY STRIP — sits above main menu
   (visible only on desktop, hidden on mobile)
   ========================================= */
.m-desk-util {
  background: #fff;
  border-bottom: none;
}
.m-desk-util__inner {
  width: 100%;
  max-width: 100%;
  padding: 10px var(--wrap);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  top: 16px;
}
.m-desk-util .m-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--winter);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
  background: transparent;
  border: 0;
  padding: 4px 0;
  cursor: default;
  transition: opacity .2s, color .2s;
}
.m-desk-util .m-chip .material-symbols-outlined {
  color: var(--winter);
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.m-desk-util .m-chip strong { font-weight: 700; }
.m-desk-util .m-chip__sub {
  color: #6a6f82;
  font-weight: 500;
  font-size: .82rem;
  margin-left: 2px;
}
.m-desk-util .m-chip--cam { cursor: pointer; }
.m-desk-util .m-chip--cam:hover { color: var(--gold); }
.m-desk-util .m-chip--cam:hover .material-symbols-outlined { color: var(--gold); }
.m-desk-util .m-chip--status { gap: 9px; }
.m-desk-util .m-chip--status strong {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.m-desk-util .m-chip--open strong   { color: #1d6e3a; }
.m-desk-util .m-chip--closed strong { color: #8b2920; }
.m-desk-util .m-chip__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2c8a4a;
  box-shadow: 0 0 0 4px rgba(44, 138, 74, .18);
  display: inline-block;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.m-desk-util .m-chip--closed .m-chip__dot {
  background: #b3372a;
  box-shadow: 0 0 0 4px rgba(179, 55, 42, .18);
  animation: none;
}

@media (max-width: 1280px) {
  .m-nav__list { gap: 16px; }
  .m-nav__list > li > a { font-size: .76rem; letter-spacing: .1em; }
}

/* =========================================
   MOBILE — minimal header + modern drawer
   Layout:  [logo]   [-3°C] [📹] [• Open]   [☰]
   ========================================= */
@media (max-width: 1100px) {
  /* Hide desktop util strip on mobile */
  .m-desk-util { display: none; }

  .m-mainmenu__inner {
    padding: 10px var(--wrap);
    gap: 10px;
  }
  .m-brand { margin-top: 0; }    /* reset desktop overlap on mobile */
  .m-brand img, .m-brand svg { height: 94px; }

  /* === Minimal chips inline next to burger === */
  .m-mobile-util {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .m-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 0;
    color: var(--winter);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1;
    cursor: default;
    transition: opacity .2s;
  }
  .m-chip .material-symbols-outlined {
    font-size: 22px;
    color: var(--winter);   /* navy icon, per spec */
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  }
  .m-chip strong { font-weight: 700; letter-spacing: .01em; }

  /* Webcam — clickable, hover gold */
  .m-chip--cam { cursor: pointer; padding: 8px; }
  .m-chip--cam .material-symbols-outlined { font-size: 24px; }
  .m-chip--cam:hover .material-symbols-outlined,
  .m-chip--cam:active .material-symbols-outlined { color: var(--gold); }

  /* Status — coloured dot + word */
  .m-chip--status { padding: 8px 6px; gap: 7px; }
  .m-chip--status strong {
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .m-chip--open strong  { color: #1d6e3a; }
  .m-chip--closed strong { color: #8b2920; }
  .m-chip__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #2c8a4a;
    box-shadow: 0 0 0 4px rgba(44, 138, 74, .18);
    display: inline-block;
    animation: pulse-dot 2.2s ease-in-out infinite;
  }
  .m-chip--closed .m-chip__dot {
    background: #b3372a;
    box-shadow: 0 0 0 4px rgba(179, 55, 42, .18);
    animation: none;
  }
  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(44, 138, 74, .15); }
    50%      { box-shadow: 0 0 0 7px rgba(44, 138, 74, .05); }
  }

  /* === Burger — simple 3 lines, no fancy shadow === */
  .m-mainmenu__burger {
    display: inline-flex;
    width: 44px; height: 44px;
    padding: 0;
    align-items: center; justify-content: center;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: opacity .2s;
  }
  .m-mainmenu__burger:active { opacity: .6; }
  .m-mainmenu__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--winter);
    border-radius: 0;
    margin: 3px 0;
    transition: transform .3s var(--ease), opacity .15s;
  }
  /* Burger -> X */
  .m-mainmenu__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .m-mainmenu__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .m-mainmenu__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* === Modern slide-in drawer === */
  .m-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(380px, 88vw);
    background: #fff;
    border-radius: 20px 0 0 20px;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .25s;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: none;
    z-index: 200;
    margin-left: 0;
    display: flex;
    flex-direction: column;
  }
  .m-nav.is-open {
    transform: translateX(0);
    box-shadow: -30px 0 60px -10px rgba(10, 31, 84, .35);
  }

  /* Backdrop */
  body.menu-open::before {
    content: "";
    position: fixed; inset: 0;
    background: rgba(10, 15, 40, .5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 150;
    opacity: 0;
    animation: backdrop-in .3s ease forwards;
  }
  @keyframes backdrop-in { to { opacity: 1; } }
  body.menu-open { overflow: hidden; }

  /* Drawer header with brand */
  .m-nav::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    flex-shrink: 0;
  }

  .m-nav__close {
    display: inline-flex;
    position: sticky;
    top: 10px;
    align-self: flex-end;
    margin: 10px 14px 0 auto;
    width: 48px; height: 48px;
    align-items: center; justify-content: center;
    background: var(--winter);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px -8px rgba(10, 31, 84, .5);
    transition: background .2s, transform .25s, color .2s, border-color .2s;
    z-index: 50;
    flex-shrink: 0;
  }
  .m-nav__close svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2.2; }
  .m-nav__close:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(90deg); }
  .m-nav__close:active { transform: rotate(90deg) scale(.94); }

  /* Drawer title block */
  .m-nav__list {
    display: block;
    padding: 28px 22px 32px;
    margin: 0;
    flex: 1;
  }

  /* Each item — card-like, with smooth hover */
  .m-nav__list > li {
    padding: 0;
    margin: 2px 0;
    border-bottom: 1px solid var(--martock-line);
    position: relative;
  }
  .m-nav__list > li:last-child { border-bottom: 0; }
  .m-nav__list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink) !important;
    padding: 18px 8px;
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: none;
    border-left: 3px solid transparent;
    padding-left: 14px;
    margin-left: -8px;
    transition: color .2s, border-color .2s, background .2s, padding-left .2s;
    border-radius: 0;
  }
  .m-nav__list > li > a:hover,
  .m-nav__list > li > a:active,
  .m-nav__list > li:focus-within > a {
    color: var(--winter) !important;
    border-left-color: var(--gold);
    background: linear-gradient(90deg, rgba(196,155,88,.06), transparent 70%);
    padding-left: 18px;
  }
  .m-nav__list > li > a .caret {
    font-size: 1.1rem;
    opacity: .5;
    transition: transform .3s, opacity .2s, color .2s;
    margin-left: 12px;
  }
  .m-nav__list > li:hover > a .caret { opacity: 1; color: var(--gold); }

  /* Collapsible sub-menu */
  .m-nav__list > li.has-sub .mega {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0;
    padding: 0 0 0 14px;
    min-width: 0;
    grid-template-columns: 1fr; gap: 0;
    right: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1);
    background: transparent;
    border-radius: 0;
    margin: 0;
    border-left: 1px dashed var(--martock-line);
    margin-left: 6px;
  }
  .m-nav__list > li.has-sub.is-expanded .mega {
    max-height: 1000px;
    padding: 4px 0 12px 14px;
  }
  .m-nav__list > li.has-sub.is-expanded > a {
    color: var(--winter) !important;
    border-left-color: var(--gold);
    background: linear-gradient(90deg, rgba(196,155,88,.06), transparent 70%);
    padding-left: 18px;
  }
  .m-nav__list > li.has-sub.is-expanded > a .caret {
    transform: rotate(180deg);
    color: var(--gold);
    opacity: 1;
  }

  .mega--wide { grid-template-columns: 1fr; min-width: 0; }
  .mega__col { padding: 6px 0; }
  .mega__col h4 {
    margin: 0 0 4px;
    padding-bottom: 4px;
    border-bottom: 0;
    font-size: .66rem;
    letter-spacing: .25em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
  }
  .mega__col ul { padding: 0; }
  .mega__col li { padding: 2px 0; }
  .mega__col a {
    font-size: .9rem;
    padding: 10px 0;
    display: block;
    color: #444a5e;
    border-bottom: 1px solid transparent;
    transition: color .15s, padding-left .15s;
    letter-spacing: .01em;
  }
  .mega__col a:hover,
  .mega__col a:active {
    color: var(--winter);
    padding-left: 4px;
  }

  /* Drawer footer block — phone + social */
  .m-nav::after {
    content: "Ski Martock · 902.798.9501";
    display: block;
    padding: 18px 22px;
    background: var(--martock-snow);
    color: #6a6f82;
    font-size: .78rem;
    letter-spacing: .08em;
    text-align: center;
    border-top: 1px solid var(--martock-line);
    flex-shrink: 0;
  }

  .m-nav__list > li.has-sub::after { display: none; }
}
@media (min-width: 1101px) {
  .m-nav__close { display: none; }
}

/* Extra-small phones */
@media (max-width: 480px) {
  .m-mainmenu__inner { padding: 8px var(--wrap); gap: 4px; }
  .m-brand img, .m-brand svg { height: 64px; }
  .m-chip { padding: 6px 7px; font-size: .82rem; gap: 4px; }
  .m-chip .material-symbols-outlined { font-size: 20px; }
  .m-chip--status { padding: 6px 6px; gap: 6px; }
  .m-chip--status strong { font-size: .74rem; letter-spacing: .1em; }   /* keep "Open" word visible */
  .m-chip__dot { width: 9px; height: 9px; }
  .m-mainmenu__burger { width: 40px; height: 40px; }
  .m-mainmenu__burger span { width: 22px; }
}
@media (max-width: 380px) {
  .m-chip--temp strong { font-size: .78rem; }
  .m-chip--status strong { font-size: .68rem; letter-spacing: .08em; }
}

/* =========================================
   HERO — sits BELOW the gold action bar
   ========================================= */
.m-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0 90px;
}
.m-hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.m-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Solid blue film over the whole video — sits ABOVE the video via source order + z-index */
.m-hero__film {
  position: absolute; inset: 0; z-index: 1;
  background: var(--winter);
  opacity: .19;
  pointer-events: none;
}
.m-hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,15,40,.35) 0%, rgba(10,15,40,.15) 45%, rgba(10,15,40,.7) 100%);
  pointer-events: none;
}
.m-hero__content { position: relative; z-index: 3; }
.m-hero__content { width: 100%; max-width: 100%; margin: 0; padding: 0 var(--wrap); }
.m-hero__eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 6px 14px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}
.m-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin: .3em 0 .35em;
  text-transform: none;
}
.m-hero__title em {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}
.m-hero__sub {
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 2em;
}
.m-hero__stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.m-hero__stats > div {
  text-align: left;
}
.m-hero__stats strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  display: block;
}
.m-hero__stats span {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

@media (max-width: 1100px) {
  .m-hero { padding: 80px 0 70px; min-height: 60vh; }
}
@media (max-width: 700px) {
  .m-hero { padding: 60px 0 60px; min-height: 50vh; }
}

/* =========================================
   CONDITIONS BOARD — 3-card grid (winfo.jpg style)
   ========================================= */
.conditions-board {
  background: var(--martock-snow);
  padding: 70px 0;
  border-bottom: 1px solid var(--martock-line);
}
.conditions-board .container { width: 100%; max-width: 100%; padding: 0 var(--wrap); margin: 0; }

.conditions-board__head {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px;
}
.conditions-board__head .display { margin: .25em 0; font-size: clamp(1.5rem, 2.6vw, 2rem); }

.conditions-board__status {
  display: flex; gap: 30px; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
}
.conditions-board__status li { text-align: center; }
.conditions-board__status strong {
  display: block;
  font-size: 1.2rem; font-weight: 700; color: var(--winter);
}
.conditions-board__status .status--open  { color: #2c8a4a; }
.conditions-board__status .status--closed { color: #b3372a; }
.conditions-board__status span {
  display: block;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: #6a6f82; margin-top: 4px;
}

.conditions-board__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.conditions-card {
  background: #fff;
  border: 1px solid var(--martock-line);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.conditions-card header {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--martock-line); padding-bottom: 10px; margin-bottom: 16px;
}
.conditions-card h3 {
  margin: 0;
  font-size: .9rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--winter);
}
.conditions-card header small {
  color: #6a6f82; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}
.conditions-card__big {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.conditions-card__big .material-symbols-outlined {
  font-size: 48px;
  color: var(--gold);
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}
.conditions-card__big strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: 2.8rem; line-height: 1; color: var(--winter);
}
.conditions-card__big strong small {
  font-size: 1.2rem; color: var(--gold); margin-left: 2px; font-weight: 600;
}
.conditions-card ul { display: grid; gap: 6px; list-style: none; padding: 0; margin: 0; }
.conditions-card ul li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px dashed var(--martock-line);
  font-size: .88rem;
}
.conditions-card ul li:last-child { border-bottom: 0; }
.conditions-card ul li span { color: #6a6f82; letter-spacing: .04em; }
.conditions-card ul li strong { color: var(--ink); font-weight: 600; }

/* Dark center card (Martock Summit) */
.conditions-card--accent {
  background: var(--winter);
  color: #fff;
  border-color: var(--winter);
}
.conditions-card--accent h3,
.conditions-card--accent header small { color: rgba(255,255,255,.85); }
.conditions-card--accent header { border-color: rgba(255,255,255,.2); }
.conditions-card--accent .conditions-card__big strong { color: #fff; }
.conditions-card--accent ul li { border-color: rgba(255,255,255,.14); }
.conditions-card--accent ul li span { color: rgba(255,255,255,.7); }
.conditions-card--accent ul li strong { color: #fff; }

/* Webcam card */
.conditions-card--webcam { padding: 0; overflow: hidden; }
.conditions-card--webcam header { padding: 18px 22px 10px; margin-bottom: 0; }
.conditions-card__cam {
  display: block; position: relative;
  text-decoration: none;
}
.conditions-card__cam img {
  width: 100%; height: 100%; min-height: 230px;
  object-fit: cover; display: block;
}
.conditions-card__cam-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(10,15,40,.85); color: #fff;
  padding: 6px 14px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}

/* =========================================
   ACTIVITIES (8-tile grid on dark bg)
   ========================================= */
.m-activities {
  background: linear-gradient(135deg, var(--winter), var(--martock-deep));
  color: #fff;
  padding: 90px 0;
  isolation: isolate;
}
.m-activities .section__head { margin-bottom: 40px; }

.m-act-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .m-act-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .m-act-grid { grid-template-columns: 1fr; } }

.m-act {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s, border-color .25s, transform .25s;
}
.m-act:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.m-act__icon {
  font-size: 36px;
  color: var(--gold);
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" -25, "opsz" 48;
}
.m-act h3 {
  margin: 6px 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
}
.m-act p {
  margin: 0;
  flex: 1;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .8);
}
.m-act__link {
  margin-top: 10px;
  align-self: flex-start;
  color: var(--gold);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.m-act__link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* =========================================
   MEET THE MARTOCKS — team grid
   ========================================= */
.m-team { background: var(--martock-snow); padding: 90px 0; }
.m-team .section__head { margin-bottom: 36px; }
.m-team__lede {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4a4f63;
  margin: 14px 0 0;
}
/* ===== Swiper shell — bleeds to the right viewport edge ===== */
/* The shell sits inside .container (padding 0 32px). We extend it 32px past
   the container's right edge via negative margin, so cards run all the way
   to the viewport's right edge. Left stays aligned with the section header. */
.m-team__swiper-shell {
  position: relative;
  padding: 0 0 70px 0;
  margin-right: -32px;          /* cancel container's right padding */
}
@media (max-width: 700px) {
  .m-team__swiper-shell { padding: 0 0 70px; }
}

.m-team__swiper {
  width: 100%;
  overflow: hidden;
}
.m-team__swiper .swiper-slide { height: auto; display: flex; }
.m-team__swiper .swiper-slide > .m-team__card { width: 100%; }

/* ===== Side nav arrows ===== */
.m-team__nav {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--winter);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -10px rgba(10, 31, 84, .55);
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.m-team__nav:hover {
  background: var(--gold);
  color: var(--winter);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 30px -10px rgba(196, 155, 88, .6);
}
.m-team__nav:active { transform: translateY(0) scale(.98); }
.m-team__nav.swiper-button-disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}
.m-team__nav--side {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 4;
}
/* Arrows overlap the slides — sit just inside both edges
   Works for any swiper (m-team__prev, m-hl__prev, m-news__prev, …) */
.m-team__nav--side[class*="__prev"] { left: 12px; }
.m-team__nav--side[class*="__next"] { right: 44px; }    /* keep clear of viewport right edge */
.m-team__nav--side:hover { transform: translateY(calc(-50% - 2px)) scale(1.06); }
@media (max-width: 700px) {
  .m-team__nav--side { display: none; }   /* swipe gesture on mobile */
}

/* ===== Pagination bullets — left-aligned with section header ===== */
.m-team__pagination {
  position: absolute;
  bottom: 14px;
  left: 0; right: 32px;          /* right pad matches container so they don't hug viewport edge */
  text-align: left;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.m-team__pagination .swiper-pagination-bullet {
  width: 12px; height: 12px;
  background: rgba(14, 41, 110, .22);
  opacity: 1;
  border-radius: 50%;
  display: inline-block;
  margin: 0 !important;
  cursor: pointer;
  transition: background .25s, transform .25s, width .25s;
}
.m-team__pagination .swiper-pagination-bullet:hover {
  background: rgba(14, 41, 110, .45);
}
.m-team__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 32px;
  border-radius: 6px;
  transform: scale(1);
}

/* ===== Cards — vertical: photo on top, body below ===== */
.m-team__card {
  background: #fff;
  border: 1px solid var(--martock-line);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .25s;
}
.m-team__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(10, 31, 84, .3);
  border-color: var(--gold);
}
/* accent stripe at top — coloured per character */
.m-team__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--gold));
  z-index: 2;
}

.m-team__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--accent, var(--winter)) 0%, rgba(0,0,0,.25) 100%);
  background-blend-mode: multiply;
  overflow: hidden;
  position: relative;
}
.m-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.m-team__card:hover .m-team__photo img { transform: scale(1.04); }

.m-team__body {
  flex: 1;
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
}
.m-team__role {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.m-team__name {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--winter);
  line-height: 1.1;
}
.m-team__title {
  margin: 4px 0 10px;
  font-size: .92rem;
  font-weight: 500;
  color: #4a4f63;
  letter-spacing: .02em;
}
.m-team__quote {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--martock-line);
  font-size: .88rem;
  line-height: 1.55;
  color: #6a6f82;
  font-style: italic;
  position: relative;
}
.m-team__quote::before {
  content: "\201C";    /* fancy opening quote */
  position: absolute;
  top: 6px; left: -2px;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
}

.m-team__footer {
  margin: 70px 0 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.4;
  color: var(--winter);
}
.m-team__footer a {
  color: var(--gold);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.m-team__footer a:hover {
  color: var(--winter);
  border-bottom-color: var(--winter);
}
@media (max-width: 700px) {
  .m-team__footer { margin-top: 50px; font-size: 1.15rem; }
}

/* =========================================
   HIGHLIGHTS (Swiper — 3.5 tiles)
   ========================================= */
.m-highlights { padding: 90px 0; background: #fff; }
.m-highlights .section__head { margin-bottom: 36px; }

.m-hl__swiper { width: 100%; overflow: hidden; }
.m-hl__swiper .swiper-slide { height: auto; display: flex; }
.m-hl__swiper .swiper-slide > .hl-card { width: 100%; }

.hl-card {
  background: #fff;
  border: 1px solid var(--martock-line);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  min-height: 460px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .25s;
}
.hl-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(10, 31, 84, .35); border-color: var(--gold); }
.hl-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--martock-snow); }
.hl-card__body { padding: 22px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hl-card__tag {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.hl-card h3 { margin: 0; font-size: 1.25rem; color: var(--winter); font-weight: 700; letter-spacing: .02em; }
.hl-card p { margin: 0; color: #4a4f63; line-height: 1.65; font-size: .94rem; }
.hl-card .btn { align-self: flex-start; margin-top: auto; }

/* =========================================
   NEWS (Swiper — 3.5 tiles, dark)
   ========================================= */
.m-news { padding: 90px 0; background: linear-gradient(135deg, var(--winter), var(--martock-deep)); color: #fff; }

.m-news__swiper { width: 100%; overflow: hidden; }
.m-news__swiper .swiper-slide { height: auto; display: flex; }
.m-news__swiper .swiper-slide > .card { width: 100%; }

.m-news .card { height: 100%; min-height: 460px; display: flex; flex-direction: column; }
.m-news .card a { display: flex; flex-direction: column; height: 100%; }
.m-news .card__body { flex: 1; display: flex; flex-direction: column; }
.m-news .card__more { margin-top: auto; }

.m-news .card--dark {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
}
.m-news .card--dark:hover { border-color: var(--gold); }
.m-news .card--dark .card__title { color: #fff; }
.m-news .card--dark .card__excerpt { color: rgba(255, 255, 255, .78); }
.m-news .card--dark .card__more { color: var(--gold); border-color: var(--gold); align-self: flex-start; }

/* Dark variant for navigation + bullets on news section */
.m-news .m-team__nav {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}
.m-news .m-team__nav:hover {
  background: var(--gold);
  color: var(--winter);
  border-color: var(--gold);
}
.m-news .m-team__pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .25);
}
.m-news .m-team__pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, .5);
}
.m-news .m-team__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* =========================================
   PARTNERS
   ========================================= */
.partners {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--martock-line);
  border-bottom: 1px solid var(--martock-line);
}
.partners__label {
  text-align: center;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: #6a6f82; margin: 0 0 28px;
}
.partners__inner {
  display: flex; flex-wrap: wrap; gap: 50px;
  align-items: center; justify-content: center;
}
.partners img {
  height: 110px;
  width: auto;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .3s, opacity .3s;
}
.partners img:hover { filter: none; opacity: 1; }

/* =========================================
   VISIT / DIRECTIONS
   ========================================= */
.m-visit {
  background: linear-gradient(135deg, var(--winter), var(--martock-deep));
  color: #fff;
  padding: 80px 0;
}
.m-visit__inner {
  max-width: 100%; margin: 0 auto; padding: 0 var(--wrap);
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 900px) { .m-visit__inner { grid-template-columns: 1fr; } }
.m-visit h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase; letter-spacing: .04em;
  margin: .25em 0 .5em;
}
.m-visit p { line-height: 1.7; opacity: .9; margin: 0 0 1.5em; }
.m-visit a:not(.btn) { color: var(--gold); border-bottom: 1px solid var(--gold); }
.m-visit .btn { margin-right: 10px; margin-bottom: 10px; }
.m-visit__map { border: 1px solid rgba(255, 255, 255, .2); padding: 4px; }

/* =========================================
   FOOTER (Martock 5-col grid)
   ========================================= */
.footer--martock {
  background: linear-gradient(135deg, var(--winter), var(--martock-deep));
  color: #cbd0e0;
  padding: 70px 0 30px;
}
.footer--martock .container { max-width: 100%; padding: 0 var(--wrap); }
.footer-grid {
  display: grid; gap: 40px 30px;
  grid-template-columns: 1.4fr repeat(2, 1fr) 1.4fr;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-newsletter { grid-column: span 3; } }
@media (max-width: 700px)  { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-newsletter { grid-column: span 2; } .footer-brand { grid-column: span 2; } }

.footer--martock .logobot {
  height: 96px; width: auto;
  background: none;
  padding: 0;
  margin-bottom: 14px;
  filter: none !important;
}
.footer-tag { font-style: italic; color: var(--gold); margin: 0 0 14px; font-size: .92rem; }
.footer-address { list-style: none; padding: 0; margin: 0; font-size: .88rem; line-height: 1.7; color: #cbd0e0; }
.footer-address strong { color: #fff; }
.footer-phone { margin-top: 14px; font-size: .9rem; line-height: 1.7; }
.footer-phone a { color: var(--gold); border-bottom: 1px dotted rgba(196, 155, 88, .5); text-decoration: none; }

.footer-nav h2 {
  font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { padding: 4px 0; font-size: .88rem; }
.footer-nav a { color: #cbd0e0; text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-newsletter h2 {
  font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; margin: 0 0 12px;
}
.footer-newsletter .muted { color: #8a90a3; font-size: .85rem; line-height: 1.6; margin-bottom: 14px; }
.newsletter { display: flex; }
.newsletter input {
  flex: 1; padding: 12px 14px; font: inherit;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, .4); }
.newsletter input:focus { outline: 2px solid var(--gold); outline-offset: 0; }
.newsletter button {
  padding: 12px 18px;
  background: var(--gold); color: #fff;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem;
  border: 0; cursor: pointer;
  transition: background .2s;
}
.newsletter button:hover { background: var(--gold-light); }

.footer-socials { display: flex; gap: 14px; margin-top: 18px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, .06);
  color: #cbd0e0;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--gold); color: #fff; }

.footer-base {
  margin-top: 50px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: #8a90a3;
}
.footer-base a { color: #cbd0e0; text-decoration: none; }
.footer-base a:hover { color: var(--gold); }

/* =========================================
   INTERNAL PAGES
   ========================================= */
.page-hero {
  position: relative;
  min-height: 32vh;
  background: linear-gradient(135deg, var(--winter), var(--martock-deep));
  color: #fff;
  display: flex; align-items: center;
  isolation: isolate;
  padding: clamp(50px, 6vw, 90px) 0;
}
.page-hero--video { min-height: 46vh; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14, 41, 110, .58) 0%, rgba(10, 24, 64, .82) 100%);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero .container { max-width: 100%; padding: 0 var(--wrap); margin: 0 auto; }
.page-hero__crumb {
  display: inline-flex; gap: 8px; letter-spacing: .22em;
  font-size: .7rem; text-transform: uppercase; color: rgba(255, 255, 255, .78);
}
.page-hero__crumb a { color: rgba(255, 255, 255, .78); border-bottom: 1px solid transparent; text-decoration: none; }
.page-hero__crumb a:hover { color: var(--gold); border-color: var(--gold); }
.page-hero h1 {
  font-family: "Montserrat", sans-serif; font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: .35em 0 .25em;
  text-transform: uppercase;
}
.page-hero p { max-width: 720px; font-size: 1.02rem; line-height: 1.7; color: rgba(255, 255, 255, .88); margin: 0; }

.section { padding: clamp(60px, 8vw, 110px) 0; }
.section.section--paper { background: #fff; color: var(--ink); }
.section.section--dark { background: linear-gradient(135deg, var(--winter), var(--martock-deep)); color: #fff; }
.section .container { max-width: 100%; padding: 0 var(--wrap); margin: 0 auto; }

.prose { max-width: 820px; margin-inline: auto; font-size: 1.02rem; line-height: 1.8; color: #1c1f2e; }
.prose h2 { font-family: "Montserrat", sans-serif; font-weight: 600; letter-spacing: .03em; font-size: clamp(1.4rem, 2.4vw, 1.8rem); text-transform: uppercase; color: var(--winter); margin: 2em 0 .6em; }
.prose h3 { color: var(--martock-deep); margin: 1.6em 0 .5em; font-weight: 600; }
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.4em; list-style: disc; }
.prose li { margin: .35em 0; }
.prose a { color: var(--winter); border-bottom: 1px solid var(--gold); transition: color .2s; text-decoration: none; }
.prose a:hover { color: var(--gold); }
.prose blockquote { margin: 1.4em 0; padding: 1em 1.4em; border-left: 3px solid var(--gold); background: rgba(196, 155, 88, .06); font-style: italic; }

.grid-cards { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card { background: #fff; overflow: hidden; border: 1px solid var(--martock-line); transition: transform .35s var(--ease), box-shadow .35s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(10, 31, 84, .3); }
.card a { text-decoration: none; color: inherit; display: block; }
.card__media { aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 22px 22px 26px; }
.card__date { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.card__title { font-size: 1.1rem; font-weight: 600; margin: .5em 0; line-height: 1.35; color: var(--winter); }
.card__excerpt { font-size: .9rem; line-height: 1.6; color: #4a4f63; margin-bottom: 1em; }
.card__more { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--winter); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.section__head { margin-bottom: 40px; }
.section__head--row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-end; }
.eyebrow { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--winter); position: relative; padding-left: 32px; }
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 22px; height: 2px; background: var(--gold); transform: translateY(-50%); }
.eyebrow--light { color: rgba(255, 255, 255, .85); }
.display { font-family: "Montserrat", sans-serif; font-weight: 500; letter-spacing: .06em; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; margin: .35em 0 0; text-transform: uppercase; color: var(--winter); }
.display--light { color: #fff; }

/* Buttons reused */
.btn {
  display: inline-flex; align-items: center; gap: .65em;
  padding: .95em 1.55em; font-weight: 600; font-size: .92rem; letter-spacing: .04em;
  border-radius: 0; text-transform: uppercase; text-decoration: none;
  transition: transform .3s, background .25s, color .25s, border-color .25s;
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-light); color: #fff; transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, .5); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--ink-outline { border: 1.5px solid var(--winter); color: var(--winter); background: transparent; }
.btn--ink-outline:hover { background: var(--winter); color: #fff; }
.btn--sm { padding: .65em 1.1em; font-size: .78rem; }

/* Contact & form (reused) */
.contact-grid { display: grid; gap: 32px; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { padding: 30px 30px 36px; background: #fff; border: 1px solid var(--martock-line); }
.contact-info h3 { color: var(--winter); margin: 0 0 12px; font-weight: 600; }
.contact-info a { color: var(--winter); border-bottom: 1px dotted var(--gold); text-decoration: none; }
.contact-info ul { list-style: none; margin: 0; padding: 0; }
.contact-info li { padding: 6px 0; border-bottom: 1px dashed var(--martock-line); }
.contact-info li:last-child { border-bottom: 0; }

.form { display: grid; gap: 16px; }
.form label { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--winter); font-weight: 600; }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--martock-line); font: inherit; background: #fff;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }
.form textarea { min-height: 160px; resize: vertical; }
.form .field { display: grid; gap: 6px; }
.form button[type="submit"] { justify-self: start; background: var(--winter); color: #fff; padding: .95em 1.7em; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; border: 0; cursor: pointer; }
.form button[type="submit"]:hover { background: var(--martock-deep); }

.cta-banner { background: linear-gradient(135deg, var(--winter), var(--martock-deep)); color: #fff; padding: clamp(60px, 7vw, 100px) 0; text-align: center; }
.cta-banner .container { max-width: 100%; padding: 0 var(--wrap); margin: 0 auto; }
.cta-banner h2 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: .04em; text-transform: uppercase; margin: 0 0 .5em; }
.cta-banner p { max-width: 640px; margin: 0 auto 2em; opacity: .9; line-height: 1.7; }
.cta-banner .btn { margin: 0 6px; }

/* ============================== ARTICLE (news detail) ============================== */
.article__hero { margin: 0 0 1.6em; }
.article__hero img {
  width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block;
  border: 1px solid var(--martock-line);
}
.article__meta {
  display: flex; align-items: center; gap: 10px; margin: 0 0 1.8em;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--winter);
}
.article__meta::after { content: ""; flex: 1; height: 1px; background: var(--martock-line); }
.article__date { color: var(--gold); }
.article__sep { opacity: .5; }
.article__back { margin-top: 3em; padding-top: 1.6em; border-top: 1px solid var(--martock-line); }
.article__back a {
  border-bottom: 0; font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
}

/* ============================== SKIP LINK ============================== */
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--winter); color: #fff; padding: 12px 20px;
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================== ACTIVE NAV STATE ============================== */
.m-nav__list > li.is-current > a { color: var(--gold); }
.m-nav__list > li.is-current > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold);
}
.m-nav .mega a.is-active { color: var(--gold); font-weight: 700; }

/* ============================== FOCUS VISIBILITY ============================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ============================== MOBILE HARDENING ============================== */
/* Stop iOS from inflating text in landscape */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
/* overflow-x fallback for browsers without `clip` support (old iOS Safari) */
body { overflow-x: hidden; overflow-x: clip; }
/* Remove the 300ms double-tap delay on all interactive elements */
a, button, input, select, textarea, .btn { touch-action: manipulation; }

/* Card grids: minmax(280px) must never force the track wider than the
   viewport on narrow phones (Galaxy Fold 280px etc.) */
.grid-cards { grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }
.conditions-board__grid { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }

/* Touch targets ≥ 44px */
.footer-socials a { width: 44px; height: 44px; }

/* Stacked CTA buttons need breathing room when they wrap */
.cta-banner .btn { margin: 6px; }

@media (max-width: 1100px) {
  .m-mobile-util .m-chip--cam { min-width: 44px; min-height: 44px; justify-content: center; }
  /* Drawer footer clears the iPhone home-indicator area */
  .m-nav::after { padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 560px) {
  .partners { padding: 40px 0; }
  .partners__inner { gap: 24px 32px; }
  .partners img { height: 72px; }
}

@media (max-width: 700px) {
  /* Conditions status: two tiles per row, each exactly 50% */
  .conditions-board__status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    width: 100%;
  }
  /* Footer columns stack as plain blocks on mobile */
  .footer-grid { display: block; }
  .footer-grid .footer-brand { margin-bottom: 28px; }
  .footer-grid .footer-newsletter { margin-top: 28px; }
}

/* ================================================================
   WIREFRAME 2026 COMPONENTS (mk-*) — tables, calendar, stats, flows
   ================================================================ */

/* ---------- anchor pill row ---------- */
.mk-anchors { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 8px; padding: 0 var(--wrap); }
.mk-anchors a {
  display: inline-block; padding: .7em 1.3em; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  color: var(--winter); background: var(--martock-snow); border: 1px solid var(--martock-line);
  transition: background .2s, color .2s;
}
.mk-anchors a:hover { background: var(--winter); color: #fff; }

/* ---------- comparison / pricing tables ---------- */
.mk-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--martock-line); background: #fff; }
.mk-cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .92rem; }
.mk-cmp th, .mk-cmp td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--martock-line); vertical-align: middle; }
.mk-cmp thead th { background: var(--martock-snow); color: var(--winter); font-weight: 700; font-size: .9rem; letter-spacing: .04em; }
.mk-cmp tbody th { text-align: left; font-weight: 600; color: var(--martock-deep); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; background: #fff; white-space: nowrap; }
.mk-cmp td strong { color: var(--winter); font-size: 1.05em; }
.mk-cmp .mk-yes { color: #1d7a3d; font-weight: 700; }
.mk-cmp .mk-no { color: #b8bcc9; }
.mk-cmp .btn { margin: 0; white-space: nowrap; }
.mk-badge {
  display: inline-block; padding: .35em .9em; margin-bottom: .6em; font-size: .64rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; background: var(--winter); color: #fff;
}
.mk-badge--gold { background: var(--gold); color: #fff; }

/* simple 2–3 col data table (rentals, repair) */
.mk-table { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
.mk-table th, .mk-table td { padding: 12px 16px; border-bottom: 1px solid var(--martock-line); text-align: left; }
.mk-table thead th { background: var(--martock-snow); color: var(--winter); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.mk-table td:last-child, .mk-table th:last-child { text-align: right; }
.mk-table td strong { color: var(--winter); }

/* table + side info panel */
.mk-split { display: grid; gap: 28px; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); align-items: start; }
.mk-panel { background: var(--martock-snow); border: 1px solid var(--martock-line); padding: 26px 26px 30px; }
.mk-panel h3 { margin: 0 0 12px; color: var(--winter); font-weight: 600; font-size: 1.02rem; letter-spacing: .04em; text-transform: uppercase; }
.mk-panel p { font-size: .92rem; line-height: 1.65; color: #3c4155; margin: 0 0 1em; }
.mk-panel .btn { margin-top: 4px; }

/* ---------- price cards (lift tickets, combos, storage) ---------- */
.mk-prices { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.mk-price { background: #fff; border: 1px solid var(--martock-line); padding: 26px 24px 28px; display: flex; flex-direction: column; }
.mk-price h3 { margin: 0 0 .4em; color: var(--winter); font-weight: 700; font-size: 1.06rem; letter-spacing: .04em; text-transform: uppercase; }
.mk-price p { font-size: .88rem; line-height: 1.6; color: #4a4f63; margin: 0 0 1.1em; }
.mk-price__rows { margin: 0 0 1.3em; padding: 0; list-style: none; }
.mk-price__rows li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--martock-line); font-size: .92rem; }
.mk-price__rows li strong { color: var(--winter); }
.mk-price__big { font-size: 1.7rem; font-weight: 800; color: var(--winter); margin: 0 0 .5em; }
.mk-price .btn { margin-top: auto; justify-content: center; }

/* ---------- stat tiles (snow report, mountain report) ---------- */
.mk-stats { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); }
.mk-stat { background: #fff; border: 1px solid var(--martock-line); text-align: center; padding: 22px 14px 24px; }
.mk-stat small { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #6a7086; margin-bottom: 8px; }
.mk-stat strong { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; color: var(--winter); line-height: 1.1; }
.mk-stat--dark { background: var(--winter); border-color: var(--winter); }
.mk-stat--dark small { color: rgba(255,255,255,.7); }
.mk-stat--dark strong { color: #fff; }

/* ---------- current weather hero strip ---------- */
.mk-now { background: var(--martock-snow); border: 1px solid var(--martock-line); text-align: center; padding: clamp(34px, 5vw, 60px) 20px; }
.mk-now h2 { margin: 0 0 .35em; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3.4vw, 2.3rem); color: var(--winter); }
.mk-now p { margin: 0 0 1.1em; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #6a7086; }
.mk-unit { display: inline-flex; border: 1px solid var(--martock-line); background: #fff; }
.mk-unit button { padding: .5em 1.1em; font: inherit; font-weight: 700; font-size: .82rem; border: 0; background: transparent; color: var(--winter); cursor: pointer; }
.mk-unit button.is-on { background: var(--winter); color: #fff; }

/* ---------- road / notice bar ---------- */
.mk-notice { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: baseline; background: #fff; border: 1px solid var(--martock-line); border-left: 3px solid var(--gold); padding: 16px 20px; font-size: .92rem; }
.mk-notice small { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #6a7086; }
.mk-notice strong { color: var(--winter); }

/* ---------- forecast strip ---------- */
.mk-forecast { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr)); }
.mk-day { background: #fff; border: 1px solid var(--martock-line); text-align: center; padding: 20px 10px 22px; }
.mk-day .material-symbols-outlined { font-size: 34px; color: var(--winter-2); }
.mk-day h3 { margin: .5em 0 .2em; font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--winter); }
.mk-day p { margin: 0; font-size: .78rem; color: #6a7086; line-height: 1.55; }
.mk-day strong { display: block; margin-top: .35em; color: var(--winter); font-size: .95rem; }
.mk-day em { display: block; margin-top: .3em; font-style: normal; font-size: .74rem; font-weight: 700; color: var(--gold-dark); }

/* ---------- trail status lists ---------- */
.mk-trails { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
.mk-trails h3 { margin: 0 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); color: var(--winter); font-size: .92rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mk-trails ul { list-style: none; margin: 0; padding: 0; }
.mk-trails li { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 9px 2px; border-bottom: 1px dashed var(--martock-line); font-size: .92rem; color: #2a2e42; }
.mk-st { display: inline-flex; align-items: center; gap: 7px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.mk-st::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.mk-st--open { color: #1d7a3d; }
.mk-st--groomed { color: var(--winter-2); }
.mk-st--closed { color: #9aa0b4; }

/* ---------- webcams grid ---------- */
.mk-cams { display: grid; gap: 18px; }
.mk-cams__main { position: relative; border: 1px solid var(--martock-line); background: #0a0c1c; }
.mk-cams__main img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.mk-cams__sub { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.mk-cam { position: relative; border: 1px solid var(--martock-line); background: var(--martock-snow); display: block; }
.mk-cam img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.mk-cam__label, .mk-cams__main figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 8px 14px;
  background: linear-gradient(transparent, rgba(6, 24, 64, .85)); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}

/* ---------- events calendar ---------- */
.mk-cal { background: #fff; border: 1px solid var(--martock-line); padding: clamp(16px, 2.5vw, 30px); }
.mk-cal__bar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; }
.mk-cal__bar h3 { margin: 0; font-size: 1.05rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--winter); }
.mk-cal__bar .btn { padding: .5em .9em; font-size: .72rem; }
.mk-cal__bar span.mk-cal__spacer { flex: 1; }
.mk-cal table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.mk-cal th { padding: 10px 6px; background: var(--martock-snow); border: 1px solid var(--martock-line); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--winter); }
.mk-cal td { border: 1px solid var(--martock-line); vertical-align: top; height: 84px; padding: 6px; font-size: .78rem; color: #6a7086; }
.mk-cal td.is-out { background: #fafbfe; color: #c3c8d6; }
.mk-cal__ev { display: block; margin-top: 5px; padding: 5px 7px; background: var(--winter); color: #fff; font-size: .68rem; font-weight: 600; line-height: 1.3; text-decoration: none; }
.mk-cal__ev:hover { background: var(--winter-2); }
@media (max-width: 760px) {
  .mk-cal table, .mk-cal thead, .mk-cal tbody, .mk-cal tr { display: block; }
  .mk-cal thead { display: none; }
  .mk-cal td { display: none; height: auto; }
  .mk-cal td.has-ev { display: block; border-top: 0; }
  .mk-cal td.has-ev::before { content: attr(data-day); font-weight: 800; color: var(--winter); margin-right: 8px; }
}

/* ---------- event detail ---------- */
.mk-evinfo { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.mk-evinfo article { background: #fff; border: 1px solid var(--martock-line); padding: 24px; }
.mk-evinfo h3 { margin: 0 0 10px; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
.mk-evinfo p { margin: 0; font-size: .95rem; line-height: 1.65; color: #2a2e42; }
.mk-evinfo strong { color: var(--winter); }
.mk-sched { list-style: none; margin: 0; padding: 0; }
.mk-sched li { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: baseline; background: #fff; border: 1px solid var(--martock-line); padding: 14px 20px; margin-bottom: 10px; }
.mk-sched time { font-weight: 800; color: var(--winter); font-size: .88rem; letter-spacing: .06em; white-space: nowrap; }
.mk-sched span { color: #2a2e42; font-size: .95rem; }

/* ---------- gallery ---------- */
.mk-gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); }
.mk-gallery a, .mk-gallery figure { margin: 0; border: 1px solid var(--martock-line); display: block; background: var(--martock-snow); }
.mk-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.mk-gallery a:hover img { transform: scale(1.04); }

/* ---------- checklist ---------- */
.mk-check { list-style: none; margin: 0; padding: 0; }
.mk-check li { display: flex; align-items: center; gap: 14px; padding: 12px 4px; border-bottom: 1px solid var(--martock-line); font-size: .98rem; color: #2a2e42; }
.mk-check li::before {
  content: ""; flex: 0 0 auto; width: 20px; height: 20px;
  border: 2px solid var(--winter); background: #fff;
}

/* ---------- horizontal steps (learning experience) ---------- */
.mk-steps { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: stretch; }
.mk-step { flex: 1 1 150px; max-width: 200px; text-align: center; background: #fff; border: 1px solid var(--martock-line); padding: 22px 14px; position: relative; }
.mk-step .material-symbols-outlined { font-size: 34px; color: var(--gold-dark); }
.mk-step h3 { margin: .6em 0 0; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--winter); }
.mk-steps__arrow { align-self: center; color: var(--gold); font-weight: 800; font-size: 1.2rem; }
@media (max-width: 700px) { .mk-steps { flex-direction: column; align-items: center; } .mk-step { max-width: 340px; width: 100%; } .mk-steps__arrow { transform: rotate(90deg); } }

/* ---------- vertical progression flow (learning zone) ---------- */
.mk-flow { list-style: none; margin: 0; padding: 0; }
.mk-flow li { background: #fff; border: 1px solid var(--martock-line); padding: 16px 20px; position: relative; margin-bottom: 26px; }
.mk-flow li:not(:last-child)::after { content: "↓"; position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%); color: var(--gold); font-weight: 800; }
.mk-flow h3 { margin: 0 0 4px; font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--winter); }
.mk-flow p { margin: 0; font-size: .88rem; color: #4a4f63; line-height: 1.55; }

/* ---------- history timeline ---------- */
.mk-timeline { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); counter-reset: era; }
.mk-era { border-top: 3px solid var(--gold); padding-top: 14px; }
.mk-era h3 { margin: 0 0 4px; color: var(--winter); font-size: 1rem; font-weight: 800; letter-spacing: .06em; }
.mk-era small { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.mk-era p { margin: 0; font-size: .85rem; line-height: 1.6; color: #4a4f63; }
.mk-miles { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.mk-mile { flex: 1 1 140px; max-width: 180px; text-align: center; background: #fff; border: 1px solid var(--martock-line); padding: 18px 12px; }
.mk-mile strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--winter); }
.mk-mile span { font-size: .78rem; color: #4a4f63; line-height: 1.4; display: block; margin-top: 4px; }

/* ---------- FAQ accordion ---------- */
.mk-faq { border: 1px solid var(--martock-line); background: #fff; }
.mk-faq details { border-bottom: 1px solid var(--martock-line); }
.mk-faq details:last-child { border-bottom: 0; }
.mk-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--winter); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.mk-faq summary::-webkit-details-marker { display: none; }
.mk-faq summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--gold-dark); flex: 0 0 auto; }
.mk-faq details[open] summary::after { content: "–"; }
.mk-faq details > div { padding: 0 22px 20px; font-size: .95rem; line-height: 1.7; color: #3c4155; }
.mk-faq details > div a { color: var(--winter); border-bottom: 1px solid var(--gold); text-decoration: none; }

/* ---------- lodge map / floor tabs & facilities guide ---------- */
.mk-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.mk-tabs button { padding: .6em 1.2em; font: inherit; font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--martock-line); background: #fff; color: var(--winter); cursor: pointer; }
.mk-tabs button.is-on { background: var(--winter); color: #fff; border-color: var(--winter); }
.mk-facil { list-style: none; margin: 0; padding: 0; counter-reset: facil; }
.mk-facil li { counter-increment: facil; display: flex; gap: 14px; padding: 13px 2px; border-bottom: 1px dashed var(--martock-line); }
.mk-facil li::before {
  content: counter(facil); flex: 0 0 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--winter); color: #fff; font-weight: 800; font-size: .82rem;
}
.mk-facil h3 { margin: 0 0 2px; font-size: .9rem; font-weight: 700; color: var(--winter); }
.mk-facil p { margin: 0; font-size: .84rem; color: #4a4f63; line-height: 1.5; }

/* ---------- map / image placeholder panel ---------- */
.mk-mapbox { border: 1px solid var(--martock-line); background: var(--martock-snow); position: relative; }
.mk-mapbox img, .mk-mapbox iframe { width: 100%; display: block; border: 0; }
.mk-mapbox--ph { display: flex; align-items: center; justify-content: center; min-height: 320px; color: #8a90a6; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.mk-mapactions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ---------- two-col sidebar layout (trail map, directions) ---------- */
.mk-side { display: grid; gap: 32px; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); align-items: start; }
@media (max-width: 900px) { .mk-side, .mk-split { grid-template-columns: 1fr; } }

/* ---------- icon highlight tiles (safety highlights, why learn) ---------- */
.mk-tiles { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); }
.mk-tile { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--martock-line); padding: 16px 18px; font-size: .9rem; font-weight: 600; color: var(--winter); }
.mk-tile .material-symbols-outlined { color: var(--gold-dark); font-size: 26px; flex: 0 0 auto; }

/* ---------- trail difficulty guide ---------- */
.mk-diff { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); background: var(--martock-snow); border: 1px solid var(--martock-line); padding: clamp(20px, 3vw, 36px); text-align: center; }
.mk-diff figure { margin: 0; }
.mk-diff i { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; margin-bottom: 10px; }
.mk-diff i.di-green { background: #1d7a3d; border-radius: 50%; }
.mk-diff i.di-blue { background: var(--winter-2); }
.mk-diff i.di-black { background: #0a0c1c; transform: rotate(45deg); }
.mk-diff i.di-park { background: var(--gold); }
.mk-diff h3 { margin: 0; font-size: .88rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--winter); }
.mk-diff p { margin: 4px 0 0; font-size: .8rem; color: #6a7086; }

/* ---------- emergency band ---------- */
.mk-emergency { background: #fff; border: 1px solid var(--martock-line); border-left: 4px solid #b3261e; padding: clamp(24px, 3vw, 40px); }
.mk-emergency h2 { margin: 0 0 .4em; color: var(--winter); font-family: "Montserrat", sans-serif; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 1.25rem; }
.mk-emergency p { margin: 0 0 1.2em; color: #3c4155; line-height: 1.7; }

/* ---------- generic section spacing helper ---------- */
.mk-sub { margin-top: clamp(40px, 6vw, 70px); }
.mk-lede { max-width: 720px; color: #4a4f63; line-height: 1.7; margin: -22px 0 34px; }

@media (max-width: 480px) {
  /* Long button labels wrap instead of overflowing */
  .btn { white-space: normal; text-align: center; }
  /* Keep the burger at the 44px minimum even on small phones */
  .m-mainmenu__burger { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .m-hero__video, .page-hero__video { display: none; }
}


/* === NEW MENU + HOMEPAGE 2026 === */

/* utility lišta — kontakty vpravo s oddělovačem, odkazy vpravo */
.m-util__msg--contacts {
  gap: 22px;
  flex: 1 1 auto;
  justify-content: right;
  border-right: solid 1px;
  padding-right: 16px;
}
.m-util__msg--contacts .util-pill { font-size: .82rem; }
@media (max-width: 700px) {
  .m-util__pills { gap: 12px; }
  .m-util__pills .util-pill { font-size: .74rem; }
  .m-util__msg--contacts .util-pill span:not(.material-symbols-outlined) { display: none; }
}

/* CTA tlačítko v hlavním menu */
.m-nav__buy { display: flex; align-items: center; }
.m-nav__buy a {
  color: #fff !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.m-nav__buybtn { padding: 10px 18px; font-size: .78rem; white-space: nowrap; }
@media (max-width: 1100px) {
  .m-nav__buy { margin-top: 14px; }
  .m-nav__buybtn { display: block; width: 100%; text-align: center; padding: 14px 18px; }
}

/* rychlé CTA pod hero */
.m-quicklinks { background: var(--martock-snow, #f1f4fb); padding: 26px 0; }
.m-quicklinks__inner { display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap; }
.m-quicklinks__btn {
  flex: 1 1 220px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
  background: var(--winter, #0a1f54); color: #fff;
  border-radius: 999px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.m-quicklinks__btn .material-symbols-outlined { color: var(--gold, #d9b06a); font-size: 22px; }
.m-quicklinks__btn:hover { background: var(--gold-dark, #b48542); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,31,84,.18); }
@media (max-width: 700px) {
  .m-quicklinks__inner { flex-direction: column; }
  .m-quicklinks__btn { width: 100%; }
}

/* ================================================================
   HEADER 2026 — plovoucí bílá karta na tmavém podkladu
   (powdermountain.com style: nav vlevo, logo střed, utility vpravo,
   sbalené CURRENT CONDITIONS rozbalované tlačítkem dole)
   ================================================================ */
.mk-hd {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 400;
  background: transparent;
  padding: 24px 18px 0;
  pointer-events: none;
}
.mk-hd > * { pointer-events: auto; }
.mk-hd .m-mainmenu {
  border-radius: 16px;
  border-bottom: 0;
  overflow: visible;
  background: var(--hd-blue);
  color: #fff;
  box-shadow: 0 18px 50px -20px rgba(6, 24, 64, .55);
}
/* chování při scrollu: PC = fixed pořád; mobil = dolů mizí, nahoru se vysune */
.mk-hd.is-docked {
  position: fixed;
  padding-top: 12px;
  transition: transform .28s ease;
}
/* ve fixovaném stavu menší logo a nižší lišta */
.mk-hd.is-docked .m-brand { margin-top: 0; }
.mk-hd.is-docked .m-brand__logo,
.mk-hd.is-docked .m-brand svg,
.mk-hd.is-docked .m-brand img { height: 159px; margin-top: -25px; }
@media (min-width: 1101px) { .mk-hd.is-docked .m-mainmenu__inner { height: 84px; } }
@media (max-width: 1100px) {
  .mk-hd.is-docked { transform: translateY(-115%); }
  .mk-hd.is-docked.is-up { transform: none; }
}
/* při ukotvení se hot news schová */
.mk-hd.is-docked .m-hotnews { display: none; }

/* hero s videem přes celou obrazovku;
   na HP se odečítá výška gold action baru, aby byl vidět v prvním viewportu */
:root { --mk-actionbar-h: 61px; }
@media (max-width: 1100px) { :root { --mk-actionbar-h: 49px; } }
@media (max-width: 560px)  { :root { --mk-actionbar-h: 135px; } }
.page-hero--video { min-height: 100svh; }
.m-hero { min-height: calc(100svh - var(--mk-actionbar-h)); }
@media (min-width: 1101px) {
  .page-hero--video { min-height: max(100vh, 750px); }
  .m-hero { min-height: max(calc(100vh - var(--mk-actionbar-h)), 750px); }
}

/* HP hero obsah — tučný jednobarevný nadpis vlevo dole, text + CTA vpravo (hero_mar.JPG) */
.m-hero { align-items: flex-end; }
.m-hero__content--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 10px;
}
.m-hero__title--solid { margin: 0; color: #fff; }
.m-hero__aside { max-width: 460px; padding-bottom: 18px; }
.m-hero__aside p { font-size: .98rem; line-height: 1.65; color: rgba(255, 255, 255, .92); margin: 0 0 1.3em; }
@media (max-width: 900px) {
  .m-hero__content--split { flex-direction: column; align-items: flex-start; gap: 22px; }
  .m-hero__aside { padding-bottom: 0; }
}
/* hero pod overlay hlavičkou potřebuje prostor pro obsah */
.page-hero--video { padding-top: clamp(200px, 24vh, 260px); }
.mk-hd .m-mainmenu__inner { padding: 6px clamp(16px, 2.4vw, 34px); min-height: 82px; }
.mk-hd .m-brand { margin: -14px 0 -34px; align-self: center; z-index: 60; }
.mk-hd .m-brand__logo,
.mk-hd .m-brand img {
  height: 159px;
  width: auto;
  margin-top: -92px;
  position: relative;
  z-index: 555;
}

.mk-hd__right {
  display: flex; align-items: center; gap: 18px; justify-content: flex-end;
  flex-shrink: 0;
}
.mk-hd__cta { padding: .72em 1.35em; font-size: .74rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; white-space: nowrap; color: #fff !important; }

/* white burger bars on the blue card (mobile) */
.mk-hd .m-mainmenu__burger { border: 0; background: transparent; }
.mk-hd .m-mainmenu__burger span { background: #fff; }
/* keep the logo clear of the hot-news strip on desktop */
@media (min-width: 1101px) { .mk-hd .m-hotnews__inner { padding-left: 190px; } }
/* when docked (scrolled), collapse the top utility row */
.mk-hd.is-docked .mk-hd__top { display: none; }

/* ---------------------------------------------------------------
   TOP UTILITY ROW — contact icons left · conditions/status right
   --------------------------------------------------------------- */
.mk-hd__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(16px, 2.4vw, 34px);
  border-bottom: 1px solid var(--hd-line);
  color: #fff;
}
.mk-hd__contact { display: inline-flex; align-items: center; gap: 4px; position: relative; left: 185px; }
.mk-hd__ci {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  color: #fff; text-decoration: none; opacity: .92;
  transition: color .2s, background .2s, opacity .2s;
}
.mk-hd__ci:hover { color: var(--gold-2); background: rgba(255,255,255,.08); opacity: 1; }
.mk-hd__ci .material-symbols-outlined { font-size: 20px; }

.mk-hd__info {
  display: inline-flex; align-items: center; gap: 22px;
  flex-wrap: wrap; justify-content: flex-end;
}
.mk-hd__util {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; text-decoration: none; background: transparent; border: 0;
  cursor: pointer; font-family: inherit; transition: color .2s;
}
.mk-hd__util:hover { color: var(--gold-2); }
.mk-hd__util .material-symbols-outlined { font-size: 20px; color: #fff; transition: color .2s; }
.mk-hd__util:hover .material-symbols-outlined { color: var(--gold-2); }
.mk-hd__wx {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 600; font-size: .9rem;
  background: transparent; border: 0; padding: 2px 2px; font-family: inherit;
  cursor: pointer; transition: color .2s;
}
.mk-hd__wx:hover { color: var(--gold-2); }
.mk-hd__wx .material-symbols-outlined { font-size: 20px; color: #fff; }
.mk-hd__wx-caret { font-size: .6rem; opacity: .75; }
.mk-hd__wx[aria-expanded="true"] .mk-hd__wx-caret { opacity: 1; color: var(--gold-2); }
.mk-hd__snow { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: .8rem; }
.mk-hd__snow .material-symbols-outlined { font-size: 19px; color: #fff; }
.mk-hd__snow strong { font-weight: 700; }
.mk-hd__status { display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.mk-hd__status strong { color: var(--hd-open); font-weight: 800; }
.mk-hd__status .mk-hd__hours { color: var(--hd-open); font-weight: 700; opacity: .95; }
.mk-hd__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--hd-open);
  box-shadow: 0 0 0 4px rgba(95, 208, 138, .18);
  display: inline-block; animation: pulse-dot 2.2s ease-in-out infinite;
}

/* desktop: nav vlevo · logo střed · utility vpravo (flex order) */
@media (min-width: 1101px) {
  /* logo left · nav right · SEASON PASSES far right (per hlavicka_new.JPG) */
  .mk-hd .m-mainmenu__inner { gap: 24px; }
  .mk-hd .m-nav { margin-left: auto; }
  .mk-hd .m-nav__list { justify-content: flex-end; }
  /* white nav links on the blue bar */
  .mk-hd .m-nav__list > li > a { color: #fff; }
  .mk-hd .m-nav__list > li > a .caret { color: rgba(255,255,255,.7); opacity: 1; }
  .mk-hd .m-nav__list > li:hover > a,
  .mk-hd .m-nav__list > li:focus-within > a { color: var(--gold-2); }
  .mk-hd .m-nav__list > li:hover > a .caret { color: var(--gold-2); }
  /* header-width mega dropdown: menu columns left · banner holder right (megamenu.JPG) */
  .mk-hd .m-mainmenu__inner { position: relative; }
  .mk-hd .m-nav__list > li.has-sub { position: static; }
  .mk-hd .m-nav__list > li.has-sub .mega {
    top: 100%; left: 0; right: 0; width: auto; min-width: 0;
    margin-top: 8px;
    display: flex; align-items: stretch; gap: clamp(28px, 3vw, 56px);
    background: var(--hd-blue);
    border: 1px solid var(--hd-line);
    border-radius: 14px;
    box-shadow: 0 26px 46px -22px rgba(6, 24, 64, .65);
    padding: 26px clamp(22px, 2.4vw, 40px) 30px;
  }
  /* invisible bridge: keeps the dropdown open while moving from the trigger onto it */
  .mk-hd .m-nav__list > li.has-sub .mega::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 34px;
  }
  .mk-hd .m-nav__list > li.has-sub .mega__cols {
    display: flex; gap: clamp(28px, 3.2vw, 60px); flex: 1 1 auto; min-width: 0;
  }
  .mk-hd .m-nav__list > li.has-sub .mega__col { flex: 1 1 0; min-width: 140px; max-width: 230px; }
  .mk-hd .m-nav__list > li.has-sub .mega__col h4 { color: var(--gold-2); border-bottom-color: var(--hd-line); }
  .mk-hd .m-nav__list > li.has-sub .mega__col a { color: rgba(255, 255, 255, .85); }
  .mk-hd .m-nav__list > li.has-sub .mega__col a:hover { color: #fff; border-color: var(--gold-2); }
  /* banner / image holder on the right */
  .mk-hd .mega__promo { flex: 0 0 clamp(260px, 26vw, 380px); display: flex; }
  .mk-hd .mega__banner {
    position: relative; flex: 1; display: block; text-decoration: none;
    border-radius: 12px; overflow: hidden; min-height: 210px;
    background: rgba(255, 255, 255, .06); border: 1px solid var(--hd-line);
  }
  .mk-hd .mega__banner img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .45s ease;
  }
  .mk-hd .mega__banner:hover img { transform: scale(1.05); }
  .mk-hd .mega__banner-cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    display: flex; flex-direction: column; gap: 3px; padding: 16px 16px 14px; color: #fff;
    background: linear-gradient(180deg, rgba(6, 24, 64, 0), rgba(6, 24, 64, .88));
  }
  .mk-hd .mega__banner-cap strong {
    font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2);
  }
  .mk-hd .mega__banner-cap span { font-size: .96rem; font-weight: 600; }
  /* CTA lives in the right group — hide the in-nav button (kept for the mobile drawer) */
  .mk-hd .m-nav__list > li.m-nav__buy { display: none; }
}
@media (max-width: 1100px) {
  .mk-hd { padding: 12px 8px 0; }
  /* slim top row: keep temp + webcam + search + status, drop the rest */
  .mk-hd__top { padding: 6px 12px; gap: 10px; }
  .mk-hd__info { gap: 14px; }
  .mk-hd__snow,
  .mk-hd__info .mk-hd__util[href="/safety/"],
  .mk-hd__search,
  .mk-hd__status .mk-hd__hours,
  .mk-hd__util-label { display: none; }

  .mk-hd .m-mainmenu__inner { gap: 8px; padding: 6px 10px; flex-wrap: nowrap; min-width: 0; min-height: 0; }
  /* order: logo left · burger far right */
  .mk-hd .m-brand { order: 1; margin: -6px 0 -18px 0; }
  .mk-hd .m-brand__logo, .mk-hd .m-brand img { height: 92px; margin-top: 0; }
  .mk-hd__contact { left: 0; }
  .mk-hd .mega__promo { display: none; }          /* banner holder is desktop-only */
  .mk-hd__right { display: none; }               /* empty on mobile (CTA lives in the drawer) */
  .mk-hd .m-mainmenu__burger { order: 2; margin-left: auto; flex-shrink: 0; }
  .mk-hd__cta { display: none; }
}
@media (max-width: 380px) {
  .mk-hd .m-brand__logo, .mk-hd .m-brand img { height: 72px; }
  .mk-hd__wx strong { font-size: .82rem; }
}

/* --- sbalený conditions strip (white dropdown panel on the blue card) --- */
.mk-hd__cond { background: #fff; color: var(--ink); border-top: 1px solid var(--hd-line); padding: 22px clamp(16px, 2.4vw, 34px) 26px; }
.mk-hd__cond-head {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.mk-hd__cond-head h2 {
  margin: 0; font-family: "Montserrat", sans-serif; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--winter);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}
.mk-hd__cond-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mk-hd__report {
  display: inline-block; padding: .55em 1.1em; border: 1px solid var(--winter);
  border-radius: 8px; color: var(--winter); text-decoration: none;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.mk-hd__report:hover { background: var(--winter); color: #fff; }
.mk-hd__cond .mk-unit { border-radius: 8px; overflow: hidden; }
.mk-hd__stats { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 16px 0; }
.mk-hd__stats li { flex: 1 1 140px; min-width: 130px; border-left: 2px solid var(--gold); padding: 2px 16px; }
.mk-hd__stats small {
  display: block; font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #6a7086; margin-bottom: 4px;
}
.mk-hd__stats strong { font-size: 1.15rem; font-weight: 800; color: var(--winter); white-space: nowrap; }

/* --- search tlačítko v hlavičce --- */
button.mk-hd__util { background: transparent; border: 0; cursor: pointer; font-family: inherit; }
.mk-hd__search .material-symbols-outlined { font-size: 22px; color: #fff; transition: color .2s; }
.mk-hd__search:hover .material-symbols-outlined { color: var(--gold-2); }

/* --- fullscreen AI search popup (fancybox style) --- */
.mk-search { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: flex-start; justify-content: center; padding: clamp(20px, 8vh, 90px) 18px 30px; overflow-y: auto; }
.mk-search[hidden] { display: none; }
.mk-search__backdrop {
  position: fixed; inset: 0;
  background: rgba(6, 24, 64, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: backdrop-in .25s ease forwards;
}
.mk-search__panel {
  position: relative; z-index: 1;
  width: min(760px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 40px 90px -30px rgba(6, 24, 64, .6);
  animation: mk-search-in .3s cubic-bezier(.22, 1, .36, 1);
}
@keyframes mk-search-in { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.mk-search__panel .display { margin-bottom: .3em; }
.mk-search__hint { color: #4a4f63; font-size: .95rem; line-height: 1.6; margin: 0 0 22px; }
.mk-search__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--winter); color: #fff; border: 0; border-radius: 50%;
  cursor: pointer; transition: background .2s, transform .25s;
}
.mk-search__close:hover { background: var(--gold-dark); transform: rotate(90deg); }
.mk-search__fallback { margin: 14px 0 0; font-size: .9rem; color: #4a4f63; }
.mk-search__fallback a { color: var(--winter); border-bottom: 1px solid var(--gold); text-decoration: none; }

/* --- hot news bar jako spodní lišta bílé karty --- */
.mk-hd .m-hotnews {
  border: 0;
  border-top: 1px solid var(--gold-dark);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.mk-hd .m-hotnews__inner { padding: 9px var(--wrap); }

/* Hot news bar v hlavičce (nahradil gold action bar) */
.m-hotnews {
  background: var(--gold);
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}
.m-hotnews__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 12px var(--wrap); flex-wrap: wrap;
}
.m-hotnews__tag {
  background: var(--winter); color: #fff;
  padding: .35em .9em; font-size: .66rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
}
.m-hotnews__text {
  margin: 0; color: #fff; font-weight: 700; font-size: .88rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* Activities — SwiperJS carousel (5 vedle sebe na desktopu) */
.m-act-swiper { overflow: hidden; }
.m-act-swiper .swiper-slide { height: auto; display: flex; }
.m-act-swiper .m-act { width: 100%; height: 100%; display: flex; flex-direction: column; }
.m-act-swiper .m-act .m-act__link { margin-top: auto; }
.m-act-swiper__pagination { margin-top: 22px; }
.m-act-swiper__pagination.m-team__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  display: inline-block;
  margin: 0 !important;
  cursor: pointer;
  transition: background .25s, transform .25s, width .25s;
}
.m-team__nav.m-team__nav--side.m-act-swiper__prev,
.m-team__nav.m-team__nav--side.m-act-swiper__next {
  background: #fff;
  color: #000;
}

/* Events swiper na HP (světlé pozadí) */
.mk-ev-swiper { overflow: hidden; }
.mk-ev-swiper .swiper-slide { height: auto; display: flex; }
.mk-ev-swiper .swiper-slide .card { width: 100%; display: flex; flex-direction: column; }
.mk-ev-swiper .swiper-slide .card a { display: flex; flex-direction: column; height: 100%; }
.mk-ev-swiper__pagination { margin-top: 22px; }
.mk-ev-swiper__pagination.m-team__pagination .swiper-pagination-bullet {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block;
  background: var(--winter); opacity: .25; margin: 0 !important; cursor: pointer;
  transition: background .25s, opacity .25s;
}
.mk-ev-swiper__pagination.m-team__pagination .swiper-pagination-bullet-active { opacity: 1; }
.m-team__nav.m-team__nav--side.mk-ev-swiper__prev,
.m-team__nav.m-team__nav--side.mk-ev-swiper__next {
  background: var(--winter);
  color: #fff;
}

/* Live Conditions — webcam vlevo, panely vpravo */
.conditions-board__grid--home { grid-template-columns: 1.55fr 1fr; align-items: stretch; }
.conditions-card--big { display: flex; flex-direction: column; }
.conditions-card--big .conditions-card__cam { flex: 1; display: block; }
.conditions-card--big .conditions-card__cam img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.cond-side { display: grid; gap: 14px; align-content: start; }
.cond-tile {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px;
  background: #fff; border: 1px solid var(--martock-line, #d9dee9); border-radius: 14px;
  text-decoration: none; color: var(--winter, #0a1f54);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cond-tile > span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .04em; }
.cond-tile .material-symbols-outlined { color: var(--gold-dark, #b48542); font-size: 22px; }
.cond-tile strong { font-weight: 600; color: inherit; opacity: .85; white-space: nowrap; }
.cond-tile:hover { border-color: var(--gold, #d9b06a); box-shadow: 0 8px 22px rgba(10,31,84,.10); transform: translateY(-1px); }
@media (max-width: 900px) {
  .conditions-board__grid--home { grid-template-columns: 1fr; }
  .conditions-card--big .conditions-card__cam img { min-height: 220px; }
}

/* social feed band */
.m-social { padding: 72px 0; }
.m-social__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.m-social__card {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: #fff; text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.m-social__card svg { color: var(--gold, #d9b06a); flex-shrink: 0; }
.m-social__card h3 { margin: 0 0 6px; font-size: 1.05rem; letter-spacing: .02em; }
.m-social__card p { margin: 0; font-size: .9rem; opacity: .75; line-height: 1.5; }
.m-social__arrow { margin-left: auto; font-size: 1.4rem; color: var(--gold, #d9b06a); }
.m-social__card:hover { background: rgba(255,255,255,.09); border-color: var(--gold, #d9b06a); transform: translateY(-2px); }
@media (max-width: 800px) {
  .m-social__grid { grid-template-columns: 1fr; }
}
