/**
 * Midnight Mystery — global styles for midnightmystery.co.za
 * Palette: deep black, metallic gold, silver/white; celestial spark accents.
 * Typography: Great Vibes (script accents), Playfair Display (titles), Montserrat (UI/body).
 */

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --gold: #d4af37;
  --gold-bright: #f4e4a0;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --silver: #c0c0c0;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --border: rgba(212, 175, 55, 0.35);
  --radius: 12px;
  --font-script: "Great Vibes", cursive;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fixed gold sparkle field — decorative only (reduced motion respected below). */
.spark-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.spark-layer__swirl {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 35% at 85% 15%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 30% at 10% 85%, rgba(212, 175, 55, 0.1), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 214, 120, 0.06), transparent 42%);
  animation: swirl-drift 28s ease-in-out infinite alternate;
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fffef0;
  box-shadow:
    0 0 6px 1px rgba(212, 175, 55, 0.95),
    0 0 14px 2px rgba(212, 175, 55, 0.35);
  animation: spark-twinkle var(--spark-dur, 4s) ease-in-out infinite;
  animation-delay: var(--spark-delay, 0s);
  opacity: 0.85;
}

@keyframes swirl-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-2%, 1%, 0) rotate(2deg);
  }
}

@keyframes spark-twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  45% {
    opacity: 1;
    transform: scale(1.15);
  }
  55% {
    opacity: 0.85;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spark-layer__swirl,
  .spark {
    animation: none !important;
  }

  .spark {
    opacity: 0.45;
  }
}

main {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.display-gradient {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline-script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  margin: 0.5rem 0 0;
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--silver);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Shop “Types of boxes”: centred gold-dot list aligned with home feature styling */
.box-types-list {
  max-width: 28rem;
  margin: 1rem auto 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(212, 175, 55, 0.06);
}

.step-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .step-grid--split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.step-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  background: var(--bg-elevated);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.love-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.love-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--silver);
  font-size: 0.98rem;
}

.love-grid .emoji {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.bundle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.bundle-table th,
.bundle-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0.5rem;
  text-align: left;
}

.bundle-table th {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bundle-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.policy-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--silver);
}

.policy-list li {
  margin-bottom: 0.75rem;
}

/* On-site TikTok info / optional single-video embed container */
.tiktok-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  background: var(--bg-elevated);
  max-width: 640px;
  margin-inline: auto;
}

.tiktok-panel__embed {
  margin-top: 1.25rem;
}

.tiktok-panel__embed .tiktok-embed {
  margin-inline: auto;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: var(--bg-elevated);
}

.review-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--silver);
}

.review-card cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
}

/* ---------- Homepage video showcase ---------- */

.page-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.page-jump__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.65rem 0;
  justify-content: center;
  max-width: var(--max);
  margin-inline: auto;
  width: min(100% - 2rem, var(--max));
}

.page-jump a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.page-jump a:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--gold-soft);
}

/* Flex + wrap so showcase cards stay visually centred, including a short last row */
.video-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
}

.video-card {
  flex: 0 1 min(100%, 360px);
  max-width: 360px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.video-card video {
  display: block;
  width: 100%;
  max-height: min(75vh, 640px);
  object-fit: contain;
  background: #000;
}

.video-card__cap {
  padding: 0.85rem 1rem 1rem;
}

.video-card__cap h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.video-card__cap p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--silver);
}

.video-feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  max-width: 720px;
  margin-inline: auto;
}

.video-feature video {
  display: block;
  width: 100%;
  max-height: min(85vh, 720px);
  background: #111;
}

/* Shop “Types of boxes” hero clip: wider frame, letterboxing, and gold-edge treatment so mixed aspect ratios stay readable */
.video-feature.video-feature--shop-types {
  max-width: min(56rem, 100%);
  margin-top: 1.75rem;
  margin-inline: auto;
  padding: clamp(0.35rem, 1.25vw, 0.65rem);
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.09), var(--bg-elevated) 42%, #040404);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(212, 175, 55, 0.28),
    inset 0 1px 0 rgba(212, 175, 55, 0.14);
}

.video-feature.video-feature--shop-types .video-feature__ratio {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 62%), #000;
}

.video-feature.video-feature--shop-types .video-feature__media {
  width: 100%;
  max-height: min(78vh, 720px);
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  background: #000;
}

.teaser-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--bg-elevated));
}

.teaser-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.teaser-panel p {
  margin: 0;
  color: var(--silver);
  max-width: 42ch;
  margin-inline: auto;
}

.nav__link--secondary {
  font-size: 0.78rem;
}

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

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--tight {
  padding-top: 2rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--text);
  background: var(--gold-soft);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 880px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    position: relative;
  }

  .nav__list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    min-width: 220px;
    padding: 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__link {
    border-radius: 8px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(192, 192, 192, 0.06), transparent 40%);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #fff 55%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  color: var(--silver);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__panel {
  border: 1px solid var(--border);
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: min(100%, 380px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 55%),
    var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.hero__panel img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.hero__panel .hero__video {
  display: block;
  /* Square box + 50% radius = circle; non-square intrinsic video + border-radius alone reads as an oval */
  box-sizing: border-box;
  width: min(280px, 100%);
  aspect-ratio: 1;
  /* Cover fills the circle and crops — reads as zoomed vs letterboxed contain */
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #000;
  outline: none;
}

.video-card:hover video[data-hover-preview] {
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #f0e6b4);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

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

.btn--ghost:hover {
  background: var(--gold-soft);
}

/* ---------- Cards / Products ---------- */

.grid-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Full-width product rows (detail pages) */
.product-stack {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .product-stack .card {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    align-items: stretch;
  }

  .product-stack .card__media {
    aspect-ratio: auto;
    min-height: 240px;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.6));
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--silver);
  font-size: 0.95rem;
  flex: 1;
}

.price {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  margin-bottom: 0.75rem;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item__panel {
  padding: 0 1.15rem 1rem;
  color: var(--silver);
  display: none;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

/* ---------- Contact ---------- */

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form select:focus-visible,
.form input:focus-visible,
.form textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Reviews: main heading + share copy beside ambient unbox clip (stacks on narrow viewports) */
.reviews-unbox-row {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.reviews-unbox-row__copy {
  min-width: 0;
}

@media (min-width: 900px) {
  .reviews-unbox-row {
    grid-template-columns: 1fr minmax(0, 340px);
    gap: 2.5rem;
    align-items: start;
  }

  .reviews-unbox-row__media {
    justify-self: end;
  }
}

.reviews-unbox-row__media {
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.reviews-unbox-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.reviews-unbox-video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.info-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  background: var(--bg-elevated);
}

.info-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.info-list a {
  color: var(--text);
  text-decoration: none;
}

.info-list a:hover {
  color: var(--gold);
}

/* Tighter contact detail cells (email, website, TikTok, phone) */
.info-list--compact {
  gap: 0.5rem;
}

.info-list--compact li {
  padding: 0.5rem 0.75rem;
}

.info-list--compact strong {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.info-list--compact a {
  font-size: 0.88rem;
  line-height: 1.35;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: var(--silver);
  text-decoration: none;
}

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

/* ---------- Typography sections ---------- */

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.page-intro {
  margin: 0;
  max-width: 62ch;
  color: var(--silver);
}

.prose {
  max-width: 65ch;
  color: var(--silver);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 2rem;
}

.prose p {
  margin: 0 0 1rem;
}
