/* style.css — Bad Omen Brewery */

:root {
  --gold: #c9a75e;
  --wine: #7a1f2b;
  --bg: #150a0d;
  --bg-alt: #1c0f13;
  --text: #ece3d8;
  --text-dim: #a9968c;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', 'EB Garamond', serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

a, button {
  touch-action: manipulation;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.btn.ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--text-dim);
}

.btn.ghost:hover {
  color: var(--text);
  border-color: var(--text);
}

/* ---------- Age Gate ---------- */
#gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at center, var(--bg-alt), var(--bg));
  text-align: center;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
}

#gate.hidden {
  display: none;
}

.eye-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

#gate h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

#gate p {
  max-width: 420px;
  color: var(--text-dim);
}

.gate-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

body.gate-locked {
  overflow: hidden;
}

/* ---------- Watching Eye ---------- */
#watcher {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom) + 12px);
  right: max(24px, env(safe-area-inset-right) + 12px);
  width: 60px;
  height: 60px;
  z-index: 50;
  opacity: 0.9;
  pointer-events: none;
}

#watcher svg {
  width: 100%;
  height: 100%;
}

#watcher .ring {
  fill: none;
  stroke: rgba(201, 167, 94, 0.25);
  stroke-width: 2;
}

#watcher .progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transform: rotate(-90deg);
  transform-origin: 30px 30px;
  transition: stroke-dashoffset 0.1s linear;
}

/* ---------- Cursor-following eye ---------- */
#cursor-eye {
  position: fixed;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

#cursor-eye.active {
  opacity: 0.85;
}

#cursor-eye .lid {
  fill: rgba(21, 10, 13, 0.55);
  stroke: var(--gold);
  stroke-width: 2;
}

@media (hover: none), (pointer: coarse) {
  #cursor-eye {
    display: none;
  }
}

/* ---------- Sound toggle ---------- */
.sound-toggle {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom) + 12px);
  left: max(24px, env(safe-area-inset-left) + 12px);
  width: 48px;
  height: 48px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 10, 13, 0.7);
  border: 1px solid rgba(201, 167, 94, 0.4);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sound-toggle:hover {
  border-color: var(--gold);
  background: rgba(21, 10, 13, 0.9);
}

.sound-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}

.sound-icon path:first-child {
  fill: var(--gold);
  stroke: none;
}

.sound-icon-on {
  display: none;
}

.sound-toggle[aria-pressed="true"] .sound-icon-off {
  display: none;
}

.sound-toggle[aria-pressed="true"] .sound-icon-on {
  display: block;
}

/* ---------- Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 10, 13, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 167, 94, 0.15);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: 16px;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.brandmark img {
  width: 34px;
  height: 34px;
}

#nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#nav-menu a {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

#nav-menu a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

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

  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-alt);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  #nav-menu.open {
    max-height: 260px;
  }

  #nav-menu li {
    border-top: 1px solid rgba(201, 167, 94, 0.1);
  }

  #nav-menu a {
    display: block;
    padding: 16px 24px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  overflow: hidden;
}

.hero .rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: spin 90s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-logo {
  width: min(220px, 45vw);
  margin-bottom: 28px;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(201, 167, 94, 0.25));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  max-width: 640px;
  position: relative;
}

.hero-tagline strong {
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 14px;
  position: relative;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-cue .stick {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse-stick 1.8s ease-in-out infinite;
}

@keyframes pulse-stick {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Dividers ---------- */
.crack-divider {
  height: 40px;
  margin: 0 auto;
}

.crack-divider path {
  fill: none;
  stroke: rgba(201, 167, 94, 0.4);
  stroke-width: 1;
}

/* ---------- Section shared ---------- */
section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-dim);
}

/* ---------- Omens / Tarot cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.tarot {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid rgba(201, 167, 94, 0.2);
  border-radius: 4px;
  padding: 32px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tarot:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.tarot .numeral {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.tarot h3 {
  font-size: 1.4rem;
  margin: 12px 0 6px;
}

.tarot .style-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(122, 31, 43, 0.15);
  border: 1px solid rgba(122, 31, 43, 0.4);
  border-radius: 2px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.tarot .desc {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 20px;
}

.tarot .stats {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(201, 167, 94, 0.15);
  padding-top: 16px;
  font-family: var(--font-mono);
}

.tarot .stats div {
  font-size: 1.1rem;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tarot .stats span {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

@keyframes tarot-pulse {
  0%, 100% { box-shadow: none; border-color: rgba(201, 167, 94, 0.2); }
  30% { box-shadow: 0 0 0 3px rgba(201, 167, 94, 0.35); border-color: var(--gold); }
}

.tarot.highlight {
  animation: tarot-pulse 1.6s ease;
}

/* ---------- Fortune draw (tarot pull) ---------- */
.fortune-draw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 56px;
}

.tarot-card {
  width: 220px;
  height: 360px;
  perspective: 1400px;
}

.tarot-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.tarot-inner.flipped {
  transform: rotateY(180deg);
}

.tarot-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--bg-alt);
  backface-visibility: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.tarot-face::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 167, 94, 0.4);
  border-radius: 4px;
  pointer-events: none;
}

.tarot-back .back-pattern {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  opacity: 0.85;
}

.tarot-back .back-pattern rect {
  fill: none;
}

.tarot-back .back-pattern circle {
  fill: var(--gold);
  stroke: none;
}

.back-label {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.tarot-front {
  transform: rotateY(180deg);
}

.tarot-numeral-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(201, 167, 94, 0.4);
  border-radius: 2px;
  padding: 2px 10px;
  margin-bottom: 14px;
}

.tarot-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}

.tarot-name {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.tarot-style {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}

.tarot-fortune {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.tarot-view-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

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

/* ---------- Beer finder quiz ---------- */
.quiz-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid rgba(201, 167, 94, 0.2);
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 167, 94, 0.4);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.quiz-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.quiz-dot.done {
  background: rgba(201, 167, 94, 0.5);
  border-color: rgba(201, 167, 94, 0.5);
}

.quiz-question {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-answer-btn {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid rgba(201, 167, 94, 0.3);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quiz-answer-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 167, 94, 0.06);
}

.quiz-result {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz-result[hidden],
.quiz-progress[hidden] {
  display: none;
}

.quiz-result-icon svg {
  width: 62px;
  height: 62px;
  margin-bottom: 6px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}

.quiz-result-name {
  font-size: 1.3rem;
  margin: 10px 0 6px;
}

.quiz-result-note {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 14px 0 24px;
}

.quiz-result-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.story-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.story-copy p {
  color: var(--text-dim);
  margin-bottom: 16px;
}

.story-copy strong {
  color: var(--gold);
}

.story-art svg {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

.story-art-trigger {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@keyframes story-art-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(0.94); filter: drop-shadow(0 0 12px rgba(201, 167, 94, 0.5)); }
  100% { transform: scale(1); }
}

.story-art-trigger.pulse svg {
  animation: story-art-pulse 0.35s ease;
}

@media (max-width: 860px) {
  .story {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-copy p {
    text-align: left;
  }
}

.superstitions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 70px;
  border-top: 1px solid rgba(201, 167, 94, 0.15);
  padding-top: 50px;
}

.superstitions .item {
  text-align: center;
}

.superstitions .num {
  display: block;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.superstitions p {
  color: var(--text-dim);
  font-size: 1rem;
}

/* ---------- Superstition modal (easter egg) ---------- */
.superstition-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.superstition-modal[hidden] {
  display: none;
}

.superstition-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 3, 0.85);
}

.superstition-panel {
  position: relative;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-alt);
  border: 1px solid rgba(201, 167, 94, 0.35);
  border-radius: 6px;
  padding: 40px 36px;
  text-align: center;
}

.superstition-panel h3 {
  font-size: 1.4rem;
  margin: 10px 0 26px;
}

.superstition-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(201, 167, 94, 0.3);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
}

.superstition-list {
  list-style: none;
  counter-reset: superstition;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.superstition-list li {
  counter-increment: superstition;
  position: relative;
  padding-left: 34px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.superstition-list li::before {
  content: counter(superstition, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}

/* ---------- Visit ---------- */
.visit {
  background: var(--bg-alt);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.visit-info .block {
  margin-bottom: 30px;
}

.visit-info h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.visit-info p {
  color: var(--text-dim);
}

.tbd {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tbd-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}

.newsletter {
  background: var(--bg);
  border: 1px solid rgba(201, 167, 94, 0.2);
  border-radius: 4px;
  padding: 40px 32px;
  align-self: start;
}

.newsletter h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.brew-countdown {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 167, 94, 0.15);
}

.brew-countdown[hidden] {
  display: none;
}

.countdown-timer {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

.countdown-timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-timer span {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--gold);
}

.countdown-timer label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

.newsletter p {
  color: var(--text-dim);
  margin-bottom: 20px;
}

#signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#signup-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid rgba(201, 167, 94, 0.3);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

#signup-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-msg {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.95rem;
  display: none;
}

.form-msg.show {
  display: block;
}

.form-msg-error {
  color: var(--wine);
}

.fine {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
  opacity: 0.7;
}

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

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(201, 167, 94, 0.15);
  padding: 50px 0 30px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-brand .name {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.footer-brand .tag {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 167, 94, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  background: var(--gold);
  color: var(--bg);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 167, 94, 0.1);
  padding-top: 24px;
  padding-bottom: env(safe-area-inset-bottom);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

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