:root {
  --ink: #111820;
  --muted: #76808e;
  --line: rgba(17, 24, 32, .12);
  --soft: #f7f8fa;
  --card: rgba(255, 255, 255, .96);
  --blue: #111820;
  --pink: #ff5a4e;
  --mint: #ff8f6e;
  --gold: #ffd28a;
  --page-accent: #ff5a4e;
  --page-accent-2: #ffd28a;
  --page-accent-soft: rgba(255, 90, 78, .1);
  --page-hero-ink: #111820;
  --page-hero-sub: rgba(17, 24, 32, .74);
  --page-hero-line: rgba(17, 24, 32, .2);
  --page-hero-bg:
    linear-gradient(135deg, #ff5a4e, #ff7a1a);
  --shadow: 0 18px 55px rgba(17, 24, 32, .08);
  --radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.page-home {
  --page-accent: #ff5a4e;
  --page-accent-2: #ffd28a;
  --page-accent-soft: rgba(255, 90, 78, .1);
  --page-hero-bg:
    linear-gradient(90deg, rgba(255, 210, 138, .42) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #fff, #fff6f4);
}
body.page-events {
  --page-accent: #ff9f4a;
  --page-accent-2: #ffe6b8;
  --page-accent-soft: rgba(255, 159, 74, .12);
  --page-hero-ink: #111820;
  --page-hero-sub: rgba(17, 24, 32, .68);
  --page-hero-line: rgba(255, 255, 255, .46);
  --page-hero-bg:
    linear-gradient(135deg, #fff4df 0%, #ffd891 48%, #ffb15f 100%);
}
body.page-guide {
  --page-accent: #3478f6;
  --page-accent-2: #b9d4ff;
  --page-accent-soft: rgba(52, 120, 246, .1);
  --page-hero-ink: #fff;
  --page-hero-sub: rgba(255, 255, 255, .82);
  --page-hero-line: rgba(255, 255, 255, .36);
  --page-hero-bg:
    linear-gradient(135deg, #5ea8ff 0%, #2f7df0 54%, #1d63d8 100%);
}
body.page-join {
  --page-accent: #d84f86;
  --page-accent-2: #ffd0e2;
  --page-accent-soft: rgba(216, 79, 134, .1);
  --page-hero-ink: #fff;
  --page-hero-sub: rgba(255, 255, 255, .82);
  --page-hero-line: rgba(255, 255, 255, .32);
  --page-hero-bg:
    linear-gradient(135deg, #ff7aa8 0%, #d84f86 52%, #a83a86 100%);
}
body.page-gallery {
  --page-accent: #18b987;
  --page-accent-2: #83f0cd;
  --page-accent-soft: rgba(24, 185, 135, .12);
  --page-hero-ink: #fff;
  --page-hero-sub: rgba(255, 255, 255, .82);
  --page-hero-line: rgba(255, 255, 255, .34);
  --page-hero-bg:
    linear-gradient(135deg, #2bd8a2 0%, #18b987 48%, #08785c 100%);
}
body.page-business {
  --page-accent: #c78920;
  --page-accent-2: #ffe0a1;
  --page-accent-soft: rgba(199, 137, 32, .12);
  --page-hero-ink: #111820;
  --page-hero-sub: rgba(17, 24, 32, .72);
  --page-hero-line: rgba(17, 24, 32, .22);
  --page-hero-bg:
    linear-gradient(135deg, #ffe0a1 0%, #f3b949 50%, #d79322 100%);
}
body.page-about {
  --page-accent: #7b61ff;
  --page-accent-2: #d8d0ff;
  --page-accent-soft: rgba(123, 97, 255, .1);
  --page-hero-ink: #fff;
  --page-hero-sub: rgba(255, 255, 255, .82);
  --page-hero-line: rgba(255, 255, 255, .34);
  --page-hero-bg:
    linear-gradient(135deg, #9b84ff 0%, #7b61ff 48%, #5541d9 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.soft-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img, .footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(91, 126, 229, .18);
}
.brand span { display: grid; min-width: 0; }
.brand b { font-size: 16px; white-space: nowrap; }
.brand small {
  max-width: 260px;
  color: var(--muted);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #42506a;
  font-size: 14px;
  white-space: nowrap;
}
.main-nav a.active, .main-nav a:hover {
  color: #fff;
  background: #111820;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #eef4ff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-main {
  width: min(1260px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .82fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(16px, 3svh, 30px) 0 clamp(10px, 2.4svh, 22px);
}

.eyebrow, .tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  color: #536fd2;
  background: rgba(91, 126, 229, .1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 14px 0;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}
.gradient-title {
  color: transparent;
  background: linear-gradient(120deg, #24324b 0%, #5b7ee5 42%, #d978a4 78%, #f2b35f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
h2 {
  margin: 10px 0 14px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.18;
}
.section-title-accent {
  color: transparent;
  background: linear-gradient(115deg, #24324b, #526fd8 52%, #d978a4);
  -webkit-background-clip: text;
  background-clip: text;
}
h3 { margin: 10px 0; font-size: 21px; }
p { line-height: 1.85; }
.lead {
  max-width: 720px;
  color: #43516c;
  font-size: 18px;
}
.color-lead {
  color: #3f516f;
  border-left: 4px solid rgba(91, 126, 229, .48);
  padding-left: 14px;
}
.note { max-width: 720px; color: var(--muted); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
}
.btn.primary {
  color: #fff;
  border-color: transparent;
  background: #111820;
  box-shadow: 0 13px 28px rgba(17, 24, 32, .14);
}
.btn.soft { color: #111820; background: #f1f3f5; border-color: transparent; }
.btn.ghost { background: rgba(255,255,255,.68); }
.btn.disabled { opacity: .52; pointer-events: none; }

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.keywords span, .tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #5f6d85;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  font-size: 13px;
}
.keywords span:nth-child(1) {
  color: #405bc4;
  background: rgba(91, 126, 229, .12);
}
.keywords span:nth-child(2) {
  color: #b45279;
  background: rgba(241, 154, 185, .14);
}
.keywords span:nth-child(3) {
  color: #2d8a7d;
  background: rgba(115, 199, 187, .14);
}
.keywords span:nth-child(4) {
  color: #a8661f;
  background: rgba(242, 179, 95, .16);
}

.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 11 / 9;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #eef6ff, #fff0f6);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.huli-card {
  position: absolute;
  left: -30px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  width: min(360px, calc(100% + 20px));
  padding: 12px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.huli-card img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}
.huli-card p { margin: 4px 0 0; font-size: 13px; line-height: 1.55; color: var(--muted); }

.section {
  padding: 52px 0;
}
.home-entry-section,
.home-events-section {
  padding: 38px 0;
}
.home-brand-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}
.home-brand-note h2 {
  max-width: 780px;
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 36px);
}
.home-brand-note p {
  margin: 0;
  color: var(--muted);
}
.section.tight { padding-top: 28px; }
.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}
.section-head p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.1fr);
}

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.portal-card, .path-card, .mini-event-card, .info-card, .event-card, .gallery-card, .page-hero, .event-detail-hero, .cta-band, .empty-state, .local-finder, .detail-panel {
  border: 1px solid rgba(180, 192, 220, .42);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 32px rgba(78, 92, 134, .08);
}
.portal-card, .path-card, .mini-event-card, .info-card { padding: 22px; }
.info-card {
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(91, 126, 229, .72), rgba(241, 154, 185, .62), rgba(115, 199, 187, .58));
}
.info-card h3 { color: #263758; }
.info-card .tag {
  color: #a84d76;
  background: rgba(241, 154, 185, .13);
}
.portal-card {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.portal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--mint));
}
.portal-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--pink), #8b75df, var(--gold));
}
.portal-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--mint), var(--blue), #a78bfa);
}
.portal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(78, 92, 134, .13);
}
.portal-card span, .gallery-card span {
  color: #5b70cd;
  font-size: 13px;
  font-weight: 700;
}
.portal-card h3 {
  color: #263758;
}
.portal-card p, .info-card p, .gallery-card p { color: var(--muted); }
.info-card small { display: block; color: #7d879c; line-height: 1.65; }
.info-card .btn { margin-top: 18px; }
.info-card.muted { background: rgba(247, 249, 255, .72); }

.path-card, .mini-event-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.path-card:hover, .mini-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(78, 92, 134, .13);
}
.path-card span, .mini-event-card span {
  color: #526fd8;
  font-size: 13px;
  font-weight: 800;
}
.path-card h3, .mini-event-card h3 { color: #263758; }
.path-card p, .mini-event-card p, .mini-event-card small { color: var(--muted); }
.path-card p, .mini-event-card p { line-height: 1.65; }
.path-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(91, 126, 229, .09);
}
.mini-event-card {
  min-height: 172px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(248, 251, 255, .76)),
    radial-gradient(circle at 100% 0%, rgba(115, 199, 187, .14), transparent 34%);
}
.compact-events .mini-event-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255, 248, 251, .76)),
    radial-gradient(circle at 100% 0%, rgba(241, 154, 185, .14), transparent 34%);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}
.proof-strip span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}
.proof-strip b { color: #263758; }
.proof-strip small { color: var(--muted); line-height: 1.5; }

.page-hero {
  position: relative;
  overflow: hidden;
  margin: 44px 0 24px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.68)),
    radial-gradient(circle at 12% 12%, rgba(91, 126, 229, .24), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(241, 154, 185, .24), transparent 32%),
    radial-gradient(circle at 74% 90%, rgba(115, 199, 187, .2), transparent 32%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--gold), var(--mint));
}
.page-hero h1 {
  color: transparent;
  background: linear-gradient(118deg, #24324b 0%, #5b7ee5 46%, #d978a4 78%, #f2b35f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(32px, 6vw, 58px);
}
.page-hero p { max-width: 850px; color: #495a75; font-size: 17px; }

.event-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(78, 92, 134, .13);
}
.event-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.event-body { padding: 18px; }
.event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.event-top small, .meta span {
  color: var(--muted);
  font-size: 13px;
}
.meta {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.tabs a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  color: #516079;
}
.tabs a.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #8b75df 58%, #d978a4);
  box-shadow: 0 10px 22px rgba(91, 126, 229, .2);
}

.local-finder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 28px);
}
.local-finder h2 { margin-bottom: 8px; }
.local-finder p { color: var(--muted); margin-bottom: 0; }
.finder-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.finder-form label {
  display: grid;
  gap: 6px;
  color: #536077;
  font-size: 13px;
  font-weight: 700;
}
.finder-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.86);
}
.finder-form .btn { width: 100%; }

.event-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: 24px;
  align-items: center;
  margin: 44px 0 24px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
}
.event-detail-hero h1 {
  color: transparent;
  background: linear-gradient(118deg, #24324b 0%, #5b7ee5 46%, #d978a4 78%, #f2b35f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(34px, 5.8vw, 60px);
}
.event-detail-hero p {
  max-width: 720px;
  color: #495a75;
  font-size: 17px;
}
.event-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.detail-panel {
  display: grid;
  gap: 6px;
  padding: 18px;
}
.detail-panel span {
  color: #526fd8;
  font-size: 13px;
  font-weight: 800;
}
.detail-panel b { font-size: 18px; color: #263758; }
.detail-panel small { color: var(--muted); line-height: 1.55; }
.content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.content-list span {
  padding: 12px 14px;
  border-radius: 14px;
  color: #405bc4;
  background: rgba(91, 126, 229, .11);
  border: 1px solid rgba(91, 126, 229, .18);
  font-weight: 800;
}

.image-panel {
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.huli-panel {
  display: grid;
  place-items: center;
  max-height: 520px;
}
.huli-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: top center;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  overflow: hidden;
  padding: 15px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(247, 251, 255, .74));
  border: 1px solid var(--line);
}
.steps li:nth-child(2n)::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(241, 154, 185, .12);
}
.steps li::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #8b75df);
  font-size: 12px;
  font-weight: 800;
}

.guide-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.huli-guide {
  position: sticky;
  top: 92px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255, 246, 250, .7)),
    radial-gradient(circle at 20% 0%, rgba(241, 154, 185, .18), transparent 36%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(78, 92, 134, .08);
}
.huli-guide img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: top;
}
.huli-guide p { color: var(--muted); font-size: 14px; }
.faq-list { display: grid; gap: 14px; }
.inline-head {
  margin: 12px 0 2px;
}
.inline-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}
.faq-list article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(248, 251, 255, .72)),
    radial-gradient(circle at 100% 0%, rgba(91, 126, 229, .1), transparent 36%);
  border: 1px solid var(--line);
}
.faq-list article:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255, 248, 251, .72)),
    radial-gradient(circle at 100% 0%, rgba(241, 154, 185, .13), transparent 36%);
}
.faq-list article:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(248, 255, 253, .72)),
    radial-gradient(circle at 100% 0%, rgba(115, 199, 187, .14), transparent 36%);
}
.faq-list span { color: #526fd8; font-size: 13px; font-weight: 800; }

.guide-welcome {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(17, 24, 32, .1);
  border-left: 6px solid var(--page-accent);
  border-radius: 18px;
  background: #fff;
}
.guide-mascot {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 16px;
  background: var(--page-accent-soft);
  overflow: hidden;
}
.guide-mascot img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 30%;
}
.guide-welcome h2 {
  margin: 14px 0 12px;
  color: #111820;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.05;
}
.guide-welcome p {
  max-width: 760px;
  margin: 0;
  color: #697586;
  font-size: 16px;
  line-height: 1.75;
}
.guide-card-grid,
.guide-term-grid,
.guide-faq-grid {
  display: grid;
  gap: 14px;
}
.guide-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.guide-card,
.guide-term-grid article,
.guide-faq-item {
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 18px;
  background: #fff;
}
.guide-card {
  min-height: 230px;
  padding: 22px;
  border-top: 4px solid var(--page-accent);
}
.guide-card span,
.guide-faq-item span {
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
}
.guide-card h3,
.guide-faq-item h3 {
  margin: 26px 0 10px;
  color: #111820;
  font-size: 22px;
}
.guide-card p,
.guide-term-grid p,
.guide-faq-item p {
  margin: 0;
  color: #697586;
  line-height: 1.7;
}
.guide-term-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guide-term-grid article {
  display: grid;
  grid-template-columns: minmax(110px, .32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
}
.guide-term-grid b {
  color: #111820;
  font-size: 24px;
}
.guide-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.guide-faq-item {
  padding: 20px;
}
.guide-faq-item h3 {
  margin-top: 18px;
  font-size: 20px;
}

.gallery-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(78, 92, 134, .13);
}
.gallery-card img, .placeholder-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.placeholder-art {
  display: grid;
  place-items: center;
  color: #6b79d5;
  background: linear-gradient(135deg, #eef6ff, #fff0f6);
  font-weight: 900;
  letter-spacing: .12em;
}
.gallery-card div { padding: 18px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.proof-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(78, 92, 134, .07);
}
.proof-grid b {
  color: #263758;
  font-size: 24px;
}
.proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.68)),
    radial-gradient(circle at 10% 20%, rgba(91, 126, 229, .18), transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(242, 179, 95, .18), transparent 30%);
}
.empty-state {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(248, 251, 255, .74)),
    radial-gradient(circle at 100% 0%, rgba(241, 154, 185, .16), transparent 34%);
}
.empty-state h3 { margin: 0; }
.empty-state p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}
.grid > .empty-state { grid-column: 1 / -1; }
.center { display: flex; justify-content: center; margin-top: 24px; }

.float-social {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  gap: 8px;
}
.float-social a, .float-social button {
  min-width: 48px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  color: #fff;
  background: rgba(34, 48, 71, .88);
  box-shadow: 0 10px 24px rgba(34, 48, 71, .18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 28px;
  width: min(1180px, calc(100vw - 32px));
  margin: 46px auto 0;
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer p { margin: 8px 0; font-size: 14px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #42506a; }

/* Unified product-style surface for inner pages */
.eyebrow, .tag {
  color: var(--page-accent);
  background: var(--page-accent-soft);
  letter-spacing: .06em;
}
.section-title-accent,
.page-hero h1 {
  color: #111820;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.page-hero {
  margin: 44px 0 28px;
  min-height: clamp(260px, 28vw, 360px);
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(24px, 5vw, 70px);
  border: 0;
  border-radius: 18px;
  background: var(--page-hero-bg);
  box-shadow: none;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -58% 30%;
  height: 118%;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 50% 100%, var(--page-accent-2) 0 24%, transparent 24% 100%),
    rgba(255, 255, 255, .24);
  opacity: .72;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(255,255,255,.22) 19% 37%, transparent 37% 100%),
    linear-gradient(48deg, transparent 0 58%, rgba(255,255,255,.22) 58% 65%, transparent 65% 100%),
    radial-gradient(circle at 18% 74%, transparent 0 18%, var(--page-hero-line) 18.4% 18.8%, transparent 19.2% 100%),
    radial-gradient(circle at 78% 18%, transparent 0 34%, var(--page-hero-line) 34.2% 34.7%, transparent 35% 100%);
  opacity: .72;
  pointer-events: none;
}
.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero .eyebrow {
  color: var(--page-hero-ink);
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.34);
}
.page-hero h1 {
  max-width: 960px;
  margin: 16px 0;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 1;
  font-weight: 900;
  color: var(--page-hero-ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--page-hero-sub);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.72;
}
.portal-card, .path-card, .mini-event-card, .info-card, .event-card, .gallery-card, .cta-band, .empty-state, .local-finder, .detail-panel {
  border-color: rgba(17, 24, 32, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}
.portal-card:hover, .path-card:hover, .mini-event-card:hover, .event-card:hover, .gallery-card:hover {
  box-shadow: 0 18px 44px rgba(17, 24, 32, .09);
}
.portal-card::before {
  height: 0;
}
.portal-card span, .gallery-card span, .faq-list span {
  color: var(--page-accent);
}
.portal-card h3, .info-card h3, .gallery-card h3 {
  color: #111820;
}
.portal-card p, .info-card p, .gallery-card p {
  color: #697586;
}
.info-card::before {
  background: var(--page-accent);
}
.info-card .tag {
  color: var(--page-accent);
  background: var(--page-accent-soft);
}
.tabs a {
  border-color: rgba(17, 24, 32, .12);
  color: #697586;
  background: #fff;
}
.tabs a.active {
  color: #fff;
  background: var(--page-accent);
  box-shadow: none;
}
.local-finder {
  background:
    var(--page-hero-bg),
    radial-gradient(circle at 100% 0%, var(--page-accent-soft), transparent 38%);
}
.page-events .local-finder {
  background: #fff;
}
.page-events .local-finder {
  border-left: 0;
  border-top: 4px solid var(--page-accent);
  background: linear-gradient(135deg, #fff, #fffaf3);
}
.page-events .event-card {
  border-color: rgba(17, 24, 32, .08);
  background: #fff;
}
.page-events .event-card:hover {
  box-shadow: 0 14px 34px rgba(255, 159, 74, .12);
}
.page-events .tabs a.active {
  color: #111820;
  background: #ffe6b8;
}
.finder-form select {
  border-color: rgba(17, 24, 32, .12);
}
.event-card > img {
  background: #fff6f4;
}
.event-top small, .meta span {
  color: #697586;
}
.tag-row span, .keywords span {
  color: #111820;
  border-color: rgba(17, 24, 32, .1);
  background: #fff;
}
.event-detail-hero {
  margin: 44px 0 28px;
  border-color: rgba(17, 24, 32, .1);
  background: var(--page-hero-bg);
  box-shadow: none;
}
.event-detail-hero h1 {
  color: #111820;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-weight: 900;
}
.event-detail-hero p {
  color: #697586;
}
.detail-panel span,
.path-card span,
.mini-event-card span,
.content-list span {
  color: var(--page-accent);
}
.detail-panel b,
.path-card h3,
.mini-event-card h3 {
  color: #111820;
}
.content-list span {
  border-color: color-mix(in srgb, var(--page-accent) 24%, transparent);
  background: var(--page-accent-soft);
}
.huli-guide, .faq-list article {
  border-color: rgba(17, 24, 32, .1);
  background: #fff;
  box-shadow: none;
}
.faq-list article:nth-child(3n + 2),
.faq-list article:nth-child(3n) {
  background: #fff;
}
.proof-grid article, .proof-strip span {
  border-color: rgba(17, 24, 32, .1);
  background: #fff;
  box-shadow: none;
}
.proof-grid b, .proof-strip b {
  color: #111820;
}
.proof-grid span, .proof-strip small {
  color: #697586;
}
.proof-grid article {
  border-top: 4px solid var(--page-accent);
}
.steps li::before {
  background: var(--page-accent);
}
.steps li:nth-child(2n)::after {
  background: var(--page-accent-soft);
}
.guide-layout .huli-guide {
  border-top: 4px solid var(--page-accent);
}
.gallery-card {
  border-top: 4px solid var(--page-accent);
}
.detail-panel {
  border-top: 4px solid var(--page-accent);
}
.cta-band {
  background:
    linear-gradient(135deg, #111820, #1d2733);
  color: #fff;
}
.cta-band p {
  color: rgba(255,255,255,.72);
}
.cta-band .btn.primary {
  color: #111820;
  background: #fff;
}
.placeholder-art {
  color: var(--page-accent);
  background: var(--page-accent-soft);
}
.float-social a, .float-social button {
  background: #111820;
}
body.modal-open {
  overflow: hidden;
}
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: clamp(14px, 3vw, 32px);
}
.site-modal.is-open {
  display: grid;
  place-items: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 32, .52);
  backdrop-filter: blur(10px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(17, 24, 32, .28);
}
.event-modal-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
}
.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.modal-content {
  padding: clamp(24px, 4vw, 38px);
}
.modal-content h2 {
  margin: 12px 0;
  color: #111820;
  font-size: clamp(28px, 4vw, 46px);
}
.modal-content p {
  color: #697586;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  color: #111820;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(17, 24, 32, .12);
  font-size: 24px;
  line-height: 1;
}
.modal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}
.modal-meta span,
.contact-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #111820;
  background: var(--page-accent-soft);
  font-size: 13px;
  font-weight: 800;
}
.modal-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.modal-block b {
  color: #111820;
}
.modal-block p {
  margin: 6px 0 0;
  line-height: 1.7;
}
.contact-modal-panel {
  width: min(760px, 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.contact-grid article {
  display: grid;
  gap: 6px;
}
.contact-grid span {
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
}
.contact-grid b {
  color: #111820;
  overflow-wrap: anywhere;
}

.home-hero-v2 {
  padding: clamp(40px, 7vw, 82px) 0 38px;
}
.hero-center {
  display: grid;
  justify-items: center;
  text-align: center;
}
.hero-center .eyebrow {
  color: #ff5a4e;
  background: rgba(255, 90, 78, .1);
}
.hero-center h1 {
  max-width: 980px;
  margin: 18px 0 12px;
  color: #111820;
  font-size: clamp(46px, 7.4vw, 92px);
  line-height: .98;
  font-weight: 900;
}
.hero-center p {
  max-width: 720px;
  margin: 0;
  color: #697586;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  justify-content: center;
  margin-top: 24px;
}
.hero-actions .btn {
  min-width: 148px;
  border-color: #111820;
}
.hero-showcase {
  position: relative;
  width: 100%;
  display: grid;
  gap: 18px;
  margin: clamp(42px, 6vw, 70px) auto 0;
}
.showcase-stage {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 210, 138, .88) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #ff5a4e, #ff493d 58%, #ff8768);
  box-shadow: 0 28px 55px rgba(255, 90, 78, .22);
}
.showcase-stage b,
.showcase-stage small {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 720px;
  margin-left: clamp(28px, 8vw, 92px);
  color: #fff;
}
.showcase-stage b {
  margin-top: 48px;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}
.showcase-stage small {
  margin-top: 10px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 800;
}
.shape {
  position: absolute;
  display: block;
}
.shape-a {
  right: 18%;
  top: -42px;
  width: 160px;
  height: 230px;
  background: rgba(210, 0, 18, .58);
  transform: skewX(-24deg);
}
.shape-b {
  right: 8%;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
}
.shape-c {
  left: 24%;
  top: -70px;
  width: 120px;
  height: 260px;
  background: rgba(255, 255, 255, .16);
  transform: rotate(-22deg);
}
.showcase-pill {
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 250px;
  padding: 20px 24px;
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(17, 24, 32, .12);
}
.showcase-pill span {
  color: #ff5a4e;
  font-size: 12px;
  font-weight: 900;
}
.showcase-pill b {
  color: #111820;
  font-size: 18px;
}
.showcase-pill small {
  color: #8a94a3;
  font-size: 12px;
}
.showcase-capsules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.showcase-capsules article {
  display: grid;
  gap: 6px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(17, 24, 32, .08);
}
.showcase-capsules span {
  color: #ff5a4e;
  font-size: 12px;
  font-weight: 900;
}
.showcase-capsules b {
  color: #111820;
  font-size: 20px;
}
.showcase-capsules small {
  color: #697586;
  line-height: 1.55;
}
.home-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.home-metrics article {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.home-metrics article:last-child { border-right: 0; }
.home-metrics b {
  color: #111820;
  font-size: 28px;
  line-height: 1;
}
.home-metrics span {
  color: #697586;
  font-size: 13px;
  line-height: 1.5;
}
.home-principles b {
  font-size: 24px;
}
.home-section-v2 {
  padding: 72px 0 0;
}
.home-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.home-section-title h2 {
  margin: 0 0 8px;
  color: #111820;
  font-size: clamp(28px, 3vw, 42px);
}
.home-section-title p {
  max-width: 680px;
  margin: 0;
  color: #8a94a3;
  line-height: 1.7;
}
.home-section-title a {
  color: #111820;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.home-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.home-route-grid a {
  min-height: 206px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-route-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(17, 24, 32, .09);
}
.home-route-grid span {
  color: #ff5a4e;
  font-size: 12px;
  font-weight: 900;
}
.home-route-grid h3 {
  margin-top: 30px;
  color: #111820;
  font-size: 23px;
}
.home-route-grid p {
  margin-bottom: 0;
  color: #697586;
  font-size: 14px;
  line-height: 1.7;
}
.home-event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .75fr);
  gap: 22px;
}
.home-event-feature,
.home-event-stack a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-event-feature:hover,
.home-event-stack a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(17, 24, 32, .09);
}
.home-event-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.home-event-feature div {
  padding: 20px 22px 24px;
}
.home-event-feature span,
.home-event-stack span {
  color: #ff5a4e;
  font-size: 13px;
  font-weight: 900;
}
.home-event-feature h3 {
  margin: 10px 0 8px;
  color: #111820;
  font-size: clamp(26px, 3vw, 40px);
}
.home-event-feature p,
.home-event-stack p {
  margin: 0;
  color: #697586;
  line-height: 1.6;
}
.home-event-stack {
  display: grid;
  gap: 16px;
}
.home-event-stack a {
  display: grid;
  align-content: center;
  min-height: 154px;
  padding: 20px;
}
.home-event-stack h3 {
  margin: 10px 0 8px;
  color: #111820;
  font-size: 21px;
}
.event-filter-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,246,244,.92)),
    radial-gradient(circle at 100% 0%, rgba(255, 90, 78, .16), transparent 36%) !important;
}
.home-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
  padding-bottom: 56px;
}
.home-proof-layout h2 {
  margin-top: 0;
  color: #111820;
  font-size: clamp(30px, 3.8vw, 52px);
}
.home-proof-layout p {
  color: #697586;
}
.proof-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.proof-table div {
  display: grid;
  grid-template-columns: .55fr 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.proof-table div:last-child { border-bottom: 0; }
.proof-table span {
  color: #ff5a4e;
  font-size: 13px;
  font-weight: 900;
}
.proof-table b {
  color: #111820;
  font-size: 17px;
}
.proof-table small {
  color: #697586;
  line-height: 1.5;
}
.summer-theme {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: 72px;
}
.theme-poster {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(17, 24, 32, .1);
}
.theme-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.theme-copy h2 {
  margin: 12px 0;
  color: #111820;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .95;
  font-weight: 900;
}
.theme-copy p {
  max-width: 720px;
  color: #697586;
  font-size: 17px;
}
.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.theme-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #111820;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .brand small { max-width: 210px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .main-nav.open { display: grid; }
  .main-nav a { text-align: center; background: rgba(255,255,255,.68); }
  .hero, .split, .split.reverse, .guide-layout, .site-footer {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 18px;
  }
  .hero-visual { order: -1; }
  .hero-poster { border-radius: 22px; }
  .huli-card { position: static; width: 100%; margin-top: 12px; }
  .grid.two, .grid.three, .grid.four, .detail-grid, .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .local-finder, .event-detail-hero {
    grid-template-columns: 1fr;
  }
  .huli-guide { position: static; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .home-brand-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-hero-v2 {
    padding-top: 34px;
  }
  .hero-showcase {
    min-height: auto;
    display: grid;
    gap: 12px;
    margin-top: 34px;
  }
  .showcase-stage,
  .showcase-pill {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }
  .showcase-stage {
    height: 190px;
  }
  .showcase-pill {
    border-radius: 18px;
  }
  .showcase-capsules,
  .home-metrics,
  .home-route-grid,
  .guide-card-grid,
  .guide-faq-grid,
  .home-event-layout,
  .home-proof-layout,
  .summer-theme {
    grid-template-columns: 1fr 1fr;
  }
  .guide-welcome,
  .guide-term-grid {
    grid-template-columns: 1fr;
  }
  .guide-mascot {
    min-height: 160px;
  }
  .home-event-feature,
  .home-proof-layout > div:first-child {
    grid-column: 1 / -1;
  }
  .home-section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .summer-theme .theme-copy {
    grid-column: 1 / -1;
  }
  .event-modal-panel {
    grid-template-columns: 1fr;
  }
  .modal-media img {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header { padding: 10px 14px; }
  .site-main { width: min(100% - 24px, 1180px); }
  .brand img { width: 38px; height: 38px; }
  .brand b { font-size: 15px; }
  .brand small { display: none; }
  h1 { font-size: 36px; }
  h2 { font-size: 27px; }
  .lead { font-size: 16px; }
  .section { padding: 36px 0; }
  .page-hero { margin-top: 24px; padding: 24px; }
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.06;
  }
  .actions, .event-card .actions { flex-direction: column; }
  .btn { width: 100%; }
  .grid.two, .grid.three, .grid.four, .detail-grid, .proof-grid, .finder-form, .proof-strip {
    grid-template-columns: 1fr;
  }
  .portal-card, .info-card { padding: 18px; }
  .float-social { transform: scale(.92); transform-origin: bottom right; }
  .hero-center h1 {
    font-size: 42px;
  }
  .hero-center p {
    font-size: 15px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .showcase-stage b {
    margin-left: 24px;
    max-width: calc(100% - 48px);
    font-size: 36px;
  }
  .showcase-stage small {
    margin-left: 24px;
  }
  .home-metrics,
  .showcase-capsules,
  .home-route-grid,
  .guide-card-grid,
  .guide-term-grid,
  .guide-faq-grid,
  .home-event-layout,
  .home-proof-layout,
  .summer-theme {
    grid-template-columns: 1fr;
  }
  .guide-welcome {
    padding: 20px;
  }
  .guide-card {
    min-height: auto;
  }
  .guide-term-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-metrics article:last-child {
    border-bottom: 0;
  }
  .home-section-v2 {
    padding-top: 46px;
  }
  .proof-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .modal-meta,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
