:root {
  --night: #0d0c09;
  --deep: #141210;
  --bark: #1e1a14;
  --parchment: #f2ead8;
  --vellum: #e8ddc4;
  --sepia: #c4a96e;
  --gold: #d4a853;
  --ember: #a0522d;
  --ash: #6b6257;
  --fog: rgba(242, 234, 216, 0.55);
  --ff-display: 'IM Fell English', Georgia, serif;
  --ff-body: 'Cormorant Garamond', Georgia, serif;
  --ff-mono: 'Inconsolata', monospace;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--night);
  color: var(--parchment);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998
}

*,
*::before,
*::after {
  cursor: none !important;
}

::selection {
  background: rgba(212, 168, 83, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--night);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 83, 0.4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 83, 0.7);
}

#cursor {
  position: fixed;
  width: 42px;
  height: 42px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease
}

#cursor svg {
  width: 100%;
  height: 100%;
  transition: transform .2s
}

#cursor.click svg {
  transform: scale(.85)
}

#cursor.big {
  transform: translate(-50%, -50%) scale(1.3)
}

#cursor.big svg {
  transform: rotate(-10deg);
  filter: drop-shadow(0 0 5px rgba(212, 168, 83, 0.3))
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 12, 9, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, .12)
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--parchment);
  text-decoration: none;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .7rem
}

.nav-logo-seal {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--night);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--ff-mono);
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.4);
  animation: gentlePulse 4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.nav-links a {
  font-family: var(--ff-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, .45);
  text-decoration: none;
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem
}

.nav-social {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 168, 83, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 234, 216, .45);
  text-decoration: none;
  font-size: .8rem;
  transition: border-color .2s, color .2s, background .2s
}

.nav-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, .08)
}

.nav-cta {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  background: var(--gold);
  color: var(--night);
  text-decoration: none;
  font-weight: 500;
  transition: background .2s
}

.nav-cta:hover {
  background: var(--sepia)
}

/* Hamburger Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--parchment);
  transition: all .3s
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.nav-mobile {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13, 12, 9, 0.98);
  backdrop-filter: blur(12px);
  padding: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  border-bottom: 1px solid rgba(212, 168, 83, .12)
}

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

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.nav-mobile a {
  font-family: var(--ff-mono);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, .7);
  text-decoration: none;
  transition: color .2s
}

.nav-mobile a:hover {
  color: var(--gold)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 5rem;
  text-align: center
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent, transparent 31px, rgba(212, 168, 83, .045) 31px, rgba(212, 168, 83, .045) 32px);
  pointer-events: none
}

.hero-lines::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(3rem, 8vw, 8rem);
  width: 1px;
  background: rgba(160, 82, 45, .15);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.2)
}

.hero-lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(3rem, 8vw, 8rem);
  width: 1px;
  background: rgba(160, 82, 45, .08);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.2)
}

.hero-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(8rem, 22vw, 20rem);
  color: rgba(212, 168, 83, .03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1
}

/* Typewriter animation container */
.hero-typewriter {
  position: absolute;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(212, 168, 83, .28);
  pointer-events: none;
  user-select: none;
  text-align: left;
  line-height: 2;
  max-width: 22ch
}

.hero-typewriter.left {
  top: 12%;
  left: clamp(4rem, 10vw, 10rem)
}

.hero-typewriter.right {
  bottom: 18%;
  right: clamp(4rem, 10vw, 10rem);
  text-align: right
}

.hero-typewriter .line {
  opacity: 0;
  display: block;
  white-space: nowrap;
  overflow: hidden
}

.hero-typewriter .line.typing {
  animation: typewrite .8s steps(20) forwards, fadeInLine .2s ease forwards
}

.hero-typewriter .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--sepia);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom
}

@keyframes typewrite {
  from {
    max-width: 0
  }

  to {
    max-width: 100%
  }
}

@keyframes fadeInLine {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.hero-inner {
  position: relative;
  max-width: 860px
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeDown .8s ease both
}

.eyebrow-owl {
  width: 46px;
  height: 46px;
  animation: owlBob 5.5s ease-in-out infinite, gentlePulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.3));
}

.hero-eyebrow span {
  width: 3rem;
  height: 1px;
  background: var(--sepia);
  opacity: .5
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.0rem, 9vw, 8.5rem);
  line-height: .95;
  font-weight: 400;
  animation: fadeUp .9s .1s ease both
}

.hero-title em {
  font-style: italic;
  color: var(--gold)
}

.title-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.title-highlight {
  background-color: rgba(212, 168, 83, 0.4);
  color: #fff;
  border-radius: 4px;
  padding: 0 4px;
}

.hero-divider {
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sepia), transparent);
  margin: 1.8rem auto;
  animation: scaleX .8s .3s ease both;
  transform-origin: center
}

.hero-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(242, 234, 216, .65);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  animation: fadeUp .9s .35s ease both
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .5s ease both
}

.btn {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .2s
}

.btn-gold {
  background: var(--gold);
  color: var(--night)
}

.btn-gold:hover {
  background: var(--sepia);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, .18)
}

.btn-ghost {
  border: 1px solid rgba(242, 234, 216, .18);
  color: rgba(242, 234, 216, .7)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeUp 1s .9s ease both
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--sepia), transparent);
  animation: pulse 2.2s ease-in-out infinite
}

.hero-scroll-label {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, .25)
}

/* TICKER */
.ticker {
  border-top: 1px solid rgba(212, 168, 83, .12);
  border-bottom: 1px solid rgba(212, 168, 83, .12);
  overflow: hidden;
  padding: .8rem 0;
  background: var(--deep)
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite
}

.ticker-item {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 234, 216, .3);
  padding: 0 2rem;
  white-space: nowrap
}

.ticker-item strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 400
}

/* SECTIONS */
.s {
  padding: 7rem 3rem
}

.s-inner {
  max-width: 1200px;
  margin: 0 auto
}

.s-label {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem
}

.s-label::before {
  content: '§';
  font-size: .95rem;
  font-family: var(--ff-display);
  opacity: .7
}

.s-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem
}

.s-title em {
  font-style: italic;
  color: var(--gold)
}

/* ABOUT */
.about {
  background: var(--bark)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start
}

.about-body p {
  font-size: 1.05rem;
  color: rgba(242, 234, 216, .72);
  line-height: 1.9;
  margin-bottom: 1.2rem
}

.about-body strong {
  color: var(--parchment);
  text-shadow: 0 0 8px rgba(212, 168, 83, 0.2)
}

.about-info-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  padding: 1.6rem 1.4rem;
  border-radius: 6px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, .15)
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .3)
}

.stat-ghost {
  background: rgba(20, 18, 16, 0.5);
  color: var(--parchment);
}

.stat-gold {
  background: rgba(212, 168, 83, .08);
  color: var(--gold);
  border-color: rgba(212, 168, 83, .3)
}

.stat-ico {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  opacity: 0.85;
  color: var(--gold);
}

.stat-n {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-l {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.grid-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--deep);
  border: 1px solid rgba(212, 168, 83, .1);
  padding: 2rem 1.8rem;
  border-radius: 6px;
  transition: all .35s ease;
  position: relative;
}

.pillar-card:hover {
  background: var(--night);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4)
}

.hover-glow:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.1), transparent);
  pointer-events: none
}

.pillar-sym {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: .8;
  margin-bottom: 0.8rem;
}

.pillar-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

.pillar-desc {
  font-size: .88rem;
  color: rgba(242, 234, 216, .55);
  line-height: 1.6
}

/* Journal card */
.journal-card {
  position: relative;
  background: var(--deep);
  border: 1px solid rgba(212, 168, 83, .1);
  padding: 3rem 2.5rem;
  overflow: hidden
}

.journal-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 1px;
  background: rgba(160, 82, 45, .18)
}

.journal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent, transparent 28px, rgba(212, 168, 83, .03) 28px, rgba(212, 168, 83, .03) 29px);
  pointer-events: none
}

.rings {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  transform: translateY(-50%);
  padding: 0 2rem;
  z-index: 2
}

.ring {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(212, 168, 83, .28);
  border-radius: 50%;
  background: var(--bark);
  box-shadow: 0 0 0 3px var(--deep)
}

.journal-date {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  position: relative;
  z-index: 1
}

.journal-date::after {
  flex: 1;
  height: 1px;
  content: '';
  background: rgba(212, 168, 83, .1)
}

.journal-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--parchment);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1
}

.journal-attr {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sepia);
  position: relative;
  z-index: 1
}

.journal-note {
  font-family: var(--ff-mono);
  font-size: .65rem;
  color: rgba(242, 234, 216, .2);
  margin-top: .8rem;
  font-style: italic;
  position: relative;
  z-index: 1
}

/* EVENTS */
.events {
  background: var(--night)
}

.events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, .1)
}

.events-note {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(242, 234, 216, .22);
  font-style: italic;
  text-align: right;
  line-height: 1.6
}

.events-note a {
  color: var(--sepia);
  text-decoration: none
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ev {
  background: var(--deep);
  border: 1px solid rgba(212, 168, 83, .08);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.ev-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.ev:hover {
  background: var(--bark);
  border-color: rgba(212, 168, 83, .25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4)
}

.ev:hover .ev-bar {
  transform: scaleX(1)
}

.ev-recurring .ev-bar {
  background: var(--sepia);
}

.ev-singular .ev-bar {
  background: var(--gold);
}

.ev-type {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.label-recurring {
  background: rgba(196, 169, 110, .1);
  color: var(--sepia);
}

.label-singular {
  background: rgba(212, 168, 83, .15);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, .2);
}

.ev-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--parchment);
  transition: color .2s
}

.ev:hover .ev-title {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 168, 83, 0.3);
}

.ev-desc {
  font-size: .95rem;
  color: rgba(242, 234, 216, .6);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.ev-details {
  background: var(--night);
  border-radius: 4px;
  padding: 1rem;
  margin-top: auto;
  border-left: 2px solid rgba(212, 168, 83, .3);
}

.ev-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 0.8rem;
}

.ev-detail:last-child {
  margin-bottom: 0;
}

.ev-icon {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--sepia);
  margin-top: 0.2rem;
  min-width: 40px;
}

.ev-val {
  font-size: 0.88rem;
  color: rgba(242, 234, 216, .8);
  line-height: 1.4;
}

/* PUBLICATION */
.publication {
  background: var(--bark);
  padding: 7rem 3rem
}

.pub-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center
}

.pub-cover {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 300px;
  background: var(--deep);
  border: 1px solid rgba(212, 168, 83, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  box-shadow: 18px 18px 0 rgba(212, 168, 83, .06), 35px 35px 60px rgba(0, 0, 0, .5);
  transition: transform .3s
}

.pub-cover:hover {
  transform: rotate(-1.5deg) scale(1.01)
}

.pub-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(to right, rgba(212, 168, 83, .12), transparent);
  border-right: 1px solid rgba(212, 168, 83, .08)
}

.pub-cover-lines {
  position: absolute;
  inset: 2rem 1.5rem;
  background: repeating-linear-gradient(to bottom, transparent, transparent 22px, rgba(242, 234, 216, .04) 22px, rgba(242, 234, 216, .04) 23px);
  pointer-events: none
}

.pc-label {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: .5rem
}

.pub-title-display {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--parchment);
  position: relative;
  z-index: 1
}

.pub-subtitle-display {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .5rem;
  position: relative;
  z-index: 1
}

.pub-cover-bottom {
  border-top: 1px solid rgba(212, 168, 83, .12);
  padding-top: 1rem;
  position: relative;
  z-index: 1
}

.pub-byline {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, .25)
}

.pub-text p {
  font-size: 1rem;
  color: rgba(242, 234, 216, .68);
  line-height: 1.85;
  margin-bottom: 1rem
}

/* GENRES */
.genres {
  background: var(--night)
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 168, 83, .08);
  margin-top: 2.5rem
}

.genre {
  background: var(--night);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  border-top: 2px solid transparent;
  transition: all .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 180px
}

.genre:hover {
  background: var(--bark);
  border-color: var(--gold)
}

.genre-visual {
  height: 70px;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.genre-name {
  font-weight: 600;
  font-size: 1.1rem
}

.genre-count {
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  color: rgba(242, 234, 216, .4);
  margin-top: .4rem
}

/* GENRE SVGS & ANIMATIONS */
.genre-anim svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
  opacity: 0.7;
}

.genre:hover .genre-anim svg {
  transform: translateY(-4px) scale(1.08);
  stroke-width: 1.8;
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(212, 168, 83, 0.25));
}

/* Specific Genre Animations */
.genre-stories:hover svg path {
  animation: drawLine 1s ease-in-out infinite alternate;
}

.genre-poetry:hover svg {
  animation: gentleSway 2.5s ease-in-out infinite;
}

.genre-fanfic:hover svg {
  animation: floatWander 3s ease-in-out infinite;
}

.genre-comics:hover svg {
  animation: popPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.genre-fantasy:hover svg {
  animation: gentleSway 2s ease-in-out infinite alternate;
}

.genre-flash:hover svg {
  animation: flashPulse 1s infinite alternate;
}

.genre-nonfiction:hover svg {
  animation: pageTurn 2s ease-in-out infinite;
}

.genre-experimental:hover svg {
  animation: spinChaos 5s linear infinite;
}

@keyframes drawLine {
  0% {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
  }

  100% {
    stroke-dasharray: 20;
    stroke-dashoffset: 0;
  }
}

@keyframes gentleSway {

  0%,
  100% {
    transform: rotate(-8deg) translateY(-4px) scale(1.08);
  }

  50% {
    transform: rotate(8deg) translateY(-4px) scale(1.08);
  }
}

@keyframes floatWander {

  0%,
  100% {
    transform: translate(0, -4px) scale(1.08);
  }

  50% {
    transform: translate(2px, -8px) scale(1.08);
  }
}

@keyframes popPop {

  0%,
  100% {
    transform: translateY(-4px) scale(1.08);
  }

  50% {
    transform: translateY(-4px) scale(1.15);
  }
}

@keyframes flashPulse {
  0% {
    opacity: 0.5;
    filter: drop-shadow(0 0 5px var(--gold));
  }

  100% {
    opacity: 1;
    filter: drop-shadow(0 0 15px var(--gold));
  }
}

@keyframes pageTurn {

  0%,
  100% {
    transform: perspective(200px) rotateY(0deg) translateY(-4px) scale(1.08);
  }

  50% {
    transform: perspective(200px) rotateY(-15deg) translateY(-4px) scale(1.08);
  }
}

@keyframes spinChaos {
  0% {
    transform: rotate(0deg) translateY(-4px) scale(1.08);
  }

  100% {
    transform: rotate(360deg) translateY(-4px) scale(1.08);
  }
}

/* SUBMIT POPUP */
.submit-popup {
  position: absolute;
  bottom: -45px;
  right: 0;
  background: var(--night);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  animation: popupBounce 2s ease-in-out infinite;
}

.submit-popup::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--gold);
  transform: translateX(-50%);
}

@keyframes popupBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.popup-center {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  animation: popupBounceCenter 2s ease-in-out infinite;
}

@keyframes popupBounceCenter {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -4px);
  }
}

.popup-top {
  bottom: 130%;
  right: 50%;
  transform: translateX(50%);
  animation: popupBounceTop 2s ease-in-out infinite;
}

.popup-top::after {
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-top: 5px solid var(--gold);
  border-bottom: none;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

@keyframes popupBounceTop {

  0%,
  100% {
    transform: translate(50%, 0);
  }

  50% {
    transform: translate(50%, -4px);
  }
}

/* MEMBERSHIP */
.membership {
  background: var(--bark);
  padding: 7rem 3rem;
  text-align: center
}

.mem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 580px;
  margin: 3rem auto 0;
  background: rgba(212, 168, 83, .1)
}

.mem-card {
  background: var(--bark);
  padding: 2.5rem 2rem;
  transition: background .2s
}

.mem-card:hover {
  background: rgba(212, 168, 83, .04)
}

.mem-badge {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sepia);
  padding: .25rem .7rem;
  border: 1px solid rgba(212, 168, 83, .22);
  display: inline-block;
  margin-bottom: 1rem
}

.mem-price {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: .3rem
}

.mem-price sub {
  font-size: 1.2rem;
  vertical-align: baseline;
  color: var(--sepia)
}

.mem-period {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, .3);
  margin-bottom: 1.2rem
}

.mem-desc {
  font-size: .95rem;
  color: rgba(242, 234, 216, .52);
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.mem-highlight {
  border-top: 2px solid var(--gold)
}

.mem-highlight .mem-price {
  color: var(--gold)
}

.join-link {
  display: block;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .85rem 1.5rem;
  text-decoration: none;
  text-align: center;
  transition: all .2s
}

.join-link-gold {
  background: var(--gold);
  color: var(--night)
}

.join-link-gold:hover {
  background: var(--sepia)
}

.join-link-ghost {
  border: 1px solid rgba(212, 168, 83, .25);
  color: rgba(242, 234, 216, .65)
}

.join-link-ghost:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* COMMUNITY */
.community {
  background: var(--night);
  padding: 7rem 3rem;
  text-align: center
}

.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 168, 83, .08);
  margin-top: 3rem;
  text-align: left
}

.testi {
  background: var(--night);
  padding: 2rem 1.8rem;
  position: relative;
  transition: all .3s
}

.testi:hover {
  background: var(--bark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2)
}

.testi::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(212, 168, 83, .08);
  position: absolute;
  top: .3rem;
  left: 1.2rem;
  line-height: 1
}

.testi-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 234, 216, .7);
  margin-bottom: 1.5rem;
  position: relative
}

.testi-attr {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sepia)
}

.testi-note {
  font-family: var(--ff-mono);
  font-size: .62rem;
  color: rgba(242, 234, 216, .18);
  margin-top: .2rem;
  font-style: italic
}

/* CONNECT */
.connect {
  background: var(--deep);
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.connect::before {
  content: '✦';
  font-family: var(--ff-display);
  font-size: 28rem;
  color: rgba(212, 168, 83, .025);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1
}

.connect .s-label {
  justify-content: center
}

.connect .s-title {
  font-size: clamp(2.5rem, 5vw, 5rem)
}

.connect-sub {
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(242, 234, 216, .5);
  max-width: 48ch;
  margin: .8rem auto 3rem
}

.connect-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.email-link {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--sepia);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 169, 110, .25);
  padding-bottom: .1rem;
  transition: color .2s, border-color .2s
}

.email-link:hover {
  color: var(--gold);
  border-color: var(--gold)
}

/* FOOTER */
footer {
  background: var(--bark);
  border-top: 1px solid rgba(212, 168, 83, .1);
  padding: 4rem 3rem 2rem
}

/* FAQ ACCORDION */
.faq {
  background: var(--night);
  padding: 7rem 3rem
}

.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0
}

.faq-item {
  border-bottom: 1px solid rgba(212, 168, 83, .1)
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left
}

.faq-question h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--parchment);
  transition: color .2s
}

.faq-question:hover h3 {
  color: var(--gold)
}

.faq-icon {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: .5;
  transition: transform .3s, opacity .2s
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  opacity: 1
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease
}

.faq-answer p {
  font-size: 1rem;
  color: rgba(242, 234, 216, .6);
  line-height: 1.8;
  padding: 0 0 1.5rem
}

.faq-item.open .faq-answer {
  max-height: 300px
}

/* NEWSLETTER */
.newsletter {
  background: var(--bark);
  padding: 5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 83, .08)
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 450px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: .9rem 1.2rem;
  background: var(--deep);
  border: 1px solid rgba(212, 168, 83, .15);
  color: var(--parchment);
  font-family: var(--ff-body);
  font-size: .95rem;
  transition: border-color .2s
}

.newsletter-input::placeholder {
  color: rgba(242, 234, 216, .3)
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold)
}

.newsletter-btn {
  padding: .9rem 2rem;
  background: var(--gold);
  border: none;
  color: var(--night);
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s
}

.newsletter-btn:hover {
  background: var(--sepia)
}

.newsletter-note {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: rgba(242, 234, 216, .3);
  margin-top: 1rem
}

/* FLOATING PARTICLES */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  opacity: .15;
  border-radius: 50%;
  animation: floatParticle 20s linear infinite
}

/* DECORATIVE OWLS */
.owl-decor {
  position: absolute;
  pointer-events: none;
  opacity: .12;
  transition: opacity .3s, transform .3s
}

.owl-decor:hover {
  opacity: .25;
  transform: scale(1.1)
}

.owl-decor svg {
  width: 100%;
  height: 100%
}

.owl-hero-1 {
  top: 20%;
  right: 8%;
  width: 60px;
  height: 60px;
  animation: owlBob 4s ease-in-out infinite
}

.owl-hero-2 {
  bottom: 25%;
  left: 6%;
  width: 45px;
  height: 45px;
  animation: owlBob 5s ease-in-out infinite .5s
}

.owl-about {
  top: 10%;
  right: 5%;
  width: 50px;
  height: 50px;
  animation: owlBob 4.5s ease-in-out infinite 1s
}

.owl-events {
  bottom: 15%;
  left: 3%;
  width: 40px;
  height: 40px;
  animation: owlBob 5.5s ease-in-out infinite .8s
}

.owl-footer {
  position: absolute;
  bottom: 100%;
  right: 3rem;
  width: 35px;
  height: 35px;
  animation: owlPeek 6s ease-in-out infinite
}

/* SCROLL TO TOP OWL */
.scroll-top-owl {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(212, 168, 83, .3)
}

.scroll-top-owl.visible {
  opacity: 1;
  pointer-events: auto
}

.scroll-top-owl:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 168, 83, .5)
}

.scroll-top-owl svg {
  width: 32px;
  height: 32px
}

.scroll-top-owl:active {
  transform: scale(.95) translateY(0)
}

/* PAGE LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--night);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity .5s, visibility .5s
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden
}

.loader-owl {
  width: 80px;
  height: 80px;
  animation: loaderBounce 1s ease-in-out infinite
}

.loader-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  animation: loaderFade 1.5s ease-in-out infinite
}

@keyframes loaderBounce {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-15px) scale(1.05)
  }
}

@keyframes loaderFade {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

@keyframes owlBob {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  25% {
    transform: translateY(-5px) rotate(2deg)
  }

  75% {
    transform: translateY(3px) rotate(-2deg)
  }
}

@keyframes owlPeek {

  0%,
  80%,
  100% {
    transform: translateY(0)
  }

  85%,
  95% {
    transform: translateY(-15px)
  }
}

@keyframes owlBlink {

  0%,
  45%,
  55%,
  100% {
    transform: scaleY(1)
  }

  50% {
    transform: scaleY(0.1)
  }
}

.owl-decor circle[r="2.5"],
.owl-decor circle[r="2"] {
  animation: owlBlink 2.8s ease-in-out infinite;
  transform-origin: center
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 168, 83, .08)
}

.footer-brand p {
  font-size: .95rem;
  color: rgba(242, 234, 216, .42);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 26ch
}

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 1.2rem
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: .55rem
}

.footer-col a {
  font-size: .95rem;
  color: rgba(242, 234, 216, .42);
  text-decoration: none;
  transition: color .2s
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto
}

.footer-bottom p {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, .18)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease
}

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

/* Subtle floating animations for alive feel */
.hero-title {
  animation: fadeUp .9s .1s ease both, subtleFloat 6s ease-in-out infinite 1s
}

.pub-cover {
  animation: subtleFloat 8s ease-in-out infinite
}

.journal-card {
  animation: subtleFloat 7s ease-in-out infinite .5s
}

.nav-logo-seal {
  animation: gentlePulse 3s ease-in-out infinite
}

@keyframes subtleFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes gentlePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 83, .3)
  }

  50% {
    box-shadow: 0 0 15px 2px rgba(212, 168, 83, .2)
  }
}

/* KEYFRAMES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes scaleX {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .35
  }

  50% {
    opacity: 1
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0
  }

  10% {
    opacity: .15
  }

  90% {
    opacity: .15
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0
  }
}

  @keyframes popupBounceCenter {

    0%,
    100% {
      transform: translate(-50%, 0);
    }

    50% {
      transform: translate(-50%, -4px);
    }
  }

  .popup-top {
    bottom: 130%;
    right: 50%;
    transform: translateX(50%);
    animation: popupBounceTop 2s ease-in-out infinite;
  }

  .popup-top::after {
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 0;
    border-top: 5px solid var(--gold);
    border-bottom: none;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }

  @keyframes popupBounceTop {

    0%,
    100% {
      transform: translate(50%, 0);
    }

    50% {
      transform: translate(50%, -4px);
    }
  }

  /* MEMBERSHIP */
  .membership {
    background: var(--bark);
    padding: 7rem 3rem;
    text-align: center
  }

  .mem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    max-width: 580px;
    margin: 3rem auto 0;
    background: rgba(212, 168, 83, .1)
  }

  .mem-card {
    background: var(--bark);
    padding: 2.5rem 2rem;
    transition: background .2s
  }

  .mem-card:hover {
    background: rgba(212, 168, 83, .04)
  }

  .mem-badge {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sepia);
    padding: .25rem .7rem;
    border: 1px solid rgba(212, 168, 83, .22);
    display: inline-block;
    margin-bottom: 1rem
  }

  .mem-price {
    font-family: var(--ff-display);
    font-size: 3.2rem;
    color: var(--parchment);
    line-height: 1;
    margin-bottom: .3rem
  }

  .mem-price sub {
    font-size: 1.2rem;
    vertical-align: baseline;
    color: var(--sepia)
  }

  .mem-period {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242, 234, 216, .3);
    margin-bottom: 1.2rem
  }

  .mem-desc {
    font-size: .95rem;
    color: rgba(242, 234, 216, .52);
    line-height: 1.6;
    margin-bottom: 1.5rem
  }

  .mem-highlight {
    border-top: 2px solid var(--gold)
  }

  .mem-highlight .mem-price {
    color: var(--gold)
  }

  .join-link {
    display: block;
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .85rem 1.5rem;
    text-decoration: none;
    text-align: center;
    transition: all .2s
  }

  .join-link-gold {
    background: var(--gold);
    color: var(--night)
  }

  .join-link-gold:hover {
    background: var(--sepia)
  }

  .join-link-ghost {
    border: 1px solid rgba(212, 168, 83, .25);
    color: rgba(242, 234, 216, .65)
  }

  .join-link-ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
  }

  /* COMMUNITY */
  .community {
    background: var(--night);
    padding: 7rem 3rem;
    text-align: center
  }

  .testis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(212, 168, 83, .08);
    margin-top: 3rem;
    text-align: left
  }

  .testi {
    background: var(--night);
    padding: 2rem 1.8rem;
    position: relative;
    transition: all .3s
  }

  .testi:hover {
    background: var(--bark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2)
  }

  .testi::before {
    content: '\201C';
    font-family: var(--ff-display);
    font-size: 5rem;
    color: rgba(212, 168, 83, .08);
    position: absolute;
    top: .3rem;
    left: 1.2rem;
    line-height: 1
  }

  .testi-text {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(242, 234, 216, .7);
    margin-bottom: 1.5rem;
    position: relative
  }

  .testi-attr {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sepia)
  }

  .testi-note {
    font-family: var(--ff-mono);
    font-size: .62rem;
    color: rgba(242, 234, 216, .18);
    margin-top: .2rem;
    font-style: italic
  }

  /* CONNECT */
  .connect {
    background: var(--deep);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden
  }

  .connect::before {
    content: '✦';
    font-family: var(--ff-display);
    font-size: 28rem;
    color: rgba(212, 168, 83, .025);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1
  }

  .connect .s-label {
    justify-content: center
  }

  .connect .s-title {
    font-size: clamp(2.5rem, 5vw, 5rem)
  }

  .connect-sub {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(242, 234, 216, .5);
    max-width: 48ch;
    margin: .8rem auto 3rem
  }

  .connect-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
  }

  .email-link {
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--sepia);
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 169, 110, .25);
    padding-bottom: .1rem;
    transition: color .2s, border-color .2s
  }

  .email-link:hover {
    color: var(--gold);
    border-color: var(--gold)
  }

  /* FOOTER */
  footer {
    background: var(--bark);
    border-top: 1px solid rgba(212, 168, 83, .1);
    padding: 4rem 3rem 2rem
  }

  /* FAQ ACCORDION */
  .faq {
    background: var(--night);
    padding: 7rem 3rem
  }

  .faq-list {
    max-width: 800px;
    margin: 2.5rem auto 0
  }

  .faq-item {
    border-bottom: 1px solid rgba(212, 168, 83, .1)
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left
  }

  .faq-question h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--parchment);
    transition: color .2s
  }

  .faq-question:hover h3 {
    color: var(--gold)
  }

  .faq-icon {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    color: var(--gold);
    opacity: .5;
    transition: transform .3s, opacity .2s
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    opacity: 1
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease
  }

  .faq-answer p {
    font-size: 1rem;
    color: rgba(242, 234, 216, .6);
    line-height: 1.8;
    padding: 0 0 1.5rem
  }

  .faq-item.open .faq-answer {
    max-height: 300px
  }

  /* NEWSLETTER */
  .newsletter {
    background: var(--bark);
    padding: 5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 83, .08)
  }

  .newsletter-form {
    display: flex;
    gap: .5rem;
    max-width: 450px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center
  }

  .newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: .9rem 1.2rem;
    background: var(--deep);
    border: 1px solid rgba(212, 168, 83, .15);
    color: var(--parchment);
    font-family: var(--ff-body);
    font-size: .95rem;
    transition: border-color .2s
  }

  .newsletter-input::placeholder {
    color: rgba(242, 234, 216, .3)
  }

  .newsletter-input:focus {
    outline: none;
    border-color: var(--gold)
  }

  .newsletter-btn {
    padding: .9rem 2rem;
    background: var(--gold);
    border: none;
    color: var(--night);
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s
  }

  .newsletter-btn:hover {
    background: var(--sepia)
  }

  .newsletter-note {
    font-family: var(--ff-mono);
    font-size: .72rem;
    color: rgba(242, 234, 216, .3);
    margin-top: 1rem
  }

  /* FLOATING PARTICLES */
  .particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden
  }

  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    opacity: .15;
    border-radius: 50%;
    animation: floatParticle 20s linear infinite
  }

  /* DECORATIVE OWLS */
  .owl-decor {
    position: absolute;
    pointer-events: none;
    opacity: .12;
    transition: opacity .3s, transform .3s
  }

  .owl-decor:hover {
    opacity: .25;
    transform: scale(1.1)
  }

  .owl-decor svg {
    width: 100%;
    height: 100%
  }

  .owl-hero-1 {
    top: 20%;
    right: 8%;
    width: 60px;
    height: 60px;
    animation: owlBob 4s ease-in-out infinite
  }

  .owl-hero-2 {
    bottom: 25%;
    left: 6%;
    width: 45px;
    height: 45px;
    animation: owlBob 5s ease-in-out infinite .5s
  }

  .owl-about {
    top: 10%;
    right: 5%;
    width: 50px;
    height: 50px;
    animation: owlBob 4.5s ease-in-out infinite 1s
  }

  .owl-events {
    bottom: 15%;
    left: 3%;
    width: 40px;
    height: 40px;
    animation: owlBob 5.5s ease-in-out infinite .8s
  }

  .owl-footer {
    position: absolute;
    bottom: 100%;
    right: 3rem;
    width: 35px;
    height: 35px;
    animation: owlPeek 6s ease-in-out infinite
  }

  /* SCROLL TO TOP OWL */
  .scroll-top-owl {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 168, 83, .3)
  }

  .scroll-top-owl.visible {
    opacity: 1;
    pointer-events: auto
  }

  .scroll-top-owl:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, .5)
  }

  .scroll-top-owl svg {
    width: 32px;
    height: 32px
  }

  .scroll-top-owl:active {
    transform: scale(.95) translateY(0)
  }

  /* PAGE LOADER */
  .page-loader {
    position: fixed;
    inset: 0;
    background: var(--night);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity .5s, visibility .5s
  }

  .page-loader.hidden {
    opacity: 0;
    visibility: hidden
  }

  .loader-owl {
    width: 80px;
    height: 80px;
    animation: loaderBounce 1s ease-in-out infinite
  }

  .loader-text {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
    animation: loaderFade 1.5s ease-in-out infinite
  }

  @keyframes loaderBounce {

    0%,
    100% {
      transform: translateY(0) scale(1)
    }

    50% {
      transform: translateY(-15px) scale(1.05)
    }
  }

  @keyframes loaderFade {

    0%,
    100% {
      opacity: .3
    }

    50% {
      opacity: 1
    }
  }

  @keyframes owlBob {

    0%,
    100% {
      transform: translateY(0) rotate(0deg)
    }

    25% {
      transform: translateY(-5px) rotate(2deg)
    }

    75% {
      transform: translateY(3px) rotate(-2deg)
    }
  }

  @keyframes owlPeek {

    0%,
    80%,
    100% {
      transform: translateY(0)
    }

    85%,
    95% {
      transform: translateY(-15px)
    }
  }

  @keyframes owlBlink {

    0%,
    45%,
    55%,
    100% {
      transform: scaleY(1)
    }

    50% {
      transform: scaleY(0.1)
    }
  }

  .owl-decor circle[r="2.5"],
  .owl-decor circle[r="2"] {
    animation: owlBlink 2.8s ease-in-out infinite;
    transform-origin: center
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 168, 83, .08)
  }

  .footer-brand p {
    font-size: .95rem;
    color: rgba(242, 234, 216, .42);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 26ch
  }

  .footer-col h4 {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-bottom: 1.2rem
  }

  .footer-col ul {
    list-style: none
  }

  .footer-col li {
    margin-bottom: .55rem
  }

  .footer-col a {
    font-size: .95rem;
    color: rgba(242, 234, 216, .42);
    text-decoration: none;
    transition: color .2s
  }

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

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    max-width: 1200px;
    margin: 0 auto
  }

  .footer-bottom p {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242, 234, 216, .18)
  }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease
  }

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

  /* Subtle floating animations for alive feel */
  .hero-title {
    animation: fadeUp .9s .1s ease both, subtleFloat 6s ease-in-out infinite 1s
  }

  .pub-cover {
    animation: subtleFloat 8s ease-in-out infinite
  }

  .journal-card {
    animation: subtleFloat 7s ease-in-out infinite .5s
  }

  .nav-logo-seal {
    animation: gentlePulse 3s ease-in-out infinite
  }

  @keyframes subtleFloat {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-8px)
    }
  }

  @keyframes gentlePulse {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(212, 168, 83, .3)
    }

    50% {
      box-shadow: 0 0 15px 2px rgba(212, 168, 83, .2)
    }
  }

  /* KEYFRAMES */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(18px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-12px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  @keyframes scaleX {
    from {
      transform: scaleX(0)
    }

    to {
      transform: scaleX(1)
    }
  }

  @keyframes ticker {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: .35
    }

    50% {
      opacity: 1
    }
  }

  @keyframes floatParticle {
    0% {
      transform: translateY(100vh) rotate(0deg);
      opacity: 0
    }

    10% {
      opacity: .15
    }

    90% {
      opacity: .15
    }

    100% {
      transform: translateY(-100vh) rotate(360deg);
      opacity: 0
    }
  }

  /* MOBILE */
  @media(max-width:900px) {
    nav {
      padding: 0 1.2rem
    }

    .nav-links {
      display: none
    }

    .nav-hamburger {
      display: flex
    }

    .nav-right {
      display: none
    }

    .hero {
      padding: 6rem 1.5rem 4rem
    }

    .hero-typewriter {
      display: block;
      font-size: 0.9rem;
      opacity: 0.3;
    }

    .hero-typewriter.left {
      top: 15%;
      left: 5%;
    }

    .hero-typewriter.right {
      bottom: 12%;
      right: 5%;
    }

    .s {
      padding: 4.5rem 1.5rem
    }

    .about-grid,
    .pub-inner,
    .events-grid,
    .testis,
    .mem-cards {
      grid-template-columns: 1fr
    }

    .about-info-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .grid-pillars {
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }

    .about-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .genres-grid {
      grid-template-columns: 1fr 1fr
    }

    .events-head {
      flex-direction: column;
      align-items: flex-start;
      gap: .8rem
    }

    footer {
      padding: 3rem 1.5rem 1.5rem
    }

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

    .footer-brand {
      grid-column: span 2;
    }

    .footer-bottom {
      flex-direction: column;
      gap: .4rem;
      text-align: center
    }

    .pub-cover {
      max-width: 260px
    }

    .connect {
      padding: 5rem 1.5rem
    }

    .faq {
      padding: 4.5rem 1.5rem
    }

    .newsletter {
      padding: 3rem 1.5rem
    }

    .newsletter-form {
      flex-direction: column
    }

    .newsletter-input {
      min-width: 100%
    }
  }

  /* DUAL COVER FLIP & SPINE LOGIC */
  .vol-card {
    position: relative;
    overflow: hidden;
    background: var(--night);
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(212, 168, 83, 0.1);
    aspect-ratio: 1 / 1;
    min-width: 0;
    min-height: 0;
  }

  .vol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 168, 83, 0.3);
  }

  .vol-cover-a,
  .vol-cover-b {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }

  .vol-cover-a img,
  .vol-cover-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
  }

  .vol-cover-a {
    opacity: 1;
  }

  .vol-cover-b {
    opacity: 0;
  }

  /* Single-cover: no change on hover — just subtle zoom */
  .vol-card:hover .vol-cover-a img {
    transform: scale(1.04);
  }

  /* Dual cover: crossfade A → B on hover */
  .vol-dual-cover:hover .vol-cover-a {
    opacity: 0;
  }

  .vol-dual-cover:hover .vol-cover-b {
    opacity: 1;
  }

  .vol-dual-cover:hover .vol-cover-b img {
    transform: scale(1.04);
  }

  /* Overlay so text stays readable */
  .vol-cover-a::after,
  .vol-cover-b::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 12, 9, 0.15) 40%, rgba(13, 12, 9, 0.75) 100%);
    pointer-events: none;
  }

  .vol-no-cover {
    background: linear-gradient(135deg, var(--deep) 0%, #151210 100%);
  }

  .vol-no-cover::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(212, 168, 83, 0.15);
    border-right: 1px solid rgba(212, 168, 83, 0.4);
    border-left: 1px solid rgba(212, 168, 83, 0.4);
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .vol-no-cover::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    border-right: 1px dashed rgba(212, 168, 83, 0.1);
    z-index: 0;
  }

  .vol-content {
    position: relative;
    z-index: 2;
    width: 100%;
    transition: transform 0.3s ease;
  }

  .vol-card:hover .vol-content {
    transform: scale(1.02);
  }

  .vol-year {
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-bottom: 0.5rem;
    opacity: 0.8;
  }

  .vol-num {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  }

  .vol-title {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--parchment);
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  }