:root {
  --bg: #120906;
  --bg-soft: #1a0d09;
  --panel: rgba(25, 11, 7, 0.82);
  --panel-strong: rgba(17, 8, 5, 0.9);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f4ece3;
  --muted: #d6c6b7;
  --gold: #efc463;
  --gold-deep: #d79c34;
  --ember: #ff7a00;
  --ember-deep: #ff5100;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 120, 0, 0.13), transparent 24%),
    linear-gradient(180deg, #180906 0%, #100806 48%, #0c0705 100%);
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
iframe { display: block; width: 100%; height: 100%; border: 0; }

.site-bg,
.site-bg * {
  pointer-events: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
}

.site-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 0 1px, transparent 1.3px),
    radial-gradient(circle at 75% 75%, rgba(255,190,120,0.22) 0 1px, transparent 1.3px);
  background-size: 22px 22px, 26px 26px;
}

.site-glow {
  position: absolute;
  top: -10%;
  width: 34vw;
  height: 120vh;
  opacity: 0.36;
  filter: blur(60px);
  background: linear-gradient(180deg, rgba(255, 120, 0, 0.42), rgba(255, 140, 30, 0.14), transparent 82%);
}

.glow-left { left: -8%; }
.glow-right { right: -8%; }

.site-smoke {
  position: absolute;
  inset: 0;
  opacity: 0.84;
}

.site-smoke::before,
.site-smoke::after,
.smoke-layer,
.smoke-layer::before,
.smoke-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.site-smoke::before {
  inset: auto -10% -10% -10%;
  height: 48vh;
  background:
    radial-gradient(circle at 8% 100%, rgba(255,255,255,0.16) 0 10%, transparent 30%),
    radial-gradient(circle at 26% 102%, rgba(255,255,255,0.14) 0 12%, transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.15) 0 12%, transparent 33%),
    radial-gradient(circle at 72% 102%, rgba(255,255,255,0.13) 0 12%, transparent 32%),
    radial-gradient(circle at 92% 100%, rgba(255,255,255,0.14) 0 10%, transparent 30%);
  filter: blur(56px);
  animation: smoke-bank 18s ease-in-out infinite;
}

.site-smoke::after {
  inset: -6% -8% auto -8%;
  height: 28vh;
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,0.06) 0 9%, transparent 24%),
    radial-gradient(circle at 50% 14%, rgba(255,255,255,0.05) 0 11%, transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(255,255,255,0.05) 0 9%, transparent 24%);
  filter: blur(58px);
  animation: smoke-ceiling 26s ease-in-out infinite;
}

.smoke-layer {
  inset: -18%;
  filter: blur(48px);
  transform-origin: center center;
  will-change: transform, opacity;
}

.smoke-1 {
  background:
    radial-gradient(circle at 8% 82%, rgba(255,255,255,0.18) 0 12%, transparent 30%),
    radial-gradient(circle at 22% 62%, rgba(255,255,255,0.15) 0 11%, transparent 28%),
    radial-gradient(circle at 38% 76%, rgba(255,255,255,0.13) 0 13%, transparent 30%),
    radial-gradient(circle at 60% 72%, rgba(255,255,255,0.14) 0 12%, transparent 29%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,0.17) 0 11%, transparent 28%);
  animation: smoke-drift-one 20s ease-in-out infinite;
}

.smoke-1::before {
  background:
    radial-gradient(circle at 14% 96%, rgba(255,255,255,0.14) 0 10%, transparent 28%),
    radial-gradient(circle at 48% 90%, rgba(255,255,255,0.12) 0 12%, transparent 30%),
    radial-gradient(circle at 78% 94%, rgba(255,255,255,0.14) 0 10%, transparent 28%);
  animation: smoke-lift-one 14s ease-in-out infinite;
}

.smoke-1::after {
  background:
    radial-gradient(circle at 30% 88%, rgba(255,255,255,0.11) 0 10%, transparent 28%),
    radial-gradient(circle at 70% 86%, rgba(255,255,255,0.10) 0 11%, transparent 29%);
  animation: smoke-lift-two 17s ease-in-out infinite reverse;
}

.smoke-2 {
  opacity: 0.92;
  background:
    radial-gradient(circle at 10% 44%, rgba(255,255,255,0.09) 0 12%, transparent 28%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.11) 0 10%, transparent 25%),
    radial-gradient(circle at 56% 40%, rgba(255,255,255,0.08) 0 13%, transparent 29%),
    radial-gradient(circle at 78% 32%, rgba(255,255,255,0.09) 0 11%, transparent 26%),
    radial-gradient(circle at 90% 56%, rgba(255,255,255,0.07) 0 13%, transparent 28%);
  animation: smoke-drift-two 24s linear infinite;
}

.smoke-2::before {
  background:
    radial-gradient(circle at 18% 56%, rgba(255,255,255,0.09) 0 12%, transparent 28%),
    radial-gradient(circle at 52% 52%, rgba(255,255,255,0.08) 0 14%, transparent 31%),
    radial-gradient(circle at 86% 50%, rgba(255,255,255,0.09) 0 12%, transparent 29%);
  animation: smoke-wave 19s ease-in-out infinite;
}

.smoke-2::after {
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,0.07) 0 12%, transparent 27%),
    radial-gradient(circle at 45% 15%, rgba(255,255,255,0.06) 0 11%, transparent 25%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.05) 0 12%, transparent 26%);
  animation: smoke-lift-three 25s ease-in-out infinite;
}

.smoke-3 {
  opacity: 0.84;
  background:
    radial-gradient(circle at 10% 106%, rgba(255,255,255,0.13) 0 13%, transparent 29%),
    radial-gradient(circle at 28% 98%, rgba(255,255,255,0.11) 0 12%, transparent 28%),
    radial-gradient(circle at 50% 104%, rgba(255,255,255,0.12) 0 14%, transparent 31%),
    radial-gradient(circle at 72% 100%, rgba(255,255,255,0.11) 0 12%, transparent 28%),
    radial-gradient(circle at 92% 106%, rgba(255,255,255,0.13) 0 13%, transparent 29%);
  animation: smoke-drift-three 28s ease-in-out infinite;
}

.smoke-3::before {
  background:
    radial-gradient(circle at 22% 110%, rgba(255,255,255,0.11) 0 13%, transparent 28%),
    radial-gradient(circle at 62% 110%, rgba(255,255,255,0.10) 0 13%, transparent 29%);
  animation: smoke-lift-two 18s ease-in-out infinite;
}

.smoke-3::after {
  background:
    radial-gradient(circle at 42% 108%, rgba(255,255,255,0.09) 0 11%, transparent 27%),
    radial-gradient(circle at 84% 112%, rgba(255,255,255,0.09) 0 12%, transparent 28%);
  animation: smoke-lift-one 15s ease-in-out infinite reverse;
}

.smoke-4 {
  opacity: 0.5;
  background:
    radial-gradient(circle at 16% 76%, rgba(255, 190, 120, 0.16) 0 9%, transparent 24%),
    radial-gradient(circle at 48% 70%, rgba(255, 160, 80, 0.14) 0 11%, transparent 26%),
    radial-gradient(circle at 80% 74%, rgba(255, 180, 110, 0.15) 0 10%, transparent 25%);
  animation: smoke-ember 22s ease-in-out infinite;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(14, 8, 6, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 190, 90, 0.36);
  box-shadow: 0 0 28px rgba(255, 120, 0, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand small,
.muted {
  color: var(--muted);
}

.brand-badge,
.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 196, 99, 0.22);
  background: rgba(239, 196, 99, 0.08);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-badge {
  border-radius: 999px;
  padding: 9px 14px;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  line-height: 1;
  color: #ffd79a;
  background: linear-gradient(180deg, rgba(69, 35, 15, 0.92), rgba(38, 20, 10, 0.96));
  border-color: rgba(255, 189, 84, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 18px rgba(255, 122, 0, 0.12);
}

.nav-toggle { position: absolute; left: -9999px; }
.mobile-toggle {
  display: none;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #170b07;
  background: linear-gradient(180deg, #ffd18b, #efb04f);
  box-shadow: 0 14px 28px rgba(239, 176, 79, 0.22);
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

main { padding-bottom: 28px; }

.hero {
  position: relative;
  padding: 42px 0 40px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(48, 18, 10, 0.82), rgba(15, 8, 6, 0.94)),
    radial-gradient(circle at 50% 22%, rgba(255, 145, 0, 0.26), transparent 24%),
    linear-gradient(90deg, rgba(255, 110, 0, 0.12), transparent 24%, transparent 76%, rgba(255, 110, 0, 0.12));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 160, 60, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(255, 150, 40, 0.08), transparent 18%, transparent 82%, rgba(255, 150, 40, 0.08));
  opacity: 0.9;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(78vh, 860px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(36px, 7vw, 96px) 0;
}

.hero-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.hero-ring {
  width: min(74vw, 430px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(12, 7, 5, 0.96) 0 58%, rgba(12, 7, 5, 0.96) 58%, transparent 59%),
    conic-gradient(from 0deg, #ffbb4b, #ff7d00, #ff4d00, #ffbb4b);
  box-shadow:
    0 0 0 14px rgba(255, 160, 50, 0.06),
    0 0 38px rgba(255, 120, 0, 0.48),
    0 0 110px rgba(255, 80, 0, 0.24);
}

.hero-logo-wrap {
  width: min(56vw, 270px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(10, 7, 6, 0.94);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.panel-kicker {
  border-radius: 999px;
  padding: 8px 14px;
}

.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.35rem);
  line-height: 0.94;
  margin: 20px 0 18px;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-text {
  font-size: clamp(1.02rem, 1.85vw, 1.16rem);
  line-height: 1.85;
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section {
  padding: 26px 0 30px;
}

.section-grid,
.content-grid {
  display: grid;
  gap: 22px;
}

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

.content-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
}

.panel {
  background: linear-gradient(180deg, rgba(35, 14, 9, 0.82), rgba(16, 9, 6, 0.9));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel,
.panel-large,
.panel-stack,
.legal-panel,
.info-card,
.facebook-card {
  padding: 30px;
}

.panel h2,
.panel h3,
.panel h1 {
  margin: 14px 0 12px;
  line-height: 1.05;
}

.panel h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.panel h3 { font-size: 1.2rem; }
.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.section-highlight .panel {
  background: linear-gradient(180deg, rgba(44, 18, 10, 0.84), rgba(16, 9, 6, 0.92));
}

.panel-stack {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.facebook-card,
.info-card {
  background: linear-gradient(180deg, rgba(35, 14, 9, 0.84), rgba(16, 9, 6, 0.92));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facebook-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.facebook-brand img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(239, 196, 99, 0.28);
}

.facebook-brand strong,
.facebook-brand span {
  display: block;
}

.facebook-brand span { color: var(--muted); }

.location-line {
  font-weight: 700;
  color: var(--text) !important;
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 420px;
  height: 420px;
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.25);
}

.site-footer {
  position: relative;
  margin-top: 40px;
  padding: 0 0 34px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 8, 6, 0.92), rgba(8, 5, 4, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: 28px;
}

.footer-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 0 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.footer-brand-row img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(239, 196, 99, 0.28);
  box-shadow: 0 0 34px rgba(255, 120, 0, 0.18);
}

.footer-brand-copy h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.footer-kicker {
  padding: 8px 12px;
  font-size: 0.68rem;
}

.footer-copy {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 196, 99, 0.09);
  border: 1px solid rgba(239, 196, 99, 0.24);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  white-space: nowrap;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-cta {
  color: #2b1409 !important;
  box-shadow: 0 10px 24px rgba(239, 176, 79, 0.18);
}

.nav-cta:hover {
  color: #1b0c06 !important;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.95fr;
  gap: 22px;
}

.footer-block {
  min-width: 0;
}

.footer-block h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.05rem;
}

.footer-block p,
.footer-block li,
.footer-block a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.75;
}

.footer-block a:hover,
.footer-links-inline a:hover {
  color: var(--text);
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-links-inline a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page {
  padding-top: 38px;
}

.legal-shell {
  max-width: 900px;
}

.legal-panel h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-top: 16px;
}

.legal-panel h2 {
  margin-top: 30px;
  font-size: 1.45rem;
}

.legal-panel ul {
  padding-left: 20px;
}

@keyframes smoke-drift-one {
  0%, 100% { transform: translate3d(-3%, 4%, 0) scale(1.04); opacity: 0.58; }
  50% { transform: translate3d(3%, -3%, 0) scale(1.14); opacity: 0.9; }
}

@keyframes smoke-drift-two {
  0% { transform: translate3d(0, 0, 0) scale(1.08); }
  50% { transform: translate3d(-4%, 3%, 0) scale(1.16); }
  100% { transform: translate3d(0, 0, 0) scale(1.08); }
}

@keyframes smoke-drift-three {
  0%, 100% { transform: translate3d(0, 6%, 0) scale(1.06); }
  50% { transform: translate3d(3%, -4%, 0) scale(1.16); }
}

@keyframes smoke-lift-one {
  0% { transform: translateY(10%) translateX(-3%) scale(1); opacity: 0.45; }
  50% { transform: translateY(-10%) translateX(3%) scale(1.14); opacity: 0.76; }
  100% { transform: translateY(-24%) translateX(-1%) scale(1.28); opacity: 0.1; }
}

@keyframes smoke-lift-two {
  0% { transform: translateY(14%) translateX(0) scale(1.03); opacity: 0.38; }
  50% { transform: translateY(-8%) translateX(-3%) scale(1.14); opacity: 0.68; }
  100% { transform: translateY(-26%) translateX(3%) scale(1.24); opacity: 0.08; }
}

@keyframes smoke-lift-three {
  0% { transform: translateY(12%) translateX(2%) scale(1); opacity: 0.3; }
  50% { transform: translateY(-7%) translateX(-4%) scale(1.12); opacity: 0.56; }
  100% { transform: translateY(-22%) translateX(3%) scale(1.2); opacity: 0.08; }
}

@keyframes smoke-wave {
  0%, 100% { transform: translateX(0) translateY(0) scale(1.03); opacity: 0.36; }
  50% { transform: translateX(4%) translateY(-3%) scale(1.12); opacity: 0.56; }
}

@keyframes smoke-bank {
  0%, 100% { transform: translateY(0) scale(1.03); opacity: 0.62; }
  50% { transform: translateY(-3%) scale(1.1); opacity: 0.82; }
}

@keyframes smoke-ceiling {
  0%, 100% { transform: translateY(0) translateX(0) scale(1.02); opacity: 0.24; }
  50% { transform: translateY(2%) translateX(2%) scale(1.08); opacity: 0.46; }
}

@keyframes smoke-ember {
  0%, 100% { transform: translateY(0) scale(1.02); opacity: 0.42; }
  50% { transform: translateY(-3%) scale(1.08); opacity: 0.6; }
}

@media (max-width: 980px) {
  .three-up,
  .content-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-intro,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(17, 8, 5, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    display: flex;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-cta { margin-top: 4px; }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 18px;
  }

  .hero-inner {
    min-height: auto;
    padding: 28px 0 36px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.3rem);
  }

  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .feature-panel,
  .panel-large,
  .legal-panel,
  .info-card,
  .facebook-card {
    padding: 22px;
  }

  .footer-brand-row {
    flex-wrap: wrap;
  }

  .footer-brand-row img {
    width: 64px;
    height: 64px;
  }

  .footer-badge {
    display: none;
  }

  .map-frame {
    min-height: 300px;
    height: 300px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand-badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-smoke::before,
  .site-smoke::after,
  .smoke-layer,
  .smoke-layer::before,
  .smoke-layer::after,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}


/* GuidonCreative public layout stability patch: fold/tablet performance */
@media (min-width: 721px) and (max-width: 1100px) {
  .site-header {
    position: relative;
    backdrop-filter: none;
  }

  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .mobile-toggle,
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    inset: auto !important;
    width: 100%;
    padding: 10px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a {
    display: inline-flex;
    width: auto;
    justify-content: center;
    padding: 10px 12px;
  }

  .nav-cta {
    margin-top: 0;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 7vw, 4.2rem);
  }

  .hero-ring {
    width: min(52vw, 340px);
  }

  .hero-logo-wrap {
    width: min(40vw, 230px);
  }

  .three-up,
  .content-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 380px;
    height: 380px;
  }
}

@media (pointer: coarse) and (min-width: 721px) and (max-width: 1100px) {
  .site-smoke,
  .site-glow,
  .site-noise {
    opacity: 0.18 !important;
  }

  .site-smoke::before,
  .site-smoke::after,
  .smoke-layer,
  .smoke-layer::before,
  .smoke-layer::after {
    animation: none !important;
    filter: blur(22px) !important;
  }

  .panel,
  .facebook-card,
  .info-card,
  .site-header {
    backdrop-filter: none !important;
  }
}

@media (max-width: 900px) {
  .nav-links {
    z-index: 50;
  }
}


/* GuidonCreative Fold/Tablet Smoke Hard Disable v1.0
   Z Fold unfolded can report tablet-ish widths or smaller phone-ish CSS widths.
   This removes animated smoke layers on coarse-pointer devices entirely. */
@media (pointer: coarse) and (max-width: 1180px) {
  .site-bg,
  .site-bg *,
  .site-smoke,
  .site-smoke::before,
  .site-smoke::after,
  .smoke-layer,
  .smoke-layer::before,
  .smoke-layer::after,
  .site-glow,
  .site-noise {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-bg {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -5 !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 120, 0, 0.16), transparent 34%),
      radial-gradient(circle at 15% 80%, rgba(255,255,255,0.035), transparent 30%),
      linear-gradient(180deg, #180906 0%, #100806 50%, #0c0705 100%) !important;
  }

  .site-smoke,
  .site-glow,
  .site-noise,
  .smoke-layer {
    display: none !important;
  }

  .site-header {
    position: relative !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(14, 8, 6, 0.98) !important;
  }

  .hero,
  .panel,
  .facebook-card,
  .info-card,
  .site-footer {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* Fold/tablet navigation stability: avoid disappearing overlay after page transitions. */
@media (pointer: coarse) and (min-width: 600px) and (max-width: 1180px) {
  .nav-shell {
    min-height: auto !important;
    padding: 14px 0 !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .brand {
    flex: 1 1 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .mobile-toggle,
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    padding: 10px 0 0 !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .nav-links a {
    display: inline-flex !important;
    width: auto !important;
    justify-content: center !important;
    padding: 10px 12px !important;
  }
}


/* GuidonCreative Fold polish v1.1
   Keep smoke animation off, but restore sticky glass header on unfolded Fold/tablet. */
@media (pointer: coarse) and (min-width: 600px) and (max-width: 1180px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 60 !important;
    background: rgba(14, 8, 6, 0.72) !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    transform: translateZ(0);
  }

  .nav-shell {
    min-height: auto !important;
    padding: 12px 0 !important;
  }

  .brand img {
    box-shadow: 0 0 22px rgba(255, 120, 0, 0.22) !important;
  }

  .nav-links a {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.055);
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(239,196,99,0.10);
  }

  .nav-links .nav-cta {
    background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
    color: #170b07 !important;
    border: 0 !important;
  }
}

/* If a specific Fold browser still struggles, it will still keep smoke off;
   only the small header glass effect is restored. */


/* GuidonCreative Fold compact menu v1.2
   Keep sticky blur but restore compact logo-left / menu-right layout. */
@media (pointer: coarse) and (min-width: 600px) and (max-width: 1180px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 80 !important;
    background: rgba(14, 8, 6, 0.74) !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .nav-shell {
    min-height: 64px !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    position: relative !important;
  }

  .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
  }

  .brand img {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
  }

  .brand strong {
    font-size: .95rem !important;
    white-space: nowrap !important;
  }

  .brand small {
    font-size: .76rem !important;
    white-space: nowrap !important;
  }

  .brand-badge {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
    color: #170b07 !important;
    border: 0 !important;
    box-shadow: 0 10px 22px rgba(239, 176, 79, 0.16) !important;
    font-size: .78rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    flex: 0 0 auto !important;
  }

  .mobile-toggle span::after {
    content: " ▾";
    font-size: .8em;
  }

  .nav-toggle {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(320px, calc(100vw - 32px)) !important;
    padding: 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    background: rgba(17, 8, 5, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 55px rgba(0,0,0,.36) !important;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex !important;
  }

  .nav-links a {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(255,255,255,0.055) !important;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(239,196,99,0.12) !important;
  }

  .nav-links .nav-cta {
    background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
    color: #170b07 !important;
    border: 0 !important;
    margin-top: 0 !important;
  }
}

@media (pointer: coarse) and (min-width: 600px) and (max-width: 760px) {
  .brand small {
    display: none !important;
  }
}


/* GuidonCreative header text/menu visibility fix v1.3
   Fixes legal/page header collapse where only the logo and blank pill appeared. */
.site-header .brand-copy,
.site-header .brand-title,
.site-header .brand-subtitle {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: none !important;
  overflow: visible !important;
  text-indent: 0 !important;
  clip-path: none !important;
  color: var(--text) !important;
}

.site-header .brand-copy {
  min-width: 0 !important;
  line-height: 1.18 !important;
}

.site-header .brand-title {
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
}

.site-header .brand-subtitle {
  color: var(--muted) !important;
  font-size: .78rem !important;
  white-space: nowrap !important;
}

.site-header .mobile-toggle {
  color: #170b07 !important;
  font-weight: 900 !important;
  min-width: 72px !important;
  text-align: center !important;
  text-indent: 0 !important;
  overflow: visible !important;
}

.site-header .mobile-toggle::after {
  content: " ▾";
  font-size: .8em;
}

@media (pointer: coarse) and (min-width: 600px) and (max-width: 1180px) {
  .site-header .brand {
    display: inline-flex !important;
    flex: 1 1 auto !important;
    max-width: calc(100% - 92px) !important;
  }

  .site-header .brand-copy {
    display: block !important;
    min-width: 0 !important;
  }

  .site-header .brand-title,
  .site-header .brand-subtitle {
    display: block !important;
  }

  .site-header .mobile-toggle {
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }

  .mobile-toggle span::after {
    content: "" !important;
  }
}

@media (pointer: coarse) and (max-width: 380px) {
  .site-header .brand-subtitle {
    display: none !important;
  }

  .site-header .brand-title {
    font-size: .9rem !important;
  }

  .site-header .mobile-toggle {
    min-width: 64px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* GuidonCreative Header Responsive Repair v1.4
   Fixes tablet/Fold stacked header and oversized invisible mobile menu text. */
@media (min-width: 600px) and (max-width: 1180px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    background: rgba(14, 8, 6, 0.78) !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .nav-shell {
    min-height: 64px !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    position: relative !important;
  }

  .site-header .brand {
    flex: 1 1 auto !important;
    max-width: calc(100% - 96px) !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
  }

  .site-header .brand img {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
  }

  .site-header .brand-copy {
    display: block !important;
    min-width: 0 !important;
    line-height: 1.12 !important;
  }

  .site-header .brand-title {
    display: block !important;
    font-size: .96rem !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--text) !important;
  }

  .site-header .brand-subtitle {
    display: block !important;
    font-size: .74rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--muted) !important;
  }

  .site-header .brand-badge {
    display: none !important;
  }

  .site-header .mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 76px !important;
    height: 40px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
    color: #170b07 !important;
    border: 0 !important;
    box-shadow: 0 10px 22px rgba(239, 176, 79, 0.16) !important;
    font-size: .76rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
    text-indent: 0 !important;
    overflow: visible !important;
    cursor: pointer !important;
  }

  .site-header .mobile-toggle::after {
    content: " ▾" !important;
    font-size: .8em !important;
  }

  .nav-toggle {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .site-header .nav-links {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(320px, calc(100vw - 32px)) !important;
    padding: 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    background: rgba(17, 8, 5, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 55px rgba(0,0,0,.36) !important;
  }

  .site-header .nav-toggle:checked ~ .nav-links {
    display: flex !important;
  }

  .site-header .nav-links a {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(255,255,255,0.055) !important;
  }

  .site-header .nav-links .nav-cta {
    background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
    color: #170b07 !important;
    border: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 599px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    background: rgba(14, 8, 6, 0.86) !important;
    backdrop-filter: blur(8px) saturate(115%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(115%) !important;
  }

  .nav-shell {
    min-height: 60px !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    position: relative !important;
  }

  .site-header .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 86px) !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 8px !important;
  }

  .site-header .brand img {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .site-header .brand-copy {
    display: block !important;
    min-width: 0 !important;
    line-height: 1.1 !important;
  }

  .site-header .brand-title {
    display: block !important;
    font-size: .88rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--text) !important;
  }

  .site-header .brand-subtitle {
    display: block !important;
    font-size: .66rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--muted) !important;
  }

  .site-header .brand-badge {
    display: none !important;
  }

  .site-header .mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    min-width: 68px !important;
    width: auto !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
    color: #170b07 !important;
    border: 0 !important;
    font-size: .7rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-indent: 0 !important;
    overflow: visible !important;
  }

  .site-header .mobile-toggle::after {
    content: " ▾" !important;
    font-size: .8em !important;
  }

  .site-header .nav-links {
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(300px, calc(100vw - 32px)) !important;
  }
}

@media (max-width: 380px) {
  .site-header .brand-subtitle {
    display: none !important;
  }

  .site-header .brand-title {
    font-size: .84rem !important;
  }

  .site-header .mobile-toggle {
    min-width: 62px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: .66rem !important;
  }
}


/* Panovents Org Event Widget 0.1.4 Standalone Adapter */
.panovents-org-section {
  padding: 28px 0 30px;
}

.panovents-org-heading {
  max-width: 840px;
  margin: 0 auto 22px;
  text-align: center;
}

.panovents-org-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.02;
  margin: 14px 0 12px;
}

.panovents-org-heading p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto;
}

.panovents-events {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.panovents-events--context-shop {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panovents-event-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(35, 14, 9, 0.86), rgba(15, 8, 6, 0.94));
  border: 1px solid var(--stroke);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.panovents-event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 128, 0, 0.13), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(239, 196, 99, 0.10), transparent 28%);
  pointer-events: none;
}

.panovents-event-card__image {
  position: relative;
  z-index: 1;
  min-height: 145px;
  background: rgba(0,0,0,.22);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--gold);
  font-size: 3rem;
  font-weight: 900;
}

.panovents-event-card__image img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
}

.panovents-event-card__body {
  position: relative;
  z-index: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.panovents-event-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.panovents-event-card__badges span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(239, 196, 99, 0.10);
  border: 1px solid rgba(239, 196, 99, 0.18);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.panovents-event-card__status {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
}

.panovents-event-card h3 {
  margin: 0 0 12px;
  line-height: 1.08;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.panovents-event-card h3 a {
  text-decoration: none;
}

.panovents-event-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  margin-bottom: 12px;
}

.panovents-event-card__meta strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.panovents-event-card__description {
  color: var(--muted);
  line-height: 1.58;
  margin: 0 0 18px;
}

.panovents-event-card__button {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd18b, #efb04f);
  color: #170b07;
  transition: transform .18s ease, filter .18s ease;
}

.panovents-event-card__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.panovents-event-card__button.is-disabled {
  opacity: .65;
  pointer-events: none;
}

.panovents-empty-panel {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 30px;
}

.panovents-api-note {
  font-size: .82rem;
  opacity: .75;
}

.panovents-shop-link {
  text-align: center;
  margin: 22px 0 0;
}

.panovents-org-toolbar {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}

.panovents-org-search {
  width: min(100%, 420px);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
}

.panovents-org-count {
  color: var(--muted);
  font-weight: 800;
}

.shop-hero .hero-inner {
  min-height: min(46vh, 520px);
}

@media (max-width: 980px) {
  .panovents-events {
    grid-template-columns: 1fr;
  }

  .panovents-org-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .panovents-org-search {
    width: 100%;
  }
}


/* GuidonCore Panovents Module Parity v1.4.0 */
.guidon-panovents-section {
  padding: 28px 0 34px;
}

.panovents-org-heading {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.panovents-org-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.02;
  margin: 14px 0 12px;
}

.panovents-org-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.panovents-events-wrap {
  margin: 0;
}

.panovents-events-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(17, 8, 5, .75);
}

.panovents-events-search,
.panovents-events-toolbar select {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 14px;
}

.panovents-quick-filter,
.panovents-filter-reset,
.panovents-view-toggle__button {
  border-radius: 999px;
  border: 1px solid rgba(239,196,99,.22);
  background: rgba(239,196,99,.08);
  color: var(--gold);
  padding: 9px 12px;
  font-weight: 800;
}

.panovents-quick-filter.is-active,
.panovents-view-toggle__button.is-active {
  background: linear-gradient(180deg, #ffd18b, #efb04f);
  color: #170b07;
}

.panovents-events {
  gap: 22px !important;
}

.panovents-event-card {
  background: linear-gradient(180deg, rgba(35, 14, 9, 0.90), rgba(15, 8, 6, 0.96)) !important;
  border: 1px solid var(--stroke) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow) !important;
  color: var(--text);
  overflow: hidden;
}

.panovents-event-card__body {
  padding: 20px !important;
}

.panovents-event-card__title,
.panovents-event-card__title a {
  color: var(--text) !important;
  font-size: clamp(1.05rem, 1.5vw, 1.42rem) !important;
  line-height: 1.12 !important;
}

.panovents-event-card__description,
.panovents-event-card__description * {
  color: var(--muted) !important;
  font-size: clamp(.9rem, 1vw, .98rem) !important;
  line-height: 1.55 !important;
  font-family: inherit !important;
}

.panovents-event-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.panovents-event-card__date,
.panovents-event-card__location,
.panovents-event-card__relative-date,
.panovents-event-card__price,
.panovents-event-card__meta {
  color: var(--gold) !important;
}

.panovents-event-card__button {
  background: linear-gradient(180deg, #ffd18b, #efb04f) !important;
  color: #170b07 !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  padding: 12px 16px !important;
}

.panovents-badge {
  font-size: .72rem !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
}

.panovents-ribbon {
  color: #170b07 !important;
  font-weight: 900 !important;
}

.panovents-shop-link {
  margin: 22px 0 0;
  text-align: center;
}

.shop-hero .hero-inner {
  min-height: min(46vh, 520px);
}

@media (max-width: 980px) {
  .panovents-events-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}


/* GuidonCore Panovents live preview v1.4.4 */
.panovents-preview-card {
  max-width: 1180px;
}

.panovents-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.panovents-live-preview {
  --pv-card-bg: #1a0d09;
  --pv-title-color: #f4ece3;
  --pv-desc-color: #d6c6b7;
  --pv-meta-color: #efc463;
  --pv-button-bg: #efb04f;
  --pv-button-text: #170b07;
  --pv-ribbon-bg: #f59e0b;
  --pv-ribbon-text: #170b07;
  --pv-title-size: 18px;
  --pv-price-size: 16px;
  --pv-desc-size: 15px;
  --pv-button-size: 14px;
  --pv-image-height: 190px;
  --pv-text-align: left;
  --pv-badge-align: flex-start;
  --pv-chip-align: flex-start;
  --pv-button-width: 100%;
  --pv-preview-cols: 3;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(239,176,79,.12), transparent 32%),
    rgba(8, 6, 5, .72);
}

.panovents-preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: var(--pv-chip-align);
  margin-bottom: 16px;
}

.preview-chip {
  border: 1px solid rgba(239,196,99,.24);
  background: rgba(239,196,99,.08);
  color: #ffd879;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
  cursor: default;
}

.preview-chip.is-active {
  background: var(--pv-button-bg);
  color: var(--pv-button-text);
}

.panovents-preview-grid {
  display: grid;
  grid-template-columns: repeat(var(--pv-preview-cols), minmax(160px, 1fr));
  gap: 16px;
}

.preview-event-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.11);
  background: var(--pv-card-bg);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.preview-card-alt {
  display: block;
}

.preview-image {
  height: var(--pv-image-height);
  min-height: 80px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(239,176,79,.18), rgba(255,255,255,.04)),
    #111;
  color: rgba(255,255,255,.62);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-ribbon {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: -38px;
  transform: rotate(45deg);
  min-width: 150px;
  text-align: center;
  padding: 7px 16px;
  background: var(--pv-ribbon-bg);
  color: var(--pv-ribbon-text);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.preview-card-body {
  padding: 18px;
  text-align: var(--pv-text-align);
}

.preview-badges {
  display: flex;
  justify-content: var(--pv-badge-align);
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.preview-badges span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(239,196,99,.12);
  border: 1px solid rgba(239,196,99,.24);
  color: #ffd879;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.preview-status {
  color: var(--pv-meta-color);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.preview-event-card h3 {
  color: var(--pv-title-color);
  font-size: var(--pv-title-size);
  line-height: 1.14;
  margin: 0 0 10px;
}

.preview-meta {
  color: var(--pv-meta-color);
  font-size: var(--pv-price-size);
  margin: 0 0 12px;
}

.preview-meta span {
  color: inherit;
  opacity: .82;
}

.preview-description {
  color: var(--pv-desc-color);
  font-size: var(--pv-desc-size);
  line-height: 1.55;
  margin: 0 0 16px;
}

.preview-buy {
  width: var(--pv-button-width);
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--pv-button-bg);
  color: var(--pv-button-text);
  font-size: var(--pv-button-size);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .panovents-preview-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 700px) {
  .panovents-preview-header {
    flex-direction: column;
  }

  .panovents-preview-grid {
    grid-template-columns: 1fr;
  }
}


/* Footer bottom note rich HTML v1.5.0 */
.footer-bottom-note {
  display: block;
}

.footer-bottom-note p {
  margin: 0;
}

.footer-bottom-note a {
  color: rgba(244, 236, 227, .86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom-note a:hover {
  color: var(--gold);
}


/* Footer layout controls v1.5.2 */
.footer-actions-right .footer-actions {
  justify-content: flex-end;
  text-align: right;
}

.footer-actions-center .footer-actions {
  justify-content: center;
  text-align: center;
}

.footer-actions-left .footer-actions {
  justify-content: flex-start;
  text-align: left;
}

.footer-pages-center .footer-nav {
  align-items: center;
  text-align: center;
}

.footer-pages-right .footer-nav {
  align-items: flex-end;
  text-align: right;
}

.footer-note-left .footer-credit {
  justify-content: flex-start;
  text-align: left;
}

.footer-note-center .footer-credit {
  justify-content: center;
  text-align: center;
}

.footer-note-right .footer-credit {
  justify-content: flex-end;
  text-align: right;
}

.footer-bottom-stacked-left .footer-bottom {
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-bottom-stacked-left .footer-credit {
  justify-content: flex-start;
  text-align: left;
}

.footer-bottom-stacked-center .footer-bottom {
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: center;
}

.footer-bottom-stacked-center .footer-credit {
  justify-content: center;
  text-align: center;
}

.footer-bottom-stacked-center .footer-bottom small {
  text-align: center;
}

@media (max-width: 720px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-credit {
    justify-content: flex-start;
    text-align: left;
  }
}


/* Footer layout hard alignment fix v1.5.5 */
.site-footer.footer-pages-left .footer-site-pages-block,
.site-footer.footer-pages-left .footer-site-pages-block h4,
.site-footer.footer-pages-left .footer-site-pages-block .footer-nav {
  text-align: left !important;
  align-items: flex-start !important;
}

.site-footer.footer-pages-center .footer-site-pages-block,
.site-footer.footer-pages-center .footer-site-pages-block h4,
.site-footer.footer-pages-center .footer-site-pages-block .footer-nav {
  text-align: center !important;
  align-items: center !important;
}

.site-footer.footer-pages-right .footer-site-pages-block,
.site-footer.footer-pages-right .footer-site-pages-block h4,
.site-footer.footer-pages-right .footer-site-pages-block .footer-nav {
  text-align: right !important;
  align-items: flex-end !important;
}

.site-footer.footer-pages-center .footer-site-pages-block .footer-nav a,
.site-footer.footer-pages-right .footer-site-pages-block .footer-nav a,
.site-footer.footer-pages-left .footer-site-pages-block .footer-nav a {
  width: 100%;
}

.site-footer.footer-actions-left .footer-actions-managed {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.site-footer.footer-actions-center .footer-actions-managed {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.site-footer.footer-actions-right .footer-actions-managed {
  justify-content: flex-end !important;
  align-items: flex-end !important;
  text-align: right !important;
}

.site-footer.footer-bottom-stacked-left .footer-bottom-managed {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: start !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: left !important;
}

.site-footer.footer-bottom-stacked-left .footer-bottom-managed small,
.site-footer.footer-bottom-stacked-left .footer-bottom-managed .footer-credit {
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100% !important;
}

.site-footer.footer-bottom-stacked-center .footer-bottom-managed {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: center !important;
}

.site-footer.footer-bottom-stacked-center .footer-bottom-managed small,
.site-footer.footer-bottom-stacked-center .footer-bottom-managed .footer-credit {
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

.site-footer.footer-bottom-split .footer-bottom-managed {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
}

.site-footer.footer-note-left .footer-credit,
.site-footer.footer-note-left .footer-credit * {
  justify-content: flex-start !important;
  text-align: left !important;
}

.site-footer.footer-note-center .footer-credit,
.site-footer.footer-note-center .footer-credit * {
  justify-content: center !important;
  text-align: center !important;
}

.site-footer.footer-note-right .footer-credit,
.site-footer.footer-note-right .footer-credit * {
  justify-content: flex-end !important;
  text-align: right !important;
}

@media (max-width: 720px) {
  .site-footer.footer-bottom-split .footer-bottom-managed {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}


/* Footer inline layout support v1.5.6 */
.footer-site-pages-block .footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-site-pages-block .footer-nav a {
  display: block;
}
