:root {
  --cream: #f6f0e6;
  --cream-2: #efe6d6;
  --sand: #e7d9c2;
  --ink: #2f2a24;
  --ink-soft: #5c5348;
  --muted: #8a7e6e;
  --terra: #c66a3f;
  --terra-deep: #a8512c;
  --sage: #7f8f6c;
  --sage-deep: #5f6e4f;
  --gold: #d9a441;
  --line: rgba(47, 42, 36, 0.12);
  --card: #fffaf1;
  --shadow: 0 20px 50px -28px rgba(70, 52, 30, 0.45);
  --radius: 22px;
  --serif: "Noto Serif SC", serif;
  --sans: "Noto Sans SC", sans-serif;
  --display: "Cormorant Garamond", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection {
  background: var(--terra);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 40px;
  background: rgba(246, 240, 230, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.topbar strong {
  max-width: min(520px, 100%);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.topbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.topbar nav a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  transition: 0.25s;
}
.topbar nav a:hover {
  color: var(--terra);
}
.site-member-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.site-member-actions a,
.site-member-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s;
}
.topbar .site-member-actions a,
.topbar .site-member-actions button,
.site-nav.scrolled .site-member-actions a,
.site-nav.scrolled .site-member-actions button {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
}
.site-member-actions .member-login-link,
.site-member-actions .member-account {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink) !important;
  font-weight: 700;
}
.site-member-actions button:hover,
.site-member-actions a:hover {
  transform: translateY(-1px);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: 0.4s;
}
.site-nav.scrolled {
  background: rgba(246, 240, 230, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 40px;
}
.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #fff;
  transition: 0.4s;
  max-width: min(46vw, 560px);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-nav.scrolled .logo {
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.05em;
  transition: 0.3s;
}
.site-nav.scrolled .nav-links a {
  color: var(--ink-soft);
}
.nav-links a:hover {
  color: #fff;
}
.site-nav.scrolled .nav-links a:hover {
  color: var(--terra);
}
.nav-cta {
  padding: 9px 20px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 500;
  box-shadow: 0 8px 20px -8px rgba(217, 164, 65, 0.7);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: transparent;
  padding: 0;
}
.home-hero {
  min-height: 66vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .photo {
  position: absolute;
  inset: 0;
  background: var(--site-hero-image, linear-gradient(135deg, var(--sage-deep), #5e462e))
    center / cover;
  filter: saturate(1.05);
}
.hero-bg .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(48, 42, 36, 0.82) 0%,
    rgba(94, 70, 46, 0.55) 42%,
    rgba(127, 143, 108, 0.25) 100%
  );
}
.hero-bg .glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  right: -12vw;
  top: -10vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.35), transparent 65%);
  filter: blur(20px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}
.home-hero .hero-title {
  max-width: 19ch;
}
.home-hero .hero-actions {
  margin-top: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  max-width: 17ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  font-family: var(--display);
  font-weight: 600;
}
.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
}
.meta-row,
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.chip,
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 300;
}
.chip svg {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}
.hero-actions,
.actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn,
.primary,
.secondary,
button {
  padding: 15px 34px;
  border-radius: 40px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.96rem;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-primary,
.primary,
button {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px -12px rgba(217, 164, 65, 0.8);
}
.btn-primary:hover,
.primary:hover,
button:hover {
  transform: translateY(-2px);
}
.btn-ghost,
.secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover,
.secondary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.member-modal .btn-ghost,
.member-modal .secondary,
.member-summary .btn-ghost,
.card .btn-ghost,
.card .secondary,
.pay-box .btn-ghost,
.pay-box .secondary,
.member-panel .btn-ghost {
  background: #fffdf8;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.member-modal .btn-ghost:hover,
.member-modal .secondary:hover,
.member-summary .btn-ghost:hover,
.card .btn-ghost:hover,
.card .secondary:hover,
.pay-box .btn-ghost:hover,
.pay-box .secondary:hover,
.member-panel .btn-ghost:hover {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--line);
}
.member-modal-head .btn-ghost,
.member-summary .btn-ghost,
.quick-modal-head .btn-ghost {
  color: var(--ink) !important;
}
.btn-secondary {
  background: #fffdf8;
  color: var(--terra-deep);
  border: 1px solid var(--line);
  box-shadow: none;
}
.form-hint {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.login-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.login-links a,
.login-links button {
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--terra-deep);
  font-size: 0.92rem;
  font-weight: 500;
}
.login-links a:hover,
.login-links button:hover {
  color: var(--ink);
  transform: none;
}
.inline-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}
.inline-fields .btn-secondary {
  min-width: 148px;
  padding-inline: 18px;
}
@media (max-width: 560px) {
  .inline-fields {
    grid-template-columns: 1fr;
  }
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint .dot {
  width: 2px;
  height: 34px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), transparent);
  animation: drop 1.8s infinite;
}
@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

section,
.section {
  position: relative;
  padding: 110px 0;
}
.section {
  padding-left: clamp(18px, 6vw, 84px);
  padding-right: clamp(18px, 6vw, 84px);
}
.agenda-content-section {
  padding-top: 64px;
}
.sec-head,
.section-head {
  margin-bottom: 54px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.sec-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terra);
  letter-spacing: 0.05em;
}
.sec-title,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--ink);
  line-height: 1.25;
}
.sec-note,
.muted,
.section-head span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.intro {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.intro-copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.4;
}
.intro-copy h2 em {
  font-family: var(--display);
  font-style: italic;
  color: var(--terra);
  font-weight: 600;
}
.intro-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
}
.stat-row {
  display: flex;
  gap: 34px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat .n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--terra-deep);
  line-height: 1;
}
.stat .l {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.1;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1.2s;
}
.media-frame:hover img {
  transform: scale(1.05);
}
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1f1a16;
}
.video-frame {
  background: #1f1a16;
}
.leaf-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(6px);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--sage-deep);
  font-weight: 500;
}

.services {
  background: var(--card);
}
.home-fast {
  padding: 44px 0 86px;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.home-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #1f1a16;
  box-shadow: var(--shadow);
  aspect-ratio: 2.45 / 1;
}
.home-feature-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1f1a16;
}
.home-feature-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.home-feature-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.home-feature-copy span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.home-action-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 28px auto 24px;
}
.home-pill {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 250, 241, 0.96);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terra), var(--gold));
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 38px -22px rgba(168, 81, 44, 0.65);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
}
.quick-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 122px;
  padding: 14px 10px;
  border-radius: 18px;
  color: var(--ink);
  transition:
    transform 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.quick-item:hover {
  transform: translateY(-4px);
  background: #fffdf8;
  box-shadow: 0 16px 34px -28px rgba(70, 52, 30, 0.55);
}
.quick-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sage-deep), var(--gold));
  color: #fff;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.quick-icon img {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}
.quick-item strong {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
}
.home-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.home-info-strip .stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.66);
}
.home-banner-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.home-banner {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 28px 34px;
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(47, 42, 36, 0.88), rgba(127, 143, 108, 0.76)),
    var(--site-hero-image, linear-gradient(135deg, var(--sage-deep), var(--gold)));
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.home-banner span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}
.home-banner strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.home-banner small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}
.svc-grid,
.nav-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc,
.nav-block {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  transition: 0.4s;
  overflow: hidden;
  cursor: pointer;
  min-height: 180px;
}
.svc::before,
.nav-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--terra);
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
}
.svc:hover,
.nav-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: #fffdf8;
}
.svc:hover::before,
.nav-block:hover::before {
  transform: scaleY(1);
}
.svc h3,
.nav-block strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
}
.svc p,
.nav-block span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
  display: block;
}
.go {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--terra);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.agenda {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  display: grid;
  gap: 12px;
}
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: 0.3s;
  box-shadow: none;
}
.tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.day {
  display: none;
}
.day.show {
  display: block;
  animation: fade 0.5s;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.slot,
.agenda-row {
  display: grid;
  grid-template-columns: 130px 1fr 120px;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  background: transparent;
  border-radius: 0;
}
.slot .t {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--terra-deep);
  font-size: 1rem;
}
.slot .t span {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 2px;
}
.slot .c h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
}
.slot .c p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 300;
  margin-top: 5px;
}
.badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(127, 143, 108, 0.15);
  color: var(--sage-deep);
  letter-spacing: 0.05em;
}

.experts,
.media-support {
  background: var(--card);
}
.cards,
.media-grid,
.exp-grid,
.media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.card,
.panel,
.credential,
.rich,
.media-logo {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3,
.panel h3,
.rich h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 300;
}
.media-logo {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
}
.media-logo:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-3px);
}

.cta {
  background: linear-gradient(120deg, var(--sage-deep), var(--sage));
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  left: -10vw;
  bottom: -25vw;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.4), transparent 60%);
  filter: blur(10px);
}
.cta .wrap {
  position: relative;
  z-index: 2;
}
.cta .sec-tag {
  color: var(--gold);
}
.cta h2 {
  color: #fff;
  margin: 10px 0 14px;
}
.cta p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
  margin: 0 auto 32px;
}

.partners {
  background: var(--cream);
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.partner {
  padding: 16px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.96rem;
  transition: 0.3s;
}
.partner:hover {
  color: var(--terra);
  border-color: var(--terra);
  transform: translateY(-3px);
}

.exhibitor-page {
  display: grid;
  gap: 22px;
}
.exhibitor-support-section {
  padding-top: 14px;
  padding-bottom: 56px;
}
.exhibitor-support-page .rich {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.exhibitor-page > section {
  padding: 0;
}
.exhibitor-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}
.exhibitor-page.is-guest .exhibitor-overview {
  grid-template-columns: 1fr;
}
.exhibitor-intro {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0 0 68px;
}
.exhibitor-intro h2 {
  margin: 0;
}
.exhibitor-rich {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}
.exhibitor-rich h2,
.exhibitor-rich h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
}
.exhibitor-rich p,
.exhibitor-rich ul,
.exhibitor-rich ol,
.exhibitor-rich blockquote {
  margin: 8px 0;
}
.exhibitor-rich ul,
.exhibitor-rich ol {
  padding-left: 22px;
}
.exhibitor-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.exhibitor-actions,
.member-status-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.exhibitor-actions .btn-ghost,
.member-status-actions .btn-ghost {
  background: #fffdf8;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.exhibitor-actions .btn-ghost:hover,
.member-status-actions .btn-ghost:hover {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--line);
}
.exhibitor-page.is-guest .exhibitor-intro > .exhibitor-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 0;
}
.exhibitor-page.is-guest .exhibitor-intro > .exhibitor-actions button {
  min-height: 46px;
  padding: 11px 24px;
  font-size: 0.95rem;
}
.compact {
  margin-bottom: 18px;
}
.compact-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.package-list span {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink-soft);
}
.exhibitor-login-card {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.72);
}
.exhibitor-login-card h2 {
  margin: 4px 0 6px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.exhibitor-login-card p {
  max-width: 62ch;
  color: var(--ink-soft);
}
.booth-workbench {
  display: grid;
  gap: 16px;
}
.booth-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.booth-filter {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.68);
  box-shadow: none;
}
.booth-filter label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}
.booth-legend {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}
.booth-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.booth-legend i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}
.booth-legend .available {
  background: var(--sage);
}
.booth-legend .locked {
  background: var(--muted);
}
.booth-legend .selected {
  background: var(--gold);
}
.booth-map {
  min-height: 360px;
  padding: 0;
}
.booth-map-canvas {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(rgba(47, 42, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 42, 36, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #fffdf8, var(--cream-2));
  background-size:
    44px 44px,
    44px 44px,
    auto;
}
.booth-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booth-map-placeholder {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px dashed rgba(47, 42, 36, 0.18);
  border-radius: 12px;
  color: var(--muted);
}
.booth-map-placeholder strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--ink);
}
.booth-pin {
  position: absolute;
  z-index: 2;
  min-width: 64px;
  min-height: 42px;
  padding: 9px 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: var(--sage);
  color: #fff;
  box-shadow: 0 12px 26px -18px rgba(47, 42, 36, 0.85);
  transform: translate(-50%, -50%);
}
.booth-pin.locked {
  background: var(--muted);
  opacity: 0.72;
}
.booth-pin.selected {
  background: var(--gold);
  color: var(--ink);
  outline: 3px solid rgba(217, 164, 65, 0.25);
}
.booth-list {
  display: grid;
  gap: 10px;
}
.booth-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.5fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
}
.booth-card.selected {
  border-color: rgba(217, 164, 65, 0.95);
  background: linear-gradient(90deg, rgba(217, 164, 65, 0.18), rgba(255, 250, 241, 0.96) 46%);
  box-shadow: 0 18px 38px -26px rgba(168, 81, 44, 0.58);
}
.booth-card.selected::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--gold);
}
.booth-card.selected button {
  background: var(--terra-deep);
  color: #fff;
  box-shadow: 0 14px 28px -16px rgba(168, 81, 44, 0.72);
}
.booth-card strong {
  font-family: var(--serif);
  font-size: 1.08rem;
}
.booth-card p {
  margin-top: 3px;
}
.booth-card span {
  display: block;
  font-weight: 700;
}
.booth-card small {
  display: block;
  margin-top: 2px;
}
.booth-card .ok {
  color: var(--sage-deep);
}

.subhero {
  min-height: 340px;
  display: grid;
  align-content: center;
  padding: 80px clamp(18px, 7vw, 96px);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(48, 42, 36, 0.84), rgba(127, 143, 108, 0.45)),
    var(--subhero-image, none) center / cover;
}

.custom-page-shell .custom-page-section {
  padding-top: clamp(24px, 4vw, 48px);
}

.custom-page-loading-hint {
  margin: 0;
  padding: 48px 0;
  text-align: center;
  color: var(--muted, #8a8178);
  font-size: 15px;
}

body.site-chrome-pending .topbar,
body.site-chrome-pending .site-nav,
body.site-chrome-pending .subhero,
body.site-chrome-pending .mobile-bottom-nav {
  visibility: hidden;
}

body.site-content-pending.home-page #app > header,
body.site-content-pending.home-page #app > section,
body.site-content-pending.home-page .home-banner-list,
body.site-content-pending.home-page #mediaSupport,
body.site-content-pending.home-page .site-footer {
  visibility: hidden;
}
.subhero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.1;
}
.subhero p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
}
.exhibitor-support-page .subhero {
  min-height: 220px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.assistant-subhero {
  min-height: 260px;
}
.assistant-page {
  padding-top: 48px;
  padding-bottom: 108px;
}
.assistant-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}
.assistant-intro,
.assistant-console {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.assistant-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}
.assistant-intro h2 {
  margin: 0;
}
.assistant-intro p {
  margin: 0;
  color: var(--ink-soft);
}
.assistant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.assistant-chips button {
  width: auto;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--ink);
  box-shadow: none;
  font-size: 0.9rem;
}
.assistant-console {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
}
.assistant-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  padding: 24px;
}
.assistant-message {
  max-width: min(86%, 640px);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.assistant-message.user {
  align-self: flex-end;
  background: rgba(217, 164, 65, 0.18);
}
.assistant-message strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}
.assistant-message p {
  margin: 0;
  color: var(--ink-soft);
}
.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.88);
}
.assistant-form input {
  min-width: 0;
}
.assistant-form button {
  min-height: 44px;
  padding: 0 22px;
}
.agenda-ad-wrap {
  padding: 22px clamp(18px, 7vw, 96px) 0;
  display: flex;
  justify-content: center;
  background: var(--cream);
}
.agenda-carousel {
  position: relative;
  width: min(1160px, 100%);
  aspect-ratio: 6 / 1;
}
.agenda-ad {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--card), var(--cream-2));
  box-shadow: var(--shadow);
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.agenda-ad.active {
  opacity: 1;
  pointer-events: auto;
}
.agenda-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agenda-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.agenda-dots button {
  width: 9px;
  height: 9px;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(47, 42, 36, 0.28);
  box-shadow: none;
}
.agenda-dots button.active {
  background: var(--terra);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
}
.member-shell {
  display: grid;
  gap: 18px;
  padding-top: 42px;
  padding-bottom: 96px;
}
.member-shell.logged-in #memberLoginForm {
  display: none;
}
.member-dashboard {
  display: grid;
  gap: 12px;
}
.member-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.member-summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.15;
}
.member-summary p {
  margin-top: 4px;
  color: var(--ink-soft);
}
.member-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.member-module {
  position: relative;
  min-height: 118px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 18px 18px 38px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.member-module strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.member-module span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.55;
}
.member-module small {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--terra);
  font-size: 0.82rem;
  font-weight: 700;
}
.member-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 1px 2px 6px;
  scrollbar-width: none;
}
.member-strip::-webkit-scrollbar {
  display: none;
}
.member-strip-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 24px -22px rgba(70, 52, 30, 0.45);
  white-space: nowrap;
}
.member-strip-item strong {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1;
  color: var(--terra-deep);
}
.member-strip-item span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.member-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  width: min(760px, calc(100vw - 36px));
  max-height: min(820px, calc(100vh - 36px));
  overflow: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 80px -24px rgba(47, 42, 36, 0.55);
}
.member-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 24px 24px 14px;
  border-bottom: 1px solid var(--line);
}
.member-modal-head h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
}
.member-modal-body {
  padding: 22px 24px 26px;
  display: grid;
  gap: 18px;
}
.member-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(47, 42, 36, 0.38);
  backdrop-filter: blur(4px);
}
.pay-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}
.pay-box.compact {
  padding: 14px;
  gap: 8px;
}
.ticket-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.ticket-payment-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}
.ticket-payment-tab {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.ticket-payment-tab.active {
  background: var(--gold);
  box-shadow: 0 12px 30px -18px rgba(217, 164, 65, 0.9);
}
.ticket-payment-panel {
  display: grid;
  gap: 14px;
}
.payment-channel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}
.payment-channel.disabled {
  opacity: 0.76;
}
.payment-channel-head {
  display: grid;
  gap: 3px;
}
.payment-channel-head strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
}
.payment-channel-head span {
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.online-payment-result {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(127, 143, 108, 0.28);
  border-radius: 14px;
  background: rgba(127, 143, 108, 0.08);
}
.payment-link {
  color: var(--terra-deep);
  font-weight: 700;
}
.online-payment-continue {
  display: grid;
  gap: 10px;
}
.ticket-pending-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}
.ticket-pending-actions .ticket-small-action {
  width: auto;
  min-height: 0;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: none;
}
.ticket-pending-actions .ticket-small-action.secondary {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  color: var(--ink);
}
.ticket-history-toggle {
  width: auto;
  margin-top: 12px;
}
.ticket-history-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ticket-history-row {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.ticket-history-row:last-child {
  border-bottom: 0;
}
.ticket-history-row span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.payment-qr {
  width: min(220px, 100%);
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.payment-qr-empty {
  display: grid;
  place-items: center;
  color: var(--ink-soft);
}
.payment-qr svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #2f2a24;
}
.referral-qr-panel {
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}
.referral-qr-box {
  width: min(220px, 100%);
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.referral-qr-box span {
  display: grid;
  min-height: 96px;
  place-items: center;
  color: var(--ink-soft);
  text-align: center;
}
.referral-qr-box svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #2f2a24;
}
.member-status-panel {
  max-width: 900px;
  margin: 0 auto 24px;
}
.pay-box img {
  max-width: 180px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(127, 143, 108, 0.16);
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 700;
}
.form,
form {
  display: grid;
  gap: 14px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.inline-form {
  display: flex;
  gap: 10px;
}
.hidden {
  display: none !important;
}
video {
  width: 100%;
  border-radius: 18px;
  background: #111;
}
.custom-page h2,
.rich h2 {
  margin: 22px 0 10px;
}
.custom-page p,
.rich p,
.rich li {
  color: var(--ink-soft);
  margin-top: 8px;
}
.rich ul {
  padding-left: 20px;
}

.article-content,
.custom-page.article-content {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.article-content img,
.custom-page.article-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}
.article-content figure,
.custom-page.article-content figure {
  margin: 16px 0;
  max-width: 100%;
}
.article-content section,
.custom-page.article-content section {
  max-width: 100%;
}
.article-content table,
.custom-page.article-content table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
}
.article-content video,
.custom-page.article-content video {
  max-width: 100%;
  height: auto;
}

footer {
  background: var(--ink);
  color: rgba(246, 240, 230, 0.7);
  padding: 48px 0 26px;
}
.foot-top {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand {
  max-width: 62ch;
}
.foot-brand .logo {
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}
.foot-brand p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
}
.foot-host {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(246, 240, 230, 0.5);
  margin-top: 10px;
}
.copy {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(246, 240, 230, 0.45);
}
.foot-beian a {
  color: rgba(246, 240, 230, 0.45);
  text-decoration: none;
}
.foot-beian a:hover {
  color: rgba(246, 240, 230, 0.75);
  text-decoration: underline;
}

.chat {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 120;
}
.chat > button {
  display: none;
}
.chat-panel {
  width: min(360px, calc(100vw - 36px));
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.chat-head strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.chat-head button {
  width: auto;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.chat-log {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
  margin-bottom: 10px;
  font-size: 14px;
}
.chat-log div {
  padding: 8px 10px;
  background: var(--cream-2);
  border-radius: 12px;
}
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) scale(0.96);
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.55;
  max-width: min(480px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 10000;
  box-shadow: 0 18px 48px rgba(47, 42, 36, 0.28);
}
.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.95);
  box-shadow: 0 -12px 34px -26px rgba(47, 42, 36, 0.45);
  backdrop-filter: blur(14px);
}
.mobile-bottom-nav a,
.mobile-bottom-nav button {
  display: grid;
  min-height: 58px;
  padding: 0 4px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none;
  cursor: pointer;
}
.mobile-bottom-nav a.active,
.mobile-bottom-nav button.active {
  color: var(--terra-deep);
}
.mobile-bottom-nav a.active::before,
.mobile-bottom-nav button.active::before {
  content: "";
  width: 26px;
  height: 3px;
  margin-bottom: -10px;
  border-radius: 999px;
  background: currentColor;
}
.mobile-bottom-nav button:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.scan-page {
  min-height: 100vh;
  background:
    linear-gradient(140deg, rgba(48, 42, 36, 0.78), rgba(127, 143, 108, 0.42)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80") center / cover;
}
.scan-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}
.scan-card {
  width: min(560px, 100%);
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 24px 70px -32px rgba(0, 0, 0, 0.55);
  padding: clamp(26px, 6vw, 44px);
  text-align: center;
}
.scan-card h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.1;
  margin: 10px 0 12px;
}
.scan-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 700;
}
.scan-mark.success {
  background: rgba(127, 143, 108, 0.18);
  color: var(--sage-deep);
}
.scan-mark.error {
  background: rgba(198, 106, 63, 0.16);
  color: var(--terra-deep);
}
.scan-mark.loading {
  background: rgba(217, 164, 65, 0.2);
  color: var(--terra-deep);
  letter-spacing: 2px;
}
.scan-meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  text-align: left;
}
.scan-meta div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
}
.scan-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}
.scan-meta strong {
  font-size: 1rem;
  color: var(--ink);
  word-break: break-word;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .site-member-actions {
    gap: 6px;
  }
  .site-member-actions a,
  .site-member-actions button {
    min-width: 58px;
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .site-nav .site-member-actions {
    flex-shrink: 0;
    margin-left: 12px;
  }
  .intro-grid,
  .split,
  .exhibitor-overview,
  .booth-layout,
  .assistant-shell,
  .ticket-payment-grid {
    grid-template-columns: 1fr;
  }
  .exhibitor-steps {
    grid-template-columns: 1fr;
  }
  .exhibitor-login-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .svc-grid,
  .nav-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 24px 18px;
  }
  .home-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .agenda-carousel {
    aspect-ratio: 3 / 1;
  }
  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 74px;
    padding: 12px 20px;
  }
  .topbar strong {
    flex: 1 1 auto;
    max-width: none;
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    line-height: 1.35;
  }
  .topbar nav {
    display: none;
  }
  .topbar .site-member-actions {
    flex: 0 0 auto;
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .svc-grid,
  .nav-blocks {
    grid-template-columns: 1fr;
  }
  body.home-page {
    padding-bottom: 62px;
  }
  .home-hero {
    min-height: auto;
    padding: 92px 0 30px;
  }
  .home-hero .hero-content {
    padding-top: 0;
  }
  .home-hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }
  .home-hero .hero-title {
    font-size: clamp(1.85rem, 8.6vw, 2.55rem);
    line-height: 1.16;
  }
  .home-hero .hero-sub {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .home-hero .meta-row {
    margin-top: 18px;
  }
  .home-hero .chip {
    padding: 8px 12px;
  }
  .home-hero .chip:last-child {
    display: none;
  }
  .home-hero .hero-actions {
    display: none;
  }
  .home-fast {
    padding-top: 24px;
  }
  .home-feature-card {
    border-radius: 22px;
    aspect-ratio: 1.82 / 1;
  }
  .home-action-pills {
    gap: 12px;
    margin: 20px auto;
  }
  .home-pill {
    min-height: 56px;
    font-size: 1.12rem;
  }
  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 8px;
    padding: 20px 12px;
    border-radius: 22px;
  }
  .quick-item {
    min-height: 94px;
    padding: 8px 4px;
  }
  .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1rem;
  }
  .quick-item strong {
    font-size: 0.84rem;
  }
  .home-banner {
    min-height: 128px;
    padding: 24px;
  }
  .member-shell {
    gap: 12px;
    padding-top: 26px;
    padding-bottom: 86px;
  }
  .member-dashboard {
    gap: 10px;
  }
  .member-summary {
    align-items: flex-start;
    padding: 16px;
    border-radius: 14px;
  }
  .member-summary h2 {
    font-size: 1.7rem;
  }
  .member-summary .eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
  }
  .member-summary .btn-ghost {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }
  .member-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .member-module {
    min-height: 112px;
    padding: 14px 12px 32px;
    border-radius: 14px;
  }
  .member-module strong {
    font-size: 1.08rem;
    line-height: 1.25;
  }
  .member-module span {
    font-size: 0.8rem;
    line-height: 1.45;
  }
  .member-module small {
    right: 12px;
    bottom: 10px;
    font-size: 0.76rem;
  }
  .member-strip {
    gap: 6px;
    padding-bottom: 4px;
  }
  .member-strip-item {
    min-height: 32px;
    padding: 5px 9px;
  }
  .mobile-bottom-nav {
    display: grid;
  }
  .slot,
  .agenda-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .inline-form {
    flex-direction: column;
  }
  .assistant-page {
    padding-top: 28px;
  }
  .assistant-intro {
    padding: 20px;
  }
  .assistant-console {
    min-height: 480px;
  }
  .assistant-log {
    padding: 16px;
  }
  .assistant-message {
    max-width: 94%;
  }
  .assistant-form {
    grid-template-columns: 1fr;
  }
  .booth-map {
    min-height: 330px;
  }
  .booth-map-canvas {
    min-height: 300px;
  }
  .booth-card {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }
}
