﻿:root {
  --bg: #121017;
  --bg-deep: #0f0d15;
  --panel: #181420;
  --panel-soft: #1f182a;
  --text: #f1e8ff;
  --muted: #9f8db8;
  --purple: #7440bd;
  --purple-soft: #b69ae4;
  --purple-dark: #3b2062;
  --line: rgba(182, 154, 228, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  animation: page-fade 700ms ease both;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 74px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 58px);
  background: rgba(17, 15, 23, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
  animation: slide-down 650ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: rgba(197, 177, 222, 0.38);
}

.brand-mark {
  font-size: 46px;
  line-height: 1;
  transform: translateY(-2px);
}

.brand-name {
  font-size: clamp(20px, 2.4vw, 28px);
  font-variant: small-caps;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: clamp(15px, 1.35vw, 17px);
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: #f1e8ff;
  padding: 29px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--purple-soft);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 22px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--purple);
  border-radius: 999px;
}

.signup,
.hero-button,
.more-link,
.all-images {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  background: linear-gradient(180deg, #7b43c6, #4a257d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 36px rgba(38, 14, 72, 0.26);
  color: #fff7ff;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease, box-shadow 420ms ease;
  animation: button-breathe 4.6s ease-in-out infinite;
}

.signup:hover,
.hero-button:hover,
.more-link:hover,
.all-images:hover {
  transform: translateY(-3px) scale(1.025);
  filter: brightness(1.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 42px rgba(116, 64, 189, 0.38);
}

.signup {
  justify-self: end;
  min-width: 114px;
  padding: 0 15px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 1fr);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  padding: 62px clamp(28px, 14vw, 150px) 82px;
  background:
    linear-gradient(90deg, rgba(12, 11, 18, 0.94) 0%, rgba(15, 12, 22, 0.76) 29%, rgba(27, 18, 38, 0.1) 60%, rgba(18, 14, 25, 0.22) 100%),
    url("hero-bg.png");
  background-size: cover;
  background-position: center, 52% 38%;
  animation: hero-glow 7.2s ease-in-out infinite alternate, hero-pan 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(197, 174, 233, 0.36) 0 1px, transparent 1.5px);
  background-size: 38px 38px, 64px 64px;
  background-position: 5px 8px, 20px 18px;
  mask-image: linear-gradient(90deg, transparent 0%, black 38%, black 100%);
  opacity: 0.33;
  animation: stars-drift 16s linear infinite, star-pulse 5.8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -30px;
  height: 92px;
  background: var(--bg);
  border-top: 7px solid rgba(171, 143, 211, 0.72);
  border-radius: 50% 50% 0 0 / 66% 66% 0 0;
  transform: rotate(1.5deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 450px;
  animation: rise-in 1100ms 140ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  margin: 0;
  color: #d5c0f1;
  font-size: clamp(56px, 7vw, 74px);
  font-weight: 400;
  line-height: 0.92;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.18), 0 0 26px rgba(178, 137, 230, 0.4);
  font-variant: small-caps;
  animation: title-aura 4.8s ease-in-out infinite;
}

.hero p {
  margin: 4px 0 105px 63px;
  color: rgba(181, 164, 199, 0.34);
  font-size: clamp(20px, 2.4vw, 28px);
}

.hero-button {
  min-width: 268px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 25px;
  animation-delay: 700ms;
}

.hero-button span {
  margin-left: 10px;
  font-size: 38px;
  line-height: 0;
}

.club-facts {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 36px));
  margin: -24px auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(28, 23, 37, 0.96);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  animation: rise-in 1050ms 260ms cubic-bezier(0.16, 1, 0.3, 1) both, panel-glow 5.6s ease-in-out infinite;
}

.club-facts article {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 30px;
}

.club-facts article + article {
  border-left: 1px solid rgba(165, 134, 211, 0.12);
}

.fact-icon {
  color: var(--purple);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  font-size: 42px;
  line-height: 1;
  animation: icon-pulse 3.8s ease-in-out infinite;
}

.fact-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.club-facts h2 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.club-facts p {
  margin: 0;
  color: #fff;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.about-social,
.gallery-section {
  width: min(920px, calc(100% - 38px));
  margin: 0 auto;
}

.about-social {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 34px;
  padding-top: 25px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--line), transparent) 1;
  animation: rise-in 1080ms 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-social::before {
  content: "♞";
  position: absolute;
  left: clamp(38px, 17vw, 166px);
  top: 44px;
  color: rgba(182, 154, 228, 0.08);
  font-size: clamp(145px, 22vw, 260px);
  line-height: 1;
  transform: rotate(-10deg);
  pointer-events: none;
  animation: ghost-horse 8s ease-in-out infinite;
}

.about {
  position: relative;
  z-index: 1;
  padding: 17px 54px 0 0;
}

.eyebrow,
.section-heading h2 {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 16px;
  text-transform: uppercase;
}

.about h2 {
  margin: 0 0 6px;
  color: #bda2e5;
  font-size: clamp(25px, 3vw, 28px);
  line-height: 1.02;
  font-weight: 400;
}

.about p:not(.eyebrow) {
  margin: 0;
  max-width: 460px;
  color: #fff;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.14;
}

.more-link {
  min-width: 290px;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 12px;
  background: rgba(28, 23, 37, 0.92);
  color: #fff;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  animation-delay: 1300ms;
}

.more-link span {
  margin-left: 4px;
  font-size: 30px;
}

.social {
  position: relative;
  z-index: 1;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, transparent, var(--line), transparent) 1;
  padding: 18px 0 0 35px;
  text-align: center;
}

.social h2 {
  display: inline-block;
  margin: 0 0 48px;
  color: #bda2e5;
  font-size: clamp(22px, 2.8vw, 24px);
  font-weight: 400;
  line-height: 1;
  border-bottom: 2px solid rgba(181, 154, 223, 0.78);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 28px;
  align-items: start;
}

.social-links a {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #bda2e5;
  font-size: 20px;
  animation: social-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.social-links a:nth-child(2) {
  animation-delay: 160ms;
}

.social-circle {
  width: min(160px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #17121d;
  line-height: 1;
  overflow: hidden;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease, filter 520ms ease;
}

.social-circle img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.social-links a:hover .social-circle {
  box-shadow: 0 0 46px rgba(176, 0, 255, 0.58);
  filter: brightness(1.08) saturate(1.08);
  transform: translateY(-8px) scale(1.055);
}

.gallery-section {
  margin-top: 28px;
  padding: 24px 0 28px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--line), transparent) 1;
  animation: rise-in 1080ms 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) 174px;
  gap: 12px;
  align-items: stretch;
}

.thumb {
  min-height: 95px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(184, 153, 230, 0.12);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(132, 69, 196, 0.72), rgba(20, 16, 28, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.08) 12px 13px);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease, box-shadow 520ms ease;
  animation: thumb-enter 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.thumb img {
  width: 100%;
  height: 100%;
  min-height: 95px;
  display: block;
  object-fit: cover;
}

.thumb::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.18), transparent 62%);
  opacity: 0;
  transform: translateX(-36%);
  animation: thumb-shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.thumb span,
.thumb img {
  position: relative;
  z-index: 1;
}

.thumb:nth-child(2) {
  animation-delay: 120ms;
}

.thumb:nth-child(3) {
  animation-delay: 240ms;
}

.thumb:nth-child(4) {
  animation-delay: 360ms;
}

.thumb:nth-child(2)::before {
  animation-delay: 800ms;
}

.thumb:nth-child(3)::before {
  animation-delay: 1500ms;
}

.thumb:nth-child(4)::before {
  animation-delay: 2200ms;
}

.thumb:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34), 0 0 22px rgba(116, 64, 189, 0.28);
  filter: brightness(1.16) saturate(1.12);
  transform: translateY(-7px) scale(1.025);
}

.all-images {
  min-height: 95px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #552f88, #2c1847);
  font-size: 18px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.gallery-page {
  min-height: calc(100vh - 74px);
  padding: 54px clamp(18px, 5vw, 58px) 70px;
  background:
    radial-gradient(circle at 20% 0%, rgba(116, 64, 189, 0.22), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(182, 154, 228, 0.13), transparent 30%),
    var(--bg);
}

.about-page {
  min-height: calc(100vh - 74px);
  padding: 54px clamp(18px, 5vw, 58px) 76px;
  background:
    radial-gradient(circle at 18% 8%, rgba(116, 64, 189, 0.22), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(182, 154, 228, 0.12), transparent 32%),
    var(--bg);
}

.about-hero {
  width: min(1080px, 100%);
  margin: 0 auto 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--line), transparent) 1;
  animation: rise-in 1000ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero h1 {
  margin: 0;
  color: #d5c0f1;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  font-variant: small-caps;
  text-shadow: 0 0 34px rgba(178, 137, 230, 0.5);
}

.story-list {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.story-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(180px, 0.42fr);
  align-items: center;
  min-height: 178px;
  overflow: hidden;
  animation: rise-in 1000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.story-block::before {
  content: "";
  position: absolute;
  inset: 0 0 0 32%;
  background: var(--story-bg) center / cover no-repeat;
  opacity: 0.24;
  mask-image: radial-gradient(ellipse at center, black 0%, black 36%, transparent 76%);
  pointer-events: none;
}

.story-block:nth-child(2) {
  animation-delay: 120ms;
}

.story-block:nth-child(3) {
  animation-delay: 240ms;
}

.story-block:nth-child(4) {
  animation-delay: 360ms;
}

.story-block.align-right {
  grid-template-columns: minmax(180px, 0.42fr) minmax(260px, 0.58fr);
}

.story-block.align-right::before {
  inset: 0 32% 0 0;
}

.story-block:nth-child(1) {
  --story-bg: url("about-bg-01.png");
}

.story-block:nth-child(2) {
  --story-bg: url("about-bg-02.png");
}

.story-block:nth-child(3) {
  --story-bg: url("about-bg-03.png");
}

.story-block:nth-child(4) {
  --story-bg: url("about-bg-01.png");
}
.story-block:nth-child(2)::before {
  background-position: 24% center;
}

.story-block:nth-child(3)::before {
  background-position: center 22%;
}

.story-block.align-right .story-copy {
  grid-column: 2;
}

.story-copy {
  position: relative;
  z-index: 1;
  padding: 28px 30px;
  border-left: 3px solid rgba(116, 64, 189, 0.72);
  background: rgba(24, 20, 32, 0.7);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.story-copy::before {
  content: "♞";
  position: absolute;
  right: 20px;
  bottom: -14px;
  color: rgba(182, 154, 228, 0.08);
  font-size: 110px;
  line-height: 1;
  pointer-events: none;
}

.story-copy h2 {
  position: relative;
  margin: 0 0 10px;
  color: #bda2e5;
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 400;
}

.story-copy p {
  position: relative;
  margin: 0;
  color: #fff;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.story-copy p + p {
  margin-top: 14px;
}

.gallery-hero {
  width: min(1180px, 100%);
  margin: 0 auto 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--line), transparent) 1;
  animation: rise-in 1000ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-hero h1 {
  margin: 0;
  color: #d5c0f1;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  font-variant: small-caps;
  text-shadow: 0 0 34px rgba(178, 137, 230, 0.5);
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gallery-card {
  grid-column: span 3;
  min-height: 270px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(184, 153, 230, 0.18);
  border-radius: 6px;
  background: var(--panel);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  animation: thumb-enter 1050ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease, box-shadow 520ms ease;
}

.gallery-card:nth-child(2) {
  animation-delay: 140ms;
}

.gallery-card:nth-child(3) {
  animation-delay: 280ms;
}

.gallery-card.wide:nth-child(3) {
  grid-column: 2 / span 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  display: block;
  object-fit: cover;
}

.gallery-card:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), 0 0 26px rgba(116, 64, 189, 0.28);
  filter: brightness(1.1) saturate(1.08);
  transform: translateY(-8px) scale(1.012);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 42px clamp(18px, 4vw, 54px);
  background: rgba(10, 8, 14, 0.68);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox-frame {
  transform: translateY(0) scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: min(76vh, 760px);
  display: block;
  border: 1px solid rgba(184, 153, 230, 0.22);
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 38px rgba(116, 64, 189, 0.22);
}

.lightbox-title {
  color: #bda2e5;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 50%;
  background: rgba(116, 64, 189, 0.78);
  color: #fff;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  filter: brightness(1.12);
  transform: scale(1.08);
  box-shadow: 0 0 34px rgba(116, 64, 189, 0.48);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  width: 58px;
  height: 58px;
  font-size: 48px;
  line-height: 0.9;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.placeholder-page {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 52px 18px;
  background:
    radial-gradient(circle at 28% 12%, rgba(116, 64, 189, 0.24), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(182, 154, 228, 0.12), transparent 32%),
    var(--bg);
}

.placeholder-panel {
  position: relative;
  width: min(680px, 100%);
  padding: clamp(34px, 6vw, 58px);
  overflow: hidden;
  text-align: center;
  background: rgba(24, 20, 32, 0.78);
  border-left: 3px solid rgba(116, 64, 189, 0.78);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28), 0 0 28px rgba(116, 64, 189, 0.15);
  animation: rise-in 1000ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.placeholder-panel::before {
  content: "♞";
  position: absolute;
  right: 24px;
  bottom: -22px;
  color: rgba(182, 154, 228, 0.08);
  font-size: clamp(140px, 24vw, 230px);
  line-height: 1;
  pointer-events: none;
}

.placeholder-panel h1 {
  position: relative;
  margin: 0 0 12px;
  color: #d5c0f1;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  font-variant: small-caps;
  text-shadow: 0 0 34px rgba(178, 137, 230, 0.48);
}

.placeholder-panel p:not(.eyebrow) {
  position: relative;
  margin: 0;
  color: #fff;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 14px 18px 16px;
  }

  .signup {
    justify-self: center;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .main-nav a {
    padding: 8px 0 11px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 520px;
    align-items: end;
    padding: 34px 22px 106px;
    text-align: left;
    background:
      linear-gradient(180deg, rgba(12, 11, 18, 0.08) 0%, rgba(12, 11, 18, 0.08) 42%, rgba(12, 11, 18, 0.78) 76%, rgba(12, 11, 18, 0.94) 100%),
      url("hero-bg.png");
    background-size: auto 100%;
    background-position: 64% 42%;
    animation: hero-glow 7.2s ease-in-out infinite alternate;
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero p {
    margin: 4px 0 22px 4px;
    font-size: 19px;
  }

  .hero-button {
    min-width: 210px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 20px;
  }

  .club-facts,
  .about-social,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .club-facts article + article {
    border-left: 0;
    border-top: 1px solid rgba(165, 134, 211, 0.12);
  }

  .about {
    padding-right: 0;
  }

  .social {
    border-left: 0;
    border-top: 2px solid transparent;
    padding: 26px 0 0;
  }

  .social h2 {
    margin-bottom: 26px;
  }

  .gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .all-images {
    grid-column: 1 / -1;
  }

  .gallery-page {
    padding: 36px 18px 48px;
  }

  .about-page {
    padding: 36px 18px 52px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .story-block,
  .story-block.align-right {
    grid-template-columns: 1fr;
  }

  .story-block::before,
  .story-block.align-right::before {
    inset: 0;
    opacity: 0.28;
    background-position: center;
    mask-image: radial-gradient(ellipse at center, black 0%, black 42%, transparent 88%);
  }
  .story-block:nth-child(2)::before {
    background-position: 22% center;
  }

  .story-block:nth-child(3)::before {
    background-position: center 18%;
  }

  .story-copy {
    background:
      linear-gradient(90deg, rgba(18, 14, 25, 0.94), rgba(18, 14, 25, 0.82)),
      rgba(24, 20, 32, 0.86);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  }

  .story-block.align-right .story-copy {
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card.wide:nth-child(3) {
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 220px;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "frame frame"
      "prev next";
    gap: 18px;
    padding: 70px 16px 28px;
  }

  .lightbox-frame {
    grid-area: frame;
  }

  .lightbox-prev {
    grid-area: prev;
    justify-self: end;
  }

  .lightbox-next {
    grid-area: next;
    justify-self: start;
  }

  .lightbox-image {
    max-height: 64vh;
  }
}

@media (max-width: 480px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-mark {
    font-size: 38px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-button,
  .more-link {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }

  .hero-button {
    width: auto;
    min-width: 185px;
    min-height: 44px;
    padding: 0 15px;
    font-size: 17px;
  }

  .hero-button span {
    font-size: 28px;
  }

  .club-facts article {
    padding: 18px 22px;
  }

  .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .social-circle {
    width: min(150px, 38vw);
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 180px;
  }
}

@keyframes page-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rider-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.025);
  }
}

@keyframes stars-drift {
  from {
    background-position: 5px 8px, 20px 18px;
  }
  to {
    background-position: 43px 46px, 84px 82px;
  }
}

@keyframes hero-glow {
  from {
    filter: saturate(0.96) contrast(0.98);
  }
  to {
    filter: saturate(1.22) contrast(1.06);
  }
}

@keyframes hero-pan {
  from {
    background-position: center, 50% 36%;
  }
  to {
    background-position: center, 54% 42%;
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.26;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes title-aura {
  0%,
  100% {
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.18), 0 0 26px rgba(178, 137, 230, 0.4);
  }
  50% {
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.2), 0 0 42px rgba(198, 151, 255, 0.76);
  }
}

@keyframes button-breathe {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 36px rgba(38, 14, 72, 0.26);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 46px rgba(116, 64, 189, 0.36);
  }
}

@keyframes panel-glow {
  0%,
  100% {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  }
  50% {
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), 0 0 28px rgba(116, 64, 189, 0.16);
  }
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes ghost-horse {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-12px) rotate(-8deg);
    opacity: 0.72;
  }
}

@keyframes social-rise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes thumb-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes thumb-shimmer {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-36%);
  }
  50% {
    opacity: 1;
    transform: translateX(36%);
  }
}

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



