:root {
  color-scheme: light;
  --page: #f6fbf8;
  --paper: #ffffff;
  --mist: #e5f5f0;
  --ink: #142426;
  --muted: rgba(20,36,38,.72);
  --line: rgba(20,36,38,.14);
  --aqua: #008c8a;
  --aqua-soft: #d7f4ec;
  --coral: #f26f5e;
  --sun: #f3b94d;
  --dark: #182a2d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.event-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0 8px;
  background: linear-gradient(180deg, rgba(246,251,248,.92), rgba(246,251,248,.58));
  backdrop-filter: blur(20px);
}
.site-nav {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 36px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 42px rgba(24,42,45,.14);
}
.brand {
  min-width: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 950;
  white-space: nowrap;
}
.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: var(--mist);
}
.menu-trigger,
.event-button,
.route-card a,
.article-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}
.event-button--primary {
  border-color: var(--aqua);
  background: var(--aqua);
  color: #ffffff;
}
.menu-trigger {
  gap: 10px;
  margin-left: auto;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 6px 0 16px;
  background: rgba(20,36,38,.06);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.menu-trigger i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 12px 24px rgba(24,42,45,.2);
  font-style: normal;
}
.menu-trigger i span {
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  border: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
}
.menu-drawer {
  position: fixed;
  top: 92px;
  right: max(18px, calc((100vw - 1180px) / 2 + 18px));
  z-index: 2;
  width: min(690px, calc(100vw - 36px));
  max-height: min(720px, calc(100vh - 112px));
  max-height: min(720px, calc(100dvh - 112px));
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 24px;
  background: #071514;
  color: #f7fff9;
  box-shadow: -28px 0 70px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #102625;
}
.drawer-top strong,
.drawer-top small {
  display: block;
}
.drawer-top strong {
  font-size: 21px;
  font-weight: 950;
  line-height: 1.05;
}
.drawer-top small {
  margin-top: 5px;
  color: rgba(247,255,249,.72);
  font-size: 13px;
  font-weight: 850;
}
.drawer-close {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #f7fff9;
  font: inherit;
  font-weight: 950;
}
.drawer-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 2px 120px;
}
.drawer-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}
.drawer-main a {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7fff9;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
}
.drawer-main a span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px;
  background: #163332;
  color: #f7fff9;
  font-size: 11px;
  font-weight: 950;
}
.drawer-main a[aria-current="page"],
.drawer-main a:hover,
.drawer-main a:focus-visible {
  outline: none;
}
.drawer-main a[aria-current="page"] span,
.drawer-main a:hover span,
.drawer-main a:focus-visible span {
  background: var(--sun);
  border-color: var(--sun);
  color: #15110a;
}
.drawer-section {
  margin-top: 18px;
}
.drawer-section p {
  margin: 0 0 12px;
  color: rgba(247,255,249,.74);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.drawer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.drawer-card {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  color: #071514;
  text-decoration: none;
}
.drawer-card--primary {
  border-color: rgba(243,185,77,.62);
  background: linear-gradient(145deg, #1e4f4c, #102625);
  color: #f7fff9;
}
.drawer-card::after {
  content: ">";
  position: absolute;
  top: 13px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #071514;
  color: #f7fff9;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}
.drawer-card strong,
.drawer-card span,
.drawer-card small {
  display: block;
  color: inherit;
  letter-spacing: 0;
  line-height: 1.02;
}
.drawer-card strong {
  max-width: 9ch;
  font-size: 18px;
  font-weight: 950;
  text-wrap: balance;
}
.drawer-card span {
  margin-top: auto;
  color: rgba(7,21,20,.68);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.14;
  text-transform: uppercase;
}
.drawer-card small {
  margin-top: 2px;
  color: rgba(7,21,20,.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.drawer-card--primary span,
.drawer-card--primary small {
  color: rgba(247,255,249,.78);
}
.drawer-card--primary::after {
  background: var(--sun);
  color: #071514;
}
.drawer-card:hover,
.drawer-card:focus-visible {
  border-color: rgba(243,185,77,.82);
  box-shadow: inset 0 0 0 1px rgba(243,185,77,.24), 0 12px 30px rgba(0,0,0,.22);
  transform: translateY(-1px);
  outline: none;
}
.drawer-event-icon-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.drawer-event-icon {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #f7fff9;
  text-align: center;
  text-decoration: none;
}
.drawer-event-icon img {
  width: clamp(58px, 15vw, 76px);
  height: clamp(58px, 15vw, 76px);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.drawer-event-icon span {
  max-width: 100%;
  color: #f7fff9;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.drawer-event-icon:hover,
.drawer-event-icon:focus-visible {
  outline: none;
}
.drawer-event-icon:hover img,
.drawer-event-icon:focus-visible img {
  border-color: var(--sun);
  box-shadow: 0 14px 28px rgba(243,185,77,.2);
}
@media (min-width: 769px) {
  body.menu-open .menu-drawer,
  .menu-drawer:hover,
  .menu-drawer:focus-within {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}
.event-hero {
  min-height: min(760px, calc(100svh - 64px));
  margin-top: -76px;
  padding: calc(clamp(78px, 9vw, 122px) + 76px) 0 clamp(58px, 7vw, 92px);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/images/naked-sauna-days-hero-16x9.jpg") center / cover;
}
.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,37,39,.9) 0%, rgba(18,37,39,.72) 52%, rgba(18,37,39,.38) 100%),
    linear-gradient(180deg, rgba(0,140,138,.16), rgba(242,111,94,.14));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
}
.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}
.event-kicker,
.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-hero .event-kicker,
.event-hero .eyebrow { color: #ffd76f; }
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2,
h3 {
  margin-bottom: 0;
  color: inherit;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 {
  max-width: 840px;
  font-size: clamp(44px, 7vw, 88px);
}
h2 { font-size: clamp(32px, 4.2vw, 58px); }
h3 { font-size: clamp(21px, 2vw, 28px); }
.event-lede {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.8vw, 22px);
}
.event-text-block {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.event-text-stack {
  display: grid;
  gap: 14px;
}
.event-text-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.event-hero .event-button {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: #ffffff;
}
.event-hero .event-button--primary {
  border-color: #ffd76f;
  background: #ffffff;
  color: var(--dark);
}
.event-button:hover,
.route-card a:hover,
.article-cta:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}
.hero-note {
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.hero-note h2 { font-size: clamp(25px, 2.2vw, 34px); }
.hero-note p:last-child { margin-bottom: 0; color: rgba(255,255,255,.84); }
.event-section {
  padding: clamp(54px, 7vw, 96px) 0;
}
.signup-section,
.route-section {
  padding: clamp(34px, 5vw, 64px) 0;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.community-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.signup-grid,
.learn-grid,
.guide-grid,
.split-copy {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}
.signup-copy,
.section-heading {
  display: grid;
  gap: 14px;
}
.signup-copy p,
.route-card p,
.event-product-copy p,
.learn-list span { color: var(--muted); }
.ml-form-embedContainer { width: 100% !important; }
.ml-form-embedWrapper {
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(24,42,45,.1);
}
.ml-block-form { display: grid; gap: 14px; }
.ml-field-group { display: grid; gap: 6px; }
.ml-field-group label,
.checkbox { font-weight: 850; }
.ml-field-group input {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}
.checkbox input { margin-top: 5px; }
.checkbox p { margin: 0; }
.ml-form-embedSubmit button.primary {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--aqua);
  border-radius: 6px;
  background: var(--aqua);
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}
.row-success {
  padding: 18px;
  border: 1px solid var(--aqua);
  border-radius: 8px;
  background: var(--aqua-soft);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.ml-form-embedSubmitLoad { display: inline-block; width: 20px; height: 20px; }
.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #fff #fff #fff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.learn-list {
  display: grid;
  gap: 12px;
}
.learn-list article,
.route-card,
.event-product-card,
.guide-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.learn-list article {
  display: grid;
  gap: 6px;
  padding: 20px;
}
.section-heading {
  max-width: 800px;
  margin-bottom: 24px;
}
.section-heading a,
.site-footer a { color: var(--aqua); text-underline-offset: 3px; }
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.route-card {
  display: grid;
  gap: 13px;
  align-content: start;
  overflow: hidden;
}
.route-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.route-card div,
.event-product-copy {
  display: grid;
  gap: 5px;
}
.route-card div,
.route-card p,
.route-card a { margin-left: 18px; margin-right: 18px; }
.route-card a { margin-bottom: 18px; }
.route-card--primary {
  border-color: rgba(0,140,138,.48);
  background: linear-gradient(180deg, var(--aqua-soft), #ffffff 58%);
}
.route-card strong { font-size: 1.1rem; line-height: 1.12; }
.route-card p { margin-bottom: 0; }
.route-card span { color: var(--muted); }
.route-card a {
  width: calc(100% - 36px);
  margin-top: 2px;
  padding-inline: 12px;
}
.guide-section {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.guide-link {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(145deg, #ffffff, var(--mist));
}
.guide-link span {
  color: var(--coral);
  font-weight: 950;
  text-transform: uppercase;
  font-size: .8rem;
}
.guide-link strong { font-size: 1.7rem; line-height: 1.08; }
.event-network-section {
  background: #eef5f4;
}
.event-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.event-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(20,36,38,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 28px 70px rgba(20,36,38,.11);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.event-product-card:hover,
.event-product-card:focus-visible {
  border-color: rgba(0,140,138,.28);
  box-shadow: 0 34px 90px rgba(20,36,38,.16);
  transform: translateY(-3px);
  outline: none;
}
.event-product-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #e7eef0;
}
.event-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-product-copy {
  flex: 1;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
}
.event-product-copy span {
  color: #2f73ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-product-copy strong {
  display: block;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .95;
}
.event-product-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.55;
}
.event-product-copy em {
  margin-top: auto;
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
}
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, .8fr));
  gap: 16px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer p { margin: 6px 0 0; }
.site-footer strong {
  display: block;
  color: var(--ink);
  font-weight: 950;
}
.site-footer nav {
  display: grid;
  gap: 6px;
  align-content: start;
}
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--aqua);
}
.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--aqua);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0,140,138,.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top span {
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  outline: none;
  box-shadow: 0 22px 50px rgba(0,140,138,.36);
}
.guide-hero {
  margin-top: -76px;
  padding: calc(72px + 76px) 0 72px;
  background: var(--dark);
  color: #ffffff;
}
.article-shell {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
}
.guide-intro {
  max-width: 800px;
}
.article-shell h2 {
  margin-top: 34px;
  font-size: clamp(28px, 3vw, 42px);
}
.article-shell p,
.article-shell li { color: var(--muted); }
.guide-check-grid,
.guide-detail-grid,
.guide-route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 12px;
}
.guide-check-grid article,
.guide-detail-grid article,
.guide-route-list a,
.guide-callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.guide-check-grid article {
  display: grid;
  gap: 7px;
  padding: 18px;
}
.guide-detail-grid article {
  padding: 20px;
}
.guide-detail-grid h3 {
  margin-bottom: 10px;
}
.guide-detail-grid p {
  margin-bottom: 0;
}
.guide-check-grid strong,
.guide-route-list strong {
  color: var(--ink);
  font-weight: 950;
}
.guide-check-grid span,
.guide-route-list span {
  color: var(--muted);
}
.guide-route-list a {
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
}
.guide-route-list em {
  margin-top: 8px;
  color: var(--aqua);
  font-style: normal;
  font-weight: 950;
}
.guide-callout {
  margin-top: 38px;
  padding: 24px;
  background: linear-gradient(145deg, #ffffff, var(--mist));
}
.guide-callout h2 {
  margin-top: 0;
}
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 20px;
  }
  .mini-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 3;
  }
  .mini-nav a { flex: 1; }
  .drawer-grid,
  .hero-grid,
  .signup-grid,
  .learn-grid,
  .guide-grid,
  .split-copy { grid-template-columns: 1fr; }
  .route-grid,
  .event-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .event-shell,
  .site-nav,
  .site-footer,
  .article-shell { width: min(100% - 28px, 1180px); }
  .site-header {
    padding: 8px 0;
  }
  .site-nav { min-height: 58px; padding: 0 8px 0 14px; }
  .brand span { font-size: .95rem; }
  .brand img { width: 32px; height: 32px; }
  .menu-trigger span { display: none; }
  .menu-trigger { min-height: 44px; padding: 0 5px; margin-left: auto; }
  body.menu-open,
  body.menu-open html { overflow: hidden; }
  .menu-open .menu-overlay { display: block; }
  .menu-drawer {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding: max(16px, env(safe-area-inset-top)) 16px max(22px, env(safe-area-inset-bottom));
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(104%);
    transition: transform .24s ease;
  }
  .menu-open .menu-drawer { transform: translateX(0); }
  .drawer-close { display: inline-flex; min-height: 38px; padding: 0 13px; }
  .drawer-top { margin-bottom: 10px; padding: 12px; border-radius: 16px; }
  .drawer-top strong { font-size: 19px; }
  .drawer-top small { font-size: 12px; }
  .drawer-scroll { padding-bottom: 18px; }
  .drawer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 8px; }
  .drawer-main a { min-height: 35px; gap: 8px; font-size: 13px; }
  .drawer-main a span { flex-basis: 29px; width: 29px; height: 29px; border-radius: 9px; font-size: 10px; }
  .drawer-section { margin-top: 10px; }
  .drawer-section p { margin-bottom: 8px; font-size: 10px; }
  .drawer-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .drawer-card { min-height: 76px; padding: 9px 30px 8px 10px; border-radius: 13px; gap: 4px; }
  .drawer-card::after { top: 8px; right: 8px; width: 20px; height: 20px; font-size: 12px; }
  .drawer-card strong { max-width: none; font-size: 13px; line-height: 1; }
  .drawer-card span { font-size: 8px; line-height: 1.04; }
  .drawer-card small { font-size: 8px; line-height: 1.02; }
  .drawer-event-icon-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .drawer-event-icon { gap: 5px; }
  .drawer-event-icon img { width: 45px; height: 45px; border-radius: 13px; }
  .drawer-event-icon span { font-size: 9px; }
  .event-hero {
    min-height: 620px;
    margin-top: -74px;
    padding-top: calc(44px + 74px);
    padding-bottom: 44px;
  }
  .event-hero::before { background-position: 58% center; }
  h1 { font-size: 39px; }
  h2 { font-size: 33px; }
  .event-actions { flex-direction: column; }
  .event-button { width: 100%; }
  .hero-note { padding: 18px; }
  .route-grid,
  .event-product-grid,
  .site-footer { grid-template-columns: 1fr; }
}