/* ============================================================
   Drawn Lucky — design tokens
   Palette pulled from the existing mark (cream / ink / gold),
   deepened so it reads premium rather than flat. Display type is a chunky marquee face
   (poster/ticket energy) paired with a clean grotesque for
   body copy and UI.
   ============================================================ */
:root {
  --cream: #FFFFFF;
  --cream-dim: #141414;
  --ink: #000000;
  --ink-soft: #121212;
  --gold: #CA9A39;
  --gold-light: #E0B968;
  --line: rgba(255, 255, 255, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.16);
  --text-muted: #A39D91;
  --text-muted-dark: #C9C4B6;

  --font-display: "Anton", "Impact", sans-serif;
  --font-body: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Splash / entry ---------- */
#splash-screen {
  position: fixed;
  inset: 0;
  background-color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 1.6s cubic-bezier(0.1, 0.8, 0.2, 1),
              opacity 1.3s cubic-bezier(0.1, 0.8, 0.2, 1),
              visibility 1.6s;
}
#splash-screen img { width: 180px; height: auto; }
.splash-zoom-out {
  transform: scale(5);
  opacity: 0 !important;
  visibility: hidden;
}
#main-content {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- Nav ---------- */
.site-header {
  position: relative;
  width: 100%;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.site-header.has-image { height: 100vh; min-height: 640px; }
.site-header:not(.has-image) { padding-bottom: 20px; }
.site-header:not(.has-image) .nav-wrap { position: static; }

.nav-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  padding: 26px clamp(20px, 4vw, 56px);
  z-index: 20;
}
.nav-capsule {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nav-logo { position: relative; display: inline-flex; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.nav-logo:hover { transform: scale(1.06); }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-link {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.25s ease;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  width: 5px; height: 5px;
  transform: translateX(-50%);
  background-color: var(--gold);
  border-radius: 50%;
}

.nav-wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 11px 24px;
  transition: background-color 0.25s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-wordmark:hover { background-color: var(--gold); transform: scale(1.03); }
.nav-wordmark img { height: 24px; width: auto; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-mobile-panel {
  display: none;
  margin-top: 14px;
  background-color: var(--ink-soft);
  border: 1px solid var(--line-on-dark);
  border-radius: 18px;
  padding: 10px;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-panel .nav-link { color: var(--cream); width: 100%; text-align: center; padding: 10px 0; letter-spacing: 1.2px; }
.nav-mobile-panel .nav-link:hover { color: var(--gold-light); background-color: rgba(255,255,255,0.06); border-radius: 8px; }
.nav-mobile-panel .nav-wordmark { justify-content: center; margin-top: 6px; }

/* ---------- Hero copy over image header ---------- */
.hero-scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(16,14,12,0.92) 0%, rgba(16,14,12,0) 100%);
  z-index: 5;
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 10;
  padding: 0 6% 64px;
}
.hero-copy-inner { max-width: 440px; }
.hero-eyebrow {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 11ch;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  margin-top: 20px;
  color: var(--text-muted-dark);
  font-size: 17px;
  line-height: 1.7;
  max-width: 46ch;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.trust-line {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}
.trust-line .dot { color: var(--gold); margin: 0 9px; }

/* ---------- Enderman eye-glow (small block figure only, both eyes) ---------- */
.eye-glow {
  position: absolute;
  left: 70.5%;
  top: 72.5%;
  width: 90px;
  height: 56px;
  z-index: 6;
  pointer-events: none;
}
.glow-particle {
  position: absolute;
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: #E0AFFF;
  box-shadow: 0 0 7px 2.5px rgba(191, 110, 255, 0.9), 0 0 16px 6px rgba(163, 53, 238, 0.4);
  opacity: 0;
  animation: eye-glow-float 3.2s ease-in-out infinite;
}
/* Left eye cluster */
.glow-particle:nth-child(1) { left: 10px; top: 22px; animation-delay: 0s; }
.glow-particle:nth-child(2) { left: 21px; top: 16px; animation-delay: 1s; }
.glow-particle:nth-child(3) { left: 16px; top: 30px; animation-delay: 1.9s; }
/* Right eye cluster */
.glow-particle:nth-child(4) { left: 55px; top: 20px; animation-delay: 0.5s; }
.glow-particle:nth-child(5) { left: 66px; top: 14px; animation-delay: 1.4s; }
.glow-particle:nth-child(6) { left: 61px; top: 28px; animation-delay: 2.3s; }
@keyframes eye-glow-float {
  0% { opacity: 0; transform: translateY(0) scale(0.6); }
  25% { opacity: 1; transform: translateY(-6px) scale(1); }
  60% { opacity: 0.65; transform: translateY(-14px) scale(0.85); }
  100% { opacity: 0; transform: translateY(-22px) scale(0.4); }
}
@media (max-width: 860px) {
  .eye-glow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .glow-particle { animation: none; opacity: 0.5; }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.btn-shine::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.btn:hover .btn-shine::before { left: 130%; }
.btn-gold {
  background-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(204, 151, 51, 0.28);
}
.btn-gold:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 26px rgba(204, 151, 51, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-on-dark);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.btn-glow {
  background-color: var(--ink);
  color: var(--gold-light);
  border-color: var(--gold);
  animation: btn-pulse 2.4s ease-in-out infinite;
}
.btn-glow:hover { transform: translateY(-2px) scale(1.03); background-color: var(--gold); color: var(--ink); }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204, 151, 51, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(204, 151, 51, 0); }
}

.cta-note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.cta-note a { color: var(--gold-light); font-weight: 700; text-decoration: underline; }

/* ---------- Ticket-strip marquee (the "draw" motif) ---------- */
.ticket-strip {
  position: relative;
  background-color: var(--gold);
  overflow: hidden;
  padding: 9px 0;
  z-index: 6;
}
.ticket-strip::before,
.ticket-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 9px;
  background-color: var(--gold);
  -webkit-mask-image: radial-gradient(circle 5px at 9px 50%, transparent 5px, black 5.5px);
  mask-image: radial-gradient(circle 5px at 9px 50%, transparent 5px, black 5.5px);
  -webkit-mask-size: 18px 9px;
  mask-size: 18px 9px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}
.ticket-strip::before { top: -1px; }
.ticket-strip::after { bottom: -1px; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(11px, 1.2vw, 13.5px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-right: 26px;
}
.marquee-track .suit { color: var(--ink); font-size: 0.75em; opacity: 0.55; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Split service card (Minecraft | Discord) ---------- */
.split-services { padding: 0; }
.split-card {
  display: flex;
  width: 100%;
  min-height: 500px;
}
.split-half {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 56px clamp(32px, 6vw, 90px);
  text-decoration: none;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background-color: #0A0B09;
}
.split-half--dc { background-color: #0A0912; }

/* Jagged brush-stroke shapes (hand-built polygons, not a blur blob) */
.split-wash {
  position: absolute;
  inset: -10%;
  z-index: -1;
  transition: transform 0.6s ease;
}
.split-wash span { position: absolute; display: block; }
.split-half--mc .split-wash span:nth-child(1) {
  width: 130%; height: 70%; left: -15%; top: 6%;
  background: linear-gradient(115deg, rgba(80,200,50,0.55), rgba(40,120,25,0.18) 60%, transparent 82%);
  clip-path: polygon(0% 45%,10% 20%,28% 38%,42% 8%,58% 30%,74% 4%,88% 32%,100% 18%,96% 58%,100% 85%,80% 68%,62% 94%,44% 72%,26% 96%,10% 78%,0% 92%);
  filter: blur(2px);
  transform: rotate(-4deg);
}
.split-half--mc .split-wash span:nth-child(2) {
  width: 88%; height: 46%; left: 6%; top: 32%;
  background: linear-gradient(115deg, rgba(150,255,100,0.4), transparent 72%);
  clip-path: polygon(4% 50%,16% 22%,34% 40%,50% 10%,68% 34%,84% 12%,96% 40%,88% 70%,66% 58%,48% 88%,30% 62%,12% 82%);
  filter: blur(3px);
  transform: rotate(-4deg);
}
.split-half--dc .split-wash span:nth-child(1) {
  width: 130%; height: 70%; right: -15%; top: 6%;
  background: linear-gradient(245deg, rgba(115,90,255,0.55), rgba(70,50,200,0.18) 60%, transparent 82%);
  clip-path: polygon(100% 45%,90% 20%,72% 38%,58% 8%,42% 30%,26% 4%,12% 32%,0% 18%,4% 58%,0% 85%,20% 68%,38% 94%,56% 72%,74% 96%,90% 78%,100% 92%);
  filter: blur(2px);
  transform: rotate(4deg);
}
.split-half--dc .split-wash span:nth-child(2) {
  width: 88%; height: 46%; right: 6%; top: 32%;
  background: linear-gradient(245deg, rgba(165,145,255,0.4), transparent 72%);
  clip-path: polygon(96% 50%,84% 22%,66% 40%,50% 10%,32% 34%,16% 12%,4% 40%,12% 70%,34% 58%,52% 88%,70% 62%,88% 82%);
  filter: blur(3px);
  transform: rotate(4deg);
}
.split-half:hover .split-wash { transform: scale(1.07); }

.split-icon { width: 56px; height: 56px; margin-bottom: 24px; }
.split-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 4.2vw, 50px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transform: skewX(-6deg);
  display: inline-block;
  line-height: 1;
}
.split-half--mc .split-title { color: #7CD957; text-shadow: 0 0 26px rgba(124, 217, 87, 0.5); }
.split-half--dc .split-title { color: #9B8CFF; text-shadow: 0 0 26px rgba(155, 140, 255, 0.5); }
.split-subtitle {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 6px;
}
.split-desc {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  max-width: 36ch;
}
.split-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.split-half--mc .split-btn { color: #7CD957; }
.split-half--dc .split-btn { color: #9B8CFF; }
.split-half--mc:hover .split-btn { background-color: #7CD957; color: #0A0B09; transform: translateY(-2px); }
.split-half--dc:hover .split-btn { background-color: #9B8CFF; color: #0A0912; transform: translateY(-2px); }

.split-divider {
  width: 1px;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent, var(--line-on-dark) 20%, var(--line-on-dark) 80%, transparent);
}
@media (max-width: 780px) {
  .split-card { flex-direction: column; min-height: 0; }
  .split-divider { width: 100%; height: 1px; }
  .split-half { padding: 44px 30px; align-items: center; text-align: center; }
  .split-desc { max-width: 100%; }
}

/* ---------- Gallery section (sits directly on bg1.png) ---------- */
.gallery-section {
  width: 100%;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

/* ---------- Image gallery / carousel ---------- */
.gallery { position: relative; margin-top: 50px; }
.gallery-viewport {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.gallery-slide {
  position: absolute;
  top: 50%; left: 50%;
  width: 58%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(16, 14, 12, 0.25);
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.32, 1), opacity 0.5s ease;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.gallery-arrow:hover { background-color: var(--gold); color: var(--ink); transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 4px; }
.gallery-next { right: 4px; }
.gallery-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 26px;
  font-size: 14.5px;
}
.gallery--large .gallery-viewport { height: 560px; }
.gallery--large .gallery-slide { width: 66%; }
@media (max-width: 900px) {
  .gallery--large .gallery-viewport { height: 400px; }
}
@media (max-width: 700px) {
  .gallery-viewport { height: 260px; }
  .gallery-slide { width: 80%; }
  .gallery-arrow { width: 42px; height: 42px; }
  .gallery--large .gallery-viewport { height: 300px; }
  .gallery--large .gallery-slide { width: 88%; }
}

/* ---------- Portfolio page: alternating image/text rows ---------- */
.portfolio-row {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: 64px 0;
}
.portfolio-row--reverse { flex-direction: row-reverse; }
.portfolio-text { flex: 1; min-width: 0; }
.portfolio-eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.portfolio-title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(26px, 3.2vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.portfolio-text p { font-size: 16.5px; line-height: 1.85; color: var(--text-muted-dark); }

.portfolio-media {
  flex: 1;
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--cream-dim);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-media .media-missing-note {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  color: var(--text-muted);
  font-size: 13px;
}
.portfolio-media.media-missing .media-missing-note { display: flex; }

@media (max-width: 820px) {
  .portfolio-row, .portfolio-row--reverse { flex-direction: column; }
  .portfolio-media { width: 100%; }
}

/* ---------- Hover tooltips ---------- */
/* Elements using .tooltip must already have position: relative/absolute set. */
.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px) scale(0.92);
  background-color: var(--ink);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
  z-index: 60;
}
.tooltip:hover::after,
.tooltip:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
.tooltip-bottom::after {
  bottom: auto;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(-8px) scale(0.92);
}
.tooltip-bottom:hover::after,
.tooltip-bottom:focus-visible::after {
  transform: translateX(-50%) translateY(0) scale(1);
}
@media (max-width: 860px) {
  .tooltip::after { display: none; }
}

/* ---------- Sections ---------- */
.section {
  width: 100%;
  padding: 96px 0;
}
.section-tight { padding: 48px 0 96px; }

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(28px, 3.8vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.02;
}
.h2 .accent { color: var(--gold); }

#about p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--cream);
  margin-top: 18px;
}
#about strong { color: var(--gold); font-weight: 800; }

.divider-rule {
  width: 64px;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
  margin: 22px 0 0;
}

/* ---------- Ticket-stub cards ---------- */
.stub-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 54px;
}
.stub {
  position: relative;
  background-color: var(--ink);
  color: var(--cream);
  border-radius: 14px;
  padding: 30px 28px;
  border: 1.5px dashed var(--gold);
  overflow: visible;
}
.stub::before,
.stub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px; height: 22px;
  background-color: var(--cream);
  border-radius: 50%;
  transform: translateY(-50%);
}
.stub::before { left: -11px; }
.stub::after { right: -11px; }
.stub .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 40px;
  display: block;
  letter-spacing: 0.5px;
}
.stub .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-muted-dark);
  margin-top: 6px;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--ink);
  color: var(--cream);
  padding: 88px 0 40px;
  border-top: 4px solid var(--gold);
}
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-inner .h2 { color: var(--gold); }
.footer-inner .lede { color: var(--text-muted-dark); font-size: 17px; margin-top: 16px; }
.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 44px 0 56px;
}
.footer-link {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease;
}
.footer-link::before {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 2px;
  background-color: var(--gold);
  transition: right 0.3s ease;
}
.footer-link:hover::before { right: 0; }
.footer-link:hover { color: var(--gold-light); }
.social-row { display: flex; justify-content: center; gap: 14px; margin-bottom: 40px; }
.social-icon {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line-on-dark);
  color: var(--cream);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease;
}
.social-icon:hover { border-color: var(--gold); color: var(--ink); background-color: var(--gold); transform: translateY(-3px) scale(1.08) rotate(-6deg); }
.footer-copy { color: #5A544A; font-size: 13px; letter-spacing: 0.4px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Inner-page hero (Minecraft / Discord) ---------- */
.page-hero {
  padding: 150px 0 90px;
  text-align: center;
}
.page-hero .h2 { font-size: clamp(34px, 5.4vw, 60px); }
.page-hero p {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-muted);
}
.feature-list {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background-color: var(--cream-dim);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}
.feature-item .mark { font-family: var(--font-display); color: var(--gold); font-size: 22px; line-height: 1; }
.feature-item p { margin: 0; font-size: 16px; color: var(--cream); line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-wordmark { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-panel.open { display: flex; }
  .hero-copy { padding-bottom: 40px; }
  .gallery-section { min-height: 420px; padding: 46px 0; }
  .site-header.has-image { height: clamp(420px, 76vh, 640px); }
}
@media (max-width: 520px) {
  .stub-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  #splash-screen, #main-content { transition: none; }
}
