:root {
  color-scheme: light;
  --ink: #22252f;
  --ink-soft: #596173;
  --muted: #7a8293;
  --warm: #ff6f61;
  --amber: #ffb84d;
  --blue: #4f9bff;
  --mint: #46d2b4;
  --surface: #fffaf4;
  --glass: rgba(255, 255, 255, 0.34);
  --glass-strong: rgba(255, 255, 255, 0.52);
  --line: rgba(255, 255, 255, 0.68);
  --panel-tint: rgba(255, 250, 244, 0.48);
  --panel-tint-strong: rgba(255, 250, 244, 0.64);
  --shadow: 0 0 0 rgba(255, 255, 255, 0);
  --radius: 28px;
  --mx: 50%;
  --my: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

/* Keep anchor headings clear of the fixed navigation bar. */
#experience,
#membership,
#stores,
#events,
#contact {
  scroll-margin-top: 112px;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 111, 97, 0.28), transparent 28vw),
    radial-gradient(circle at 88% 22%, rgba(79, 155, 255, 0.24), transparent 30vw),
    linear-gradient(145deg, #fff7ef 0%, #f7fbff 42%, #fff3ee 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.liquid-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.flow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.42;
  transform: translate3d(0, 0, 0);
  animation: floatFlow 18s ease-in-out infinite alternate;
}

.flow-one {
  left: -12vw;
  top: 22vh;
  background: rgba(255, 111, 97, 0.42);
}

.flow-two {
  right: -16vw;
  top: 18vh;
  background: rgba(79, 155, 255, 0.38);
  animation-delay: -6s;
}

.flow-three {
  left: 32vw;
  bottom: -18vw;
  background: rgba(70, 210, 180, 0.28);
  animation-delay: -10s;
}

@keyframes floatFlow {
  from {
    transform: translate3d(-2vw, -1vh, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, 5vh, 0) scale(1.14);
  }
}

.glass-panel,
.glass-bar,
.glass-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background-clip: padding-box;
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.5), rgba(247, 251, 255, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(26px) saturate(1.7);
  -webkit-backdrop-filter: blur(26px) saturate(1.7);
}

.glass-panel {
  --mx: 50%;
  --my: 50%;
  --glare-angle: 135deg;
  --glare-opacity: 0;
  transition: border-color 240ms ease, box-shadow 280ms ease;
}

.glass-panel::before,
.glass-bar::before,
.glass-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.16));
  opacity: 0.46;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glass-panel::after,
.glass-bar::after,
.glass-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.72), rgba(255, 250, 244, 0.22) 28%, transparent 58%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
}

.glass-panel::before {
  background:
    linear-gradient(var(--glare-angle), rgba(255, 255, 255, var(--glare-opacity)) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.16));
  opacity: 0.14;
  transition: opacity 220ms ease, background 120ms linear;
}

.glass-panel::after {
  background:
    radial-gradient(circle 72px at var(--mx) var(--my), rgba(255, 255, 255, 0.58), rgba(255, 239, 231, 0.22) 46%, transparent 76%),
    radial-gradient(circle 260px at var(--mx) var(--my), rgba(255, 142, 130, 0.28), rgba(127, 189, 255, 0.2) 46%, transparent 74%);
  mix-blend-mode: normal;
  transition: opacity 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  [data-glass].is-glass-hovered::after {
    opacity: 0.82;
  }

  .glass-panel.is-glass-hovered {
    border-color: rgba(255, 255, 255, 0.88);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 0 -1px 0 rgba(255, 255, 255, 0.18),
      0 20px 46px rgba(42, 53, 76, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .glass-panel.is-glass-hovered::after {
    opacity: 0.82;
  }

  .glass-panel.is-card-tilted::before {
    opacity: 0.68;
  }

  .glass-panel.is-card-tilted {
    will-change: transform;
  }
}

.glass-panel > *,
.glass-bar > *,
.glass-button > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 28px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  transform: translateX(-50%) translateY(-4px) scale(0.985);
  box-shadow: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 18px rgba(255, 111, 97, 0.1);
  -webkit-user-drag: none;
  user-select: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(34, 37, 47, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 250, 244, 0.48);
  outline: 0;
}

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.glass-button:hover,
.glass-button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(255, 111, 97, 0.22);
}

.hero-section {
  position: relative;
  min-height: 92dvh;
  display: grid;
  align-items: center;
  padding: 126px max(24px, calc((100vw - 1120px) / 2)) 148px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 111, 97, 0.34), transparent 32vw),
    radial-gradient(circle at 82% 28%, rgba(79, 155, 255, 0.32), transparent 34vw),
    linear-gradient(135deg, #1f222d, #323847 48%, #1d2029);
  overflow: hidden;
}

.hero-media.is-loading::after,
.image-card-media.is-empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 30%);
  animation: glassLoading 1800ms ease-in-out infinite;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes glassLoading {
  0% {
    transform: translateX(-18%);
    opacity: 0.35;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(18%);
    opacity: 0.35;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 16, 22, 0.76) 0%, rgba(15, 16, 22, 0.34) 52%, rgba(15, 16, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(255, 247, 239, 0.98) 0%, rgba(255, 247, 239, 0) 32%);
}

.hero-content {
  width: min(760px, 100%);
  color: #fff8f4;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #ffd8c6;
}

.hero-content h1 {
  margin: 0;
  max-width: 820px;
  font-size: 112px;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-content h1 span {
  display: block;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 248, 244, 0.86);
  font-size: 22px;
  line-height: 1.68;
}

.intro-strip {
  width: min(1120px, calc(100% - 32px));
  margin: -74px auto 0;
  position: relative;
  z-index: 4;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 900;
}

.intro-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, rgba(255, 111, 97, 0.18), rgba(79, 155, 255, 0.18));
  color: rgba(31, 34, 43, 0.84);
}

.intro-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-block {
  width: min(1120px, calc(100% - 32px));
  margin: 118px auto 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.04;
  font-weight: 950;
}

.contact-card h2 {
  font-size: 46px;
  line-height: 1.08;
  white-space: nowrap;
}

#experience-title span {
  display: block;
}

#experience-title span:last-child {
  white-space: nowrap;
}

.section-heading p:not(.eyebrow),
.contact-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
}

.feature-card,
.event-card {
  border-radius: var(--radius);
}

.image-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(255, 111, 97, 0.1), 0 18px 58px rgba(79, 155, 255, 0.08);
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  background-clip: padding-box;
}

.image-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 111, 97, 0.32), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(79, 155, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(34, 37, 47, 0.86), rgba(70, 78, 96, 0.76));
  background-position: center;
  background-size: cover;
  transition: transform 700ms ease;
  transform: translateZ(0);
  transform-origin: center;
  will-change: transform;
}

.image-card:hover .image-card-media {
  transform: scale(1.035);
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border-radius: 22px;
  padding: 20px;
  color: #fffaf4;
}

.image-caption span,
.event-card span {
  display: block;
  color: rgba(255, 111, 97, 0.94);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.image-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.28;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.level-card h3,
.rule-board h3,
.event-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 950;
}

.level-card p,
.event-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.membership-section {
  padding-top: 4px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.member-roadmap {
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.roadmap-head span {
  display: block;
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.roadmap-head strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 950;
}

.roadmap-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 25px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--warm), var(--amber), var(--blue));
  opacity: 0.68;
}

.roadmap-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.roadmap-steps li span {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.82), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.26));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 28px rgba(255, 111, 97, 0.06);
  font-size: 16px;
  font-weight: 950;
}

.roadmap-steps li.permanent span {
  color: #201d1b;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.86), transparent 36%),
    linear-gradient(135deg, rgba(255, 184, 77, 0.78), rgba(79, 155, 255, 0.48));
}

.level-card {
  min-height: 202px;
  padding: 28px;
  border-radius: var(--radius);
}

.level-card.current {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 184, 77, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.62), rgba(247, 251, 255, 0.32));
}

.level-card.permanent {
  background:
    radial-gradient(circle at 80% 18%, rgba(79, 155, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.56), rgba(247, 251, 255, 0.34));
}

.level-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.rule-board {
  display: grid;
  grid-template-columns: minmax(290px, 0.32fr) minmax(280px, 1fr) minmax(170px, 0.2fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 20px;
  padding: 28px;
  border-radius: var(--radius);
}

.rule-copy {
  min-height: auto;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.68), rgba(247, 251, 255, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 14px 34px rgba(255, 111, 97, 0.05);
}

.rule-copy h3 {
  min-width: 0;
  white-space: nowrap;
}

.rule-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  color: rgba(31, 34, 43, 0.58);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.78), transparent 36%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.76), rgba(247, 251, 255, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 28px rgba(255, 111, 97, 0.06);
}

.rule-icon svg {
  width: 44px;
  height: 44px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rule-board ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-board li {
  min-height: 48px;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.62), rgba(247, 251, 255, 0.42));
  color: var(--ink);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
}

#stamp-code {
  scroll-margin-top: 110px;
}

.mini-code-card {
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.68), transparent 36%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.68), rgba(247, 251, 255, 0.44));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mini-code-preview-trigger {
  width: 100%;
  min-width: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 250, 244, 0.68);
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

.mini-code-preview-trigger::after {
  border: 0;
}

.mini-code-preview-trigger:focus-visible {
  outline: 3px solid rgba(255, 111, 97, 0.45);
  outline-offset: 4px;
}

.mini-code-card img {
  width: 100%;
  max-height: 220px;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 250, 244, 0.68);
  -webkit-user-drag: none;
  user-select: none;
}

.mini-code-card span {
  display: block;
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.mini-code-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
}

.event-card.no-image,
.event-card.is-empty {
  grid-template-columns: 1fr;
}

.event-preview-trigger {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.event-preview-trigger::after {
  content: "点击查看高清图";
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #fffaf4;
  background: rgba(31, 34, 43, 0.34);
  box-shadow: 0 8px 22px rgba(31, 34, 43, 0.18);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.event-preview-trigger:hover::after,
.event-preview-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.event-preview-trigger:focus-visible {
  outline: 3px solid rgba(255, 111, 97, 0.55);
  outline-offset: 4px;
}

.event-preview-trigger img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 260ms ease, filter 260ms ease;
}

.event-preview-trigger:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.018);
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.preview-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.preview-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 30%),
    rgba(18, 20, 28, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preview-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 30px;
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.25, 1);
  -webkit-touch-callout: none;
  user-select: none;
}

.preview-modal.is-open .preview-shell {
  transform: translateY(0) scale(1);
}

.preview-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.preview-kicker {
  margin: 0;
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-shell h2 {
  margin: 0;
  padding-right: 56px;
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.14;
  font-weight: 950;
}

.preview-image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(18, 20, 28, 0.08);
}

.preview-image {
  width: 100%;
  max-height: min(68dvh, 720px);
  object-fit: contain;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
}

.preview-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

body.preview-open {
  overflow: hidden;
}

.contact-section {
  width: min(1120px, calc(100% - 32px));
  margin: 118px auto 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.62), rgba(247, 251, 255, 0.4));
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 68px auto 0;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(89, 97, 115, 0.16);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.85, 0.25, 1);
}

.reveal.reveal-from-top {
  transform: translateY(-28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Anchor navigation should land on a stable heading, without a second reveal shift. */
.reveal.is-anchor-ready {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

[data-tilt],
.intro-card,
.level-card {
  transform-style: preserve-3d;
  transition: transform 280ms ease;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    width: calc(100% - 20px);
  }

  .nav-action {
    min-height: 42px;
    padding: 0 15px;
  }

  .hero-section {
    min-height: 88dvh;
    padding: 112px 20px 84px;
  }

  .hero-content h1 {
    font-size: 76px;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 44px;
  }

  .contact-card h2 {
    white-space: normal;
  }

  .intro-grid,
  .experience-layout,
  .membership-grid,
  .event-grid,
  .contact-card,
  .rule-board {
    grid-template-columns: 1fr;
  }

  .member-roadmap {
    grid-template-columns: 1fr;
  }

  .roadmap-steps {
    grid-template-columns: repeat(6, minmax(98px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .roadmap-steps::-webkit-scrollbar {
    display: none;
  }

  .mini-code-card {
    grid-template-columns: 138px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
  }

  .mini-code-card img {
    max-height: 176px;
  }

  .intro-card:first-child {
    grid-row: auto;
    min-height: 116px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
  }

  .intro-card:first-child .intro-icon {
    width: 48px;
    height: 48px;
  }

  .rule-copy {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
  }

  .rule-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .rule-icon svg {
    width: 34px;
    height: 34px;
  }

  .intro-strip {
    margin-top: -42px;
  }

  .image-card {
    min-height: 420px;
  }

  .event-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .brand-lockup span {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    justify-content: flex-start;
  }

  .nav-action {
    display: none;
  }

  .hero-content h1 {
    font-size: 50px;
    line-height: 0.96;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .contact-card p {
    font-size: 16px;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 36px;
  }

  .contact-card h2 {
    font-size: 34px;
  }

  .section-block,
  .contact-section {
    margin-top: 86px;
  }

  .intro-card,
  .level-card,
  .rule-board,
  .contact-card {
    border-radius: 22px;
  }

  .image-card {
    min-height: 330px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .mini-code-card {
    grid-template-columns: 1fr;
  }

  .mini-code-card img {
    max-height: 260px;
    object-position: center;
  }

  .mini-code-card strong {
    font-size: 15px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 28px;
  }
}

@media (hover: none) {
  .event-preview-trigger::after {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide.is-active {
    opacity: 1;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .glass-panel,
  .glass-bar,
  .glass-button {
    background: rgba(255, 250, 244, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .preview-backdrop {
    background: rgba(18, 20, 28, 0.78);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Content and motion upgrade: keep the existing liquid glass, add a clearer visit flow. */
.hero-section {
  min-height: max(780px, 92dvh);
  padding-bottom: 132px;
}

.hero-media .hero-slide {
  animation: none;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 7200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-media .hero-slide.is-active {
  opacity: 1;
  transform: scale(1.005);
}

.hero-story {
  width: min(680px, 100%);
  margin-top: 24px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-story.is-changing {
  opacity: 0.18;
  transform: translateY(8px);
}

.hero-story-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(255, 248, 244, 0.38);
  border-radius: 999px;
  color: #fff8f4;
  background: rgba(255, 248, 244, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-story strong {
  display: block;
  margin-top: 14px;
  max-width: 690px;
  color: #fff8f4;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 950;
}

.hero-story .hero-copy {
  margin-top: 12px;
}

.intro-card {
  min-height: 126px;
}

.intro-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.intro-copy small {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.intro-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 950;
}

.section-heading > .eyebrow {
  margin-bottom: 14px;
}

#experience-title span {
  display: block;
}

.mode-card {
  min-height: 166px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
}

.mode-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 17px;
  color: var(--warm);
  background: rgba(255, 250, 244, 0.45);
  font-size: 15px;
  font-weight: 950;
}

.mode-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.mode-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
}

.mode-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.56;
}

.level-card {
  display: flex;
  flex-direction: column;
}

.level-foot {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 900;
}

.member-roadmap {
  overflow: hidden;
}

.roadmap-steps::before {
  z-index: 0;
  background: rgba(89, 97, 115, 0.18);
  opacity: 1;
}

.roadmap-steps::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 7%;
  right: 7%;
  top: 25px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--warm), var(--amber), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.member-roadmap.is-animated .roadmap-steps::after {
  transform: scaleX(1);
}

.member-roadmap.is-animated .roadmap-steps li span {
  animation: roadmapStepIn 460ms cubic-bezier(0.2, 1.15, 0.35, 1) both;
}

.member-roadmap.is-animated .roadmap-steps li:nth-child(2) span { animation-delay: 90ms; }
.member-roadmap.is-animated .roadmap-steps li:nth-child(3) span { animation-delay: 180ms; }
.member-roadmap.is-animated .roadmap-steps li:nth-child(4) span { animation-delay: 270ms; }
.member-roadmap.is-animated .roadmap-steps li:nth-child(5) span { animation-delay: 360ms; }
.member-roadmap.is-animated .roadmap-steps li:nth-child(6) span { animation-delay: 450ms; }

@keyframes roadmapStepIn {
  0% { transform: scale(0.72); opacity: 0.18; }
  72% { transform: scale(1.09); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.stores-section .section-heading h2 span {
  display: inline-block;
}

.store-showcase {
  min-height: 372px;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border-radius: 34px;
}

.store-rail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 2px 10px 8px;
}

.store-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 12px 18px;
  border-bottom: 1px solid rgba(89, 97, 115, 0.14);
}

.store-count span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.store-count strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.store-count i,
.store-count b {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.store-tabs {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.store-tab {
  position: relative;
  width: 100%;
  min-height: 70px;
  display: grid;
  gap: 4px;
  padding: 13px 14px 13px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.store-tab::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 99px;
  background: transparent;
  transition: background 220ms ease;
}

.store-tab span {
  color: inherit;
  font-size: 17px;
  font-weight: 950;
}

.store-tab small {
  color: inherit;
  font-size: 12px;
  font-weight: 750;
}

.store-tab:hover,
.store-tab:focus-visible,
.store-tab.is-active {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.66), rgba(247, 251, 255, 0.38));
  outline: 0;
}

.store-tab:hover,
.store-tab:focus-visible {
  transform: translateX(3px);
}

.store-tab.is-active::before {
  background: linear-gradient(180deg, var(--warm), var(--amber));
}

.store-stage {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  background:
    linear-gradient(118deg, rgba(255, 111, 97, 0.18), rgba(255, 250, 244, 0.48) 46%, rgba(79, 155, 255, 0.2)),
    rgba(255, 250, 244, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.store-stage > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 340ms cubic-bezier(0.2, 0.88, 0.25, 1);
}

.store-stage.is-ready > * {
  opacity: 1;
  transform: translateY(0);
}

.store-stage.is-ready > *:nth-child(2) { transition-delay: 40ms; }
.store-stage.is-ready > *:nth-child(3) { transition-delay: 80ms; }
.store-stage.is-ready > *:nth-child(4) { transition-delay: 120ms; }

.store-stage-kicker {
  margin: 0;
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.store-stage h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 950;
}

.store-stage > p:not(.store-stage-kicker) {
  max-width: 530px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.store-meta a,
.store-meta span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 850;
}

.store-meta a {
  color: #fffaf4;
  background: linear-gradient(120deg, var(--warm), #ff9963);
}

.event-card {
  min-height: 222px;
  transition: box-shadow 260ms ease, border-color 260ms ease;
}

.event-card:hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(31, 34, 43, 0.08);
}

.event-card .event-copy span {
  margin-bottom: 9px;
}

.preview-image {
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 200ms ease, transform 260ms ease;
}

.preview-image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.preview-image.is-error {
  opacity: 0.55;
}

.contact-card h2 {
  white-space: normal;
}

.mobile-stamp-cta {
  position: fixed;
  z-index: 30;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  display: none;
  min-height: 48px;
  gap: 8px;
  padding: 0 16px;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 240ms ease, transform 280ms cubic-bezier(0.2, 0.9, 0.24, 1);
}

.mobile-stamp-cta span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
}

.mobile-stamp-cta strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 850px;
    padding-bottom: 124px;
  }

  .store-showcase {
    grid-template-columns: 1fr;
  }

  .store-rail {
    padding: 0;
  }

  .store-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-tab {
    min-height: 82px;
    padding: 12px 10px 12px 15px;
  }

  .store-tab span {
    font-size: 15px;
  }

  .store-tab small {
    font-size: 11px;
  }

  .store-stage {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 820px;
    padding: 110px 20px 116px;
  }

  .hero-story {
    margin-top: 19px;
  }

  .hero-story strong {
    font-size: 28px;
  }

  .intro-card {
    min-height: 106px;
  }

  .intro-copy strong {
    font-size: 15px;
  }

  .mode-card {
    min-height: 146px;
    padding: 20px;
  }

  .mode-card h3 {
    font-size: 22px;
  }

  .roadmap-head strong {
    font-size: 22px;
  }

  .stores-section .section-heading h2 span {
    display: block;
  }

  .store-tabs {
    grid-template-columns: 1fr;
  }

  .store-tab {
    min-height: 62px;
  }

  .store-stage {
    min-height: 290px;
    padding: 28px 22px;
  }

  .store-stage h3 {
    font-size: 34px;
  }

  .store-stage > p:not(.store-stage-kicker) {
    font-size: 15px;
  }

  .store-meta a,
  .store-meta span {
    font-size: 12px;
  }

  .mobile-stamp-cta {
    display: inline-flex;
  }

  .mobile-stamp-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-slide,
  .hero-story,
  .store-stage > *,
  .mobile-stamp-cta,
  .member-roadmap.is-animated .roadmap-steps li span {
    animation: none !important;
    transition: none !important;
  }

  .hero-media .hero-slide.is-active,
  .store-stage > * {
    transform: none;
  }
}

/* Editorial hierarchy and interaction refinements. */
.desktop-nav a {
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.intro-route {
  position: relative;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.25, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.intro-route:focus-visible {
  outline: 3px solid rgba(255, 111, 97, 0.52);
  outline-offset: 4px;
}

.intro-route-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.32);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.25, 1), color 220ms ease, background 220ms ease;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
}

.section-index::after {
  content: "";
  width: 44px;
  height: 1px;
  display: block;
  background: currentColor;
  opacity: 0.46;
}

.section-heading .section-index + h2 {
  position: relative;
}

.reveal {
  filter: blur(5px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.85, 0.25, 1), filter 720ms ease;
}

.reveal.is-visible {
  filter: blur(0);
}

.intro-grid .intro-card:nth-child(2),
.feature-stack .mode-card:nth-child(2),
.membership-grid .level-card:nth-child(2),
.event-grid .event-card:nth-child(2) {
  transition-delay: 80ms;
}

.intro-grid .intro-card:nth-child(3),
.feature-stack .mode-card:nth-child(3),
.membership-grid .level-card:nth-child(3),
.event-grid .event-card:nth-child(3) {
  transition-delay: 160ms;
}

.event-grid .event-card:nth-child(4) {
  transition-delay: 240ms;
}

.event-grid {
  grid-auto-flow: dense;
}

.event-card--featured {
  grid-column: span 2;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  min-height: 294px;
  padding: 22px;
}

.event-card--featured .event-preview-trigger img {
  aspect-ratio: 16 / 9;
}

.event-card--featured .event-copy h3 {
  max-width: 560px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.event-card--featured .event-copy p {
  max-width: 570px;
  font-size: 17px;
}

.event-grid.has-two-events .event-card--support {
  grid-column: span 2;
  grid-template-columns: 220px minmax(0, 1fr);
}

@media (hover: hover) and (pointer: fine) {
  .intro-route:hover {
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 48px rgba(31, 34, 43, 0.08);
    transform: translateY(-4px);
  }

  .intro-route:hover .intro-icon {
    transform: rotate(-4deg) scale(1.05);
  }

  .intro-route:hover .intro-route-arrow {
    color: #fffaf4;
    background: linear-gradient(120deg, var(--warm), #ff9963);
    transform: translateX(3px);
  }
}

.intro-icon {
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.25, 1);
}

@media (max-width: 900px) {
  .event-card--featured,
  .event-grid.has-two-events .event-card--support {
    grid-column: auto;
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  }

  .event-card--featured {
    min-height: 238px;
  }

  .event-card--featured .event-copy h3 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .section-index {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .section-index::after {
    width: 30px;
  }

  .intro-route-arrow {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .event-card--featured,
  .event-grid.has-two-events .event-card--support {
    grid-template-columns: 1fr;
  }

  .event-card--featured {
    min-height: 0;
  }

  .event-card--featured .event-copy h3 {
    font-size: 26px;
  }

  .event-card--featured .event-copy p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    filter: none;
  }

  .intro-route,
  .intro-route-arrow,
  .intro-icon {
    transition: none !important;
  }
}

/* Native anchor navigation reserves space for the fixed header without changing section rhythm. */
#experience,
#membership,
#stores,
#events,
#contact {
  margin-top: 6px;
  padding-top: 112px;
}

@media (max-width: 560px) {
  #experience,
  #membership,
  #stores,
  #events,
  #contact {
    margin-top: -14px;
    padding-top: 100px;
  }
}
