/* ── Dog-Headed Steam Train · Retro Railway Theme ── */

:root {
  --coal: #0f0d0b;
  --iron: #1a1612;
  --steel: #2a2420;
  --brass: #c9a050;
  --gold: #d4a853;
  --bronze: #8b6914;
  --cream: #f5e6c8;
  --parchment: #e8d5b0;
  --forest: #2d4a3e;
  --pine: #1e3329;
  --sky: #7eb8d4;
  --sky-deep: #4a7a96;
  --tongue: #e88a9a;
  --steam: rgba(245, 240, 235, 0.55);
  --shadow: rgba(0, 0, 0, 0.55);
  --glow-gold: rgba(201, 160, 80, 0.45);
  --font-display: "Rye", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--coal);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 74, 62, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(139, 105, 20, 0.12), transparent 50%),
    linear-gradient(180deg, #12100e 0%, var(--coal) 40%, #0a0908 100%);
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Atmospheric layers ── */

.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.5s steps(4) infinite;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, -1%); }
}

.steam-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.steam-particle {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--steam) 0%, transparent 70%);
  filter: blur(12px);
  animation: steam-rise linear infinite;
}

@keyframes steam-rise {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 0.4; }
  100% {
    transform: translateY(-110vh) translateX(40px) scale(1.4);
    opacity: 0;
  }
}

.spark-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--glow-gold);
  animation: spark-twinkle ease-in-out infinite;
}

@keyframes spark-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.site-header.scrolled {
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px var(--shadow);
  border-bottom: 1px solid rgba(201, 160, 80, 0.2);
}

.nav-rail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  object-fit: cover;
  box-shadow: 0 0 12px var(--glow-gold);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.25s;
  position: relative;
}

.nav-links a:not(.nav-buy)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-buy):hover {
  color: var(--gold);
}

.nav-links a:not(.nav-buy):hover::after {
  width: 100%;
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  color: var(--coal) !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--glow-gold);
  transition: transform 0.25s, box-shadow 0.25s;
}

.nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--glow-gold);
}

.nav-buy-icon {
  width: 18px;
  height: 18px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  cursor: pointer;
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn--gold {
  background: linear-gradient(160deg, #e8c068 0%, var(--brass) 45%, var(--bronze) 100%);
  color: var(--coal);
  border-color: #f0d080;
  box-shadow:
    0 4px 0 var(--bronze),
    0 8px 24px var(--glow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 0 var(--bronze),
    0 12px 32px var(--glow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--outline {
  background: rgba(26, 22, 18, 0.7);
  color: var(--cream);
  border-color: var(--brass);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(201, 160, 80, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--glow-gold);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.pulse-whistle {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 0 var(--bronze), 0 8px 24px var(--glow-gold); }
  50% { box-shadow: 0 4px 0 var(--bronze), 0 8px 40px rgba(201, 160, 80, 0.7); }
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5rem;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #3a6a82 0%, #5a9ab8 25%, #8ec4dc 45%, var(--forest) 75%, var(--pine) 100%);
}

.mountain {
  position: absolute;
  bottom: 18%;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, transparent, var(--pine));
  clip-path: polygon(0 100%, 0 60%, 15% 40%, 28% 55%, 42% 30%, 55% 50%, 68% 25%, 82% 45%, 100% 20%, 100% 100%);
  opacity: 0.7;
}

.mountain--back {
  bottom: 22%;
  opacity: 0.4;
  filter: blur(2px);
  transform: scale(1.1);
}

.mountain--mid {
  bottom: 16%;
  opacity: 0.55;
}

.mountain--front {
  bottom: 10%;
  height: 35%;
  background: linear-gradient(180deg, transparent, #152820);
  opacity: 0.85;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  filter: blur(8px);
  animation: cloud-drift linear infinite;
}

.cloud--1 {
  width: 120px;
  height: 40px;
  top: 12%;
  left: -10%;
  animation-duration: 45s;
}

.cloud--2 {
  width: 180px;
  height: 55px;
  top: 22%;
  left: -20%;
  animation-duration: 60s;
  animation-delay: -15s;
}

.cloud--3 {
  width: 90px;
  height: 35px;
  top: 8%;
  left: -5%;
  animation-duration: 38s;
  animation-delay: -25s;
}

@keyframes cloud-drift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 200px)); }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.55;
}

.hero-video-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, transparent 20%, rgba(15, 13, 11, 0.75) 100%),
    linear-gradient(180deg, rgba(15, 13, 11, 0.3) 0%, transparent 30%, rgba(15, 13, 11, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-emblem {
  width: 56px;
  margin: 0 auto 1rem;
  opacity: 0.85;
}

.wheel-spin {
  width: 100%;
  animation: wheel-rotate 6s linear infinite;
}

.wheel-spin--slow {
  animation-duration: 10s;
}

@keyframes wheel-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: min(140px, 28vw);
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 3px solid var(--brass);
  box-shadow:
    0 0 0 6px rgba(139, 105, 20, 0.3),
    0 0 40px var(--glow-gold);
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--parchment);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero-heading {
  font-family: var(--font-display);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-heading-line {
  display: block;
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--cream);
  text-shadow:
    3px 3px 0 var(--bronze),
    0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-heading-line--accent {
  color: var(--gold);
  font-size: clamp(2.2rem, 8vw, 4rem);
}

.hero-bio {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.ca-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: rgba(15, 13, 11, 0.75);
  border: 1px solid rgba(201, 160, 80, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.ca-strip.copied-flash {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow-gold);
}

.ca-strip__sol {
  width: 18px;
  height: 18px;
}

.ca-label {
  font-weight: 600;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.ca-strip code {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--parchment);
  word-break: break-all;
  max-width: 280px;
}

.ca-copy-btn {
  padding: 0.25rem 0.65rem;
  background: rgba(201, 160, 80, 0.2);
  border: 1px solid var(--brass);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  transition: background 0.2s;
}

.ca-copy-btn:hover:not(:disabled) {
  background: rgba(201, 160, 80, 0.35);
}

.ca-copy-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ca-copy-btn.copied {
  background: var(--brass);
  color: var(--coal);
}

.track-scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 3;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(15, 13, 11, 0.9));
}

.track-scroll-inner {
  display: flex;
  width: 200%;
  animation: track-move 4s linear infinite;
}

.rails {
  flex: 1;
  height: 48px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      #4a4038 18px,
      #4a4038 22px
    ),
    linear-gradient(180deg, #3a3530 0%, #2a2520 40%, #1a1612 100%);
  border-top: 4px solid #5a5048;
  position: relative;
}

.rails::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #6a6058 0,
    #6a6058 40px,
    #8a8078 40px,
    #8a8078 42px
  );
}

@keyframes track-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */

.section {
  padding: 5rem 1.25rem;
  position: relative;
}

.section-frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background:
    linear-gradient(145deg, rgba(42, 36, 32, 0.85), rgba(26, 22, 18, 0.95));
  border: 2px solid rgba(201, 160, 80, 0.25);
  border-radius: 8px;
  box-shadow:
    0 20px 60px var(--shadow),
    inset 0 1px 0 rgba(245, 230, 200, 0.06);
  position: relative;
}

.section-frame::before,
.section-frame::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--brass);
}

.section-frame::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.section-frame::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.ornament {
  color: var(--brass);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.ornament svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--bronze);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--parchment);
  font-style: italic;
  opacity: 0.85;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ── About ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--iron);
  border: 3px solid var(--brass);
  border-radius: 8px;
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.4),
    0 12px 32px var(--shadow);
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-video-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(15, 13, 11, 0.45) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, transparent 30%, rgba(15, 13, 11, 0.25) 100%);
}

.steam-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
  filter: blur(10px);
  animation: puff-drift 4s ease-in-out infinite;
}

.steam-puff--a {
  width: 50px;
  height: 50px;
  top: -10px;
  right: 20%;
  animation-delay: 0s;
}

.steam-puff--b {
  width: 40px;
  height: 40px;
  top: 5%;
  right: 10%;
  animation-delay: 1.2s;
}

.steam-puff--c {
  width: 35px;
  height: 35px;
  top: -5px;
  right: 35%;
  animation-delay: 2.4s;
}

@keyframes puff-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(15px, -25px) scale(1.3); opacity: 0.2; }
}

.about-lead {
  font-size: 1.08rem;
  color: var(--parchment);
  margin-bottom: 1.75rem;
}

.about-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-stats li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 13, 11, 0.5);
  border-left: 3px solid var(--brass);
  border-radius: 0 4px 4px 0;
  transition: transform 0.25s, background 0.25s;
}

.about-stats li:hover {
  transform: translateX(6px);
  background: rgba(201, 160, 80, 0.08);
}

.stat-icon {
  font-size: 1.5rem;
}

.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.about-stats span:last-child {
  font-size: 0.95rem;
  color: var(--cream);
}

/* ── How to Buy ── */

.howtobuy {
  background:
    linear-gradient(180deg, transparent, rgba(45, 74, 62, 0.08) 50%, transparent);
}

.ticket-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ticket-card {
  position: relative;
  padding: 1.75rem 1.25rem 1.5rem;
  background:
    linear-gradient(160deg, rgba(232, 213, 176, 0.08), rgba(15, 13, 11, 0.6));
  border: 2px dashed rgba(201, 160, 80, 0.4);
  border-radius: 6px;
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
  border-style: solid;
  border-color: var(--brass);
}

.ticket-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bronze);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.ticket-wheel {
  width: 40px;
  margin: 0.5rem auto 1rem;
  opacity: 0.7;
}

.ticket-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.ticket-card p {
  font-size: 0.92rem;
  color: var(--parchment);
  margin-bottom: 1rem;
}

.ticket-card .btn {
  margin-top: 0.25rem;
}

/* ── Chart ── */

.chart-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chart-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 380px;
  background: var(--iron);
  border: 2px solid var(--brass);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(circle at center, rgba(201, 160, 80, 0.08), var(--iron));
  padding: 2rem;
  text-align: center;
}

.chart-placeholder.hidden {
  display: none;
}

.chart-placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.7;
  animation: logo-float 3s ease-in-out infinite;
}

.chart-placeholder p {
  color: var(--parchment);
  font-style: italic;
}

.chart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Join Us ── */

.joinus {
  padding: 4rem 1.25rem 5rem;
}

.joinus-banner-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--brass);
  box-shadow:
    0 24px 64px var(--shadow),
    0 0 60px rgba(201, 160, 80, 0.15);
}

.joinus-banner {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
  animation: banner-kenburns 20s ease-in-out infinite alternate;
}

@keyframes banner-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.joinus-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.85) 0%, rgba(15, 13, 11, 0.4) 45%, rgba(15, 13, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 13, 11, 0.7) 0%, transparent 50%);
}

.joinus-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  max-width: 520px;
}

.joinus-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--bronze), 0 0 30px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.75rem;
}

.joinus-text {
  color: var(--parchment);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.joinus-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-plate {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  background: rgba(15, 13, 11, 0.75);
  border: 2px solid rgba(201, 160, 80, 0.45);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.social-plate img {
  width: 24px;
  height: 24px;
}

.social-plate:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px var(--glow-gold);
}

.social-plate--buy {
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.6), rgba(201, 160, 80, 0.4));
  border-color: var(--gold);
}

/* ── Footer ── */

.site-footer {
  padding: 2.5rem 1.25rem;
  background: var(--iron);
  border-top: 1px solid rgba(201, 160, 80, 0.2);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  margin: 0 auto 1rem;
  object-fit: cover;
}

.site-footer p {
  font-size: 0.9rem;
  color: var(--parchment);
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  opacity: 0.55;
  font-style: italic;
}

.footer-top {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--brass);
  transition: color 0.25s;
}

.footer-top:hover {
  color: var(--gold);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .ticket-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 13, 11, 0.97);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section-frame {
    padding: 1.75rem 1.25rem;
  }

  .joinus-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .joinus-banner {
    min-height: 420px;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .joinus-socials {
    flex-direction: column;
  }

  .social-plate {
    justify-content: center;
  }
}

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

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