/* ═══════════════════════════════════════════
   DogWifStick — Yogi the Stick Dog
   Woodland golden-hour aesthetic
   ═══════════════════════════════════════════ */

:root {
  --cream: #f7eed8;
  --cream-dark: #e8dcc0;
  --gold: #e8b84a;
  --gold-light: #f5d68a;
  --gold-glow: rgba(232, 184, 74, 0.45);
  --bark: #4a3728;
  --bark-dark: #2c1f14;
  --forest: #2d4a35;
  --forest-deep: #1a2e22;
  --meadow: #4a7c3f;
  --meadow-light: #6b9e5a;
  --sky-top: #a8d4f0;
  --sky-mid: #c9e8f5;
  --text: #f7eed8;
  --text-muted: rgba(247, 238, 216, 0.72);
  --wood: rgba(74, 55, 40, 0.85);
  --border: rgba(247, 238, 216, 0.12);
  --border-warm: rgba(232, 184, 74, 0.25);
  --font-display: "Lilita One", cursive;
  --font-script: "Caveat", cursive;
  --font-body: "Nunito", sans-serif;
  --nav-h: 76px;
  --ticker-h: 38px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--ticker-h) + 20px);
}

body {
  font-family: var(--font-body);
  background: var(--forest-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Background layers ─── */
#leafCanvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}

.sky-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--sky-top) 0%,
    var(--sky-mid) 18%,
    #b8d4a8 42%,
    var(--meadow) 62%,
    var(--forest) 82%,
    var(--forest-deep) 100%
  );
}

.mountains {
  position: fixed;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 35vh;
  z-index: 1;
  pointer-events: none;
}

.peak {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.35;
  filter: blur(0.5px);
}

.peak-1 {
  left: 5%;
  border-width: 0 180px 220px 180px;
  border-color: transparent transparent #3d5a4a transparent;
}

.peak-2 {
  left: 35%;
  border-width: 0 240px 280px 240px;
  border-color: transparent transparent #2d4a3a transparent;
}

.peak-3 {
  right: 8%;
  border-width: 0 200px 250px 200px;
  border-color: transparent transparent #4a6b55 transparent;
}

.meadow-floor {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(26, 46, 34, 0.6) 40%, var(--forest-deep));
}

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

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

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px 4px var(--gold-glow);
  animation: fireflyDrift 6s ease-in-out infinite;
}

@keyframes fireflyDrift {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 1; }
  50% { opacity: 0.8; transform: translate(30px, -40px) scale(1.2); }
  80% { opacity: 0.3; transform: translate(-20px, -80px) scale(0.8); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26, 46, 34, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-warm);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

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

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--gold-light);
  background: rgba(232, 184, 74, 0.1);
}

.nav-icon-link {
  padding: 8px !important;
}

.btn-buy-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #d4a030) !important;
  color: var(--bark-dark) !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  margin-left: 4px;
  box-shadow: 0 4px 20px var(--gold-glow);
}

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

/* ─── Ticker ─── */
.ticker {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--ticker-h);
  background: var(--bark);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Icons ─── */
.icon { display: inline-block; vertical-align: middle; }
.icon-nav { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.icon-btn { width: 22px; height: 22px; }
.icon-inline { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.icon-brand { filter: none; }
.icon-brand-white { filter: brightness(0) invert(1); }
.icon-brand-sol { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.icon-tag { width: 16px; height: 16px; margin-right: 6px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bark-dark);
  box-shadow: 0 6px 24px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px var(--gold-glow);
}

.btn-wood {
  background: var(--wood);
  color: var(--cream);
  border: 2px solid var(--bark);
  box-shadow: var(--shadow);
}

.btn-wood:hover {
  background: var(--bark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--border-warm);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(232, 184, 74, 0.1);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--ticker-h) + 40px) 24px 80px;
  z-index: 5;
  overflow: hidden;
}

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

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 46, 34, 0.55) 0%,
    rgba(44, 31, 20, 0.7) 50%,
    rgba(26, 46, 34, 0.92) 100%
  );
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 55, 40, 0.6);
  border: 1px solid var(--border-warm);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.wag { animation: wag 2.5s ease-in-out infinite; }

@keyframes wag {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}

.hero-logo-ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
}

.ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.4;
  animation: ringSpin 20s linear infinite;
}

.ring-2 {
  inset: -24px;
  animation-direction: reverse;
  animation-duration: 28s;
  border-color: var(--meadow-light);
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 0 60px var(--gold-glow), 0 20px 50px rgba(0,0,0,0.4);
}

.float-gentle {
  animation: floatGentle 5s ease-in-out infinite;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-title {
  margin-bottom: 8px;
}

.title-yogi {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  color: var(--cream);
  text-shadow:
    3px 3px 0 var(--bark),
    -1px -1px 0 var(--bark),
    0 0 40px var(--gold-glow);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.title-ribbon {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--gold-light);
  background: var(--bark);
  padding: 4px 28px 8px;
  border-radius: 4px;
  margin-top: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.title-ribbon::before,
.title-ribbon::after {
  content: "🐾";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
}

.title-ribbon::before { left: 6px; }
.title-ribbon::after { right: 6px; }

.hero-symbol {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-bio {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.contract-box {
  background: rgba(44, 31, 20, 0.75);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.contract-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.contract-row code {
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--cream);
  background: rgba(0,0,0,0.25);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--bark-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.hero-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  background: rgba(74, 55, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  min-width: 120px;
  transition: var(--transition);
}

.stat-k {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-v {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
}

.paw-trail {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
}

.paw {
  position: absolute;
  bottom: 0;
  font-size: 1.2rem;
  opacity: 0;
  animation: pawWalk 4.2s ease-in-out infinite;
}

@keyframes pawWalk {
  0% { opacity: 0; transform: translateY(10px) scale(0.8); }
  15% { opacity: 0.7; }
  50% { opacity: 0.4; transform: translateY(-5px) scale(1); }
  100% { opacity: 0; transform: translateY(-20px) scale(0.9); }
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceHint 2s ease-in-out infinite;
}

.scroll-stick {
  width: 3px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 2px;
}

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

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 5;
  padding: 100px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.section-title em {
  font-style: normal;
  color: var(--gold-light);
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── About ─── */
.about {
  background: linear-gradient(180deg, transparent, rgba(26, 46, 34, 0.5) 30%, rgba(26, 46, 34, 0.8));
}

.about-grid {
  display: grid;
  gap: 24px;
}

.wood-panel {
  background: linear-gradient(145deg, rgba(74, 55, 40, 0.9), rgba(44, 31, 20, 0.95));
  border: 2px solid var(--bark);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.wood-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(0,0,0,0.03) 40px,
    rgba(0,0,0,0.03) 41px
  );
  pointer-events: none;
}

.wood-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.wood-panel p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.wood-panel p:last-child { margin-bottom: 0; }

.stick-deco {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  opacity: 0.3;
  animation: stickBob 3s ease-in-out infinite;
}

@keyframes stickBob {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

.about-wide { grid-column: 1 / -1; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  text-align: center;
  padding: 28px 20px;
  background: rgba(45, 74, 53, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(232, 184, 74, 0.15);
}

.pillar-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 12px;
}

.pillar-icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.pillar h4 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Gallery ─── */
.gallery-sec {
  background: rgba(26, 46, 34, 0.6);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--bark);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-frame img,
.gallery-frame video {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  background: var(--bark-dark);
}

.gallery-frame video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  cursor: pointer;
}

.gallery-play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 31, 20, 0.75);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--gold-light);
  pointer-events: none;
  opacity: 0.85;
  transition: var(--transition);
}

.gallery-frame:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232, 184, 74, 0.2);
}

.gallery-frame:hover img,
.gallery-frame:hover video {
  transform: scale(1.03);
}

.gallery-frame:hover .gallery-play {
  opacity: 0;
}

.gallery-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-frame:hover .gallery-shine { opacity: 1; }

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── How to Buy ─── */
.howtobuy {
  background: linear-gradient(180deg, rgba(26, 46, 34, 0.6), rgba(44, 31, 20, 0.4));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  background: rgba(74, 55, 40, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--gold);
  background: rgba(74, 55, 40, 0.65);
}

.step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(232, 184, 74, 0.2);
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.step-icon img { width: 40px; height: 40px; }
.step-icon .icon-stick { width: 44px; height: 44px; }

.step h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.buy-cta { text-align: center; }

/* ─── Chart ─── */
.chart-sec {
  background: rgba(26, 46, 34, 0.7);
}

.chart-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-warm);
  box-shadow: var(--shadow);
  background: #0d1117;
  aspect-ratio: 16 / 9;
}

.chart-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 500px;
}

.chart-cta {
  text-align: center;
  margin-top: 24px;
}

/* ─── Join Us ─── */
.joinus {
  background: linear-gradient(180deg, rgba(26, 46, 34, 0.7), var(--forest-deep));
  padding-bottom: 60px;
}

.join-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  border: 4px solid var(--gold);
  box-shadow: 0 0 60px var(--gold-glow), var(--shadow);
}

.join-banner-img {
  width: 100%;
  display: block;
  animation: bannerGlow 4s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  from { filter: brightness(1) saturate(1); }
  to { filter: brightness(1.05) saturate(1.1); }
}

.join-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(232, 184, 74, 0.15));
  pointer-events: none;
}

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

.social-card {
  display: block;
  padding: 28px 24px;
  background: rgba(74, 55, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(232, 184, 74, 0.2);
}

.social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 32px;
  height: 32px;
}

.social-icon img:not(.icon-brand) {
  filter: brightness(0) invert(1);
}

.social-icon .icon-brand { filter: none; }

.social-card h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 4px;
}

.social-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.social-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 5;
  padding: 48px 0;
  background: var(--bark-dark);
  border-top: 2px solid var(--bark);
  text-align: center;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-links a {
  font-weight: 700;
  color: var(--gold-light);
  transition: var(--transition);
}

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

.footer-disclaimer {
  font-size: 0.75rem !important;
  opacity: 0.6;
}

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gold);
  color: var(--bark-dark);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .gallery-grid { columns: 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars { grid-template-columns: 1fr; }
}

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

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(26, 46, 34, 0.97);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-warm);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu a { width: 100%; text-align: center; padding: 14px; }

  .gallery-grid { columns: 2; }
  .steps { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .chart-wrap iframe { min-height: 360px; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .brand-text span { display: none; }
}
