/*
Theme Name: RuffinApps — Velvet Underground
Theme URI: https://ruffinapps.com
Author: Johnnie Ruffin
Author URI: https://johnnieruffin.com
Description: A cinematic dark luxury theme for RuffinApps.com — Old Time Radio & Classic Films. Features the Velvet Underground design system with Cormorant Garamond display typography, warm gold accents, atmospheric hero, dual app cards, shows grid, and animated about section.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ruffinapps
Tags: one-page, dark, custom-colors, custom-header, featured-images, full-width-template

DESIGN SYSTEM: "Velvet Underground" — Cinematic Dark Luxury
Color Palette:
  Background:     #080E1A (near-black navy)
  Surface:        #0F1826 (card surface)
  Border:         #1E2D42 (subtle dark border)
  Gold primary:   #C9963A (warm aged gold)
  Gold bright:    #E8B84B (brighter gold for CTAs)
  Teal accent:    #1E6B6B (FilmTrove identity)
  Text primary:   #FFFFFF
  Text secondary: #B8B0A0 (warm gray)
  Text muted:     #6B6358 (dimmed warm gray)
Typography:
  Display:        Cormorant Garamond (bold italic)
  Sub-headlines:  Montserrat (semibold, wide tracking)
  Body:           Crimson Pro (readable, literary)
*/

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #080E1A;
  color: #FFFFFF;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Typography Utilities ─────────────────────────────────────────────────── */
.display-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  color: #FFFFFF;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9963A;
  display: block;
  margin-bottom: 1rem;
}

/* ─── Layout Utilities ─────────────────────────────────────────────────────── */
.ra-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .ra-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ra-container { padding: 0 2rem; } }

/* ─── Gold Rule ────────────────────────────────────────────────────────────── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9963A, transparent);
  border: none;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #C9963A 0%, #E8B84B 50%, #C9963A 100%);
  background-size: 200% 100%;
  color: #080E1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 150, 58, 0.35);
  color: #080E1A;
}

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 150, 58, 0.5);
  color: #C9963A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-ghost-gold:hover {
  border-color: #C9963A;
  background: rgba(201, 150, 58, 0.1);
  box-shadow: 0 0 16px rgba(201, 150, 58, 0.2);
  color: #C9963A;
}

/* ─── Scroll Reveal ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */
#ra-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
#ra-nav.scrolled {
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 150, 58, 0.15);
}
.ra-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.ra-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.ra-logo-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9963A, #E8B84B);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ra-logo-icon svg { width: 14px; height: 14px; }
.ra-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.ra-nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}
@media (min-width: 768px) { .ra-nav-links { display: flex; } }
.ra-nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.ra-nav-links a:hover { color: #C9963A; }
.ra-nav-cta { display: none; }
@media (min-width: 768px) { .ra-nav-cta { display: inline-flex; } }

/* Mobile menu */
.ra-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { .ra-hamburger { display: none; } }
.ra-hamburger span {
  display: block;
  width: 20px; height: 1px;
  background: #C9963A;
}
.ra-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(8, 14, 26, 0.97);
}
.ra-mobile-menu.open { display: flex; }
.ra-mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
#ra-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080E1A;
}
.ra-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
}
.ra-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,14,26,0.92) 40%, rgba(8,14,26,0.4) 100%);
}
.ra-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, transparent, #080E1A);
}
.ra-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 760px;
}
.ra-hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ra-hero-label-line {
  width: 2rem; height: 1px;
  background: #C9963A;
  flex-shrink: 0;
}
.ra-hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  color: #FFFFFF;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  margin-bottom: 1.5rem;
}
.ra-hero-h1 .gold { color: #C9963A; }
.ra-hero-sub {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.ra-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.ra-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.ra-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #E8B84B;
  line-height: 1;
}
.ra-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ─── Apps Section ─────────────────────────────────────────────────────────── */
#ra-apps {
  position: relative;
  padding: 7rem 0;
  background: #080E1A;
}
.ra-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.ra-section-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}
.ra-section-h2 .gold { color: #C9963A; }
.ra-section-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.6;
}
.ra-apps-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ra-apps-grid { grid-template-columns: 1fr 1fr; } }

.ra-app-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ra-app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.ra-app-card-jotr {
  background: linear-gradient(145deg, #0F1826 0%, #141F30 100%);
  border: 1px solid rgba(201, 150, 58, 0.2);
}
.ra-app-card-filmtrove {
  background: linear-gradient(145deg, #0A1A1A 0%, #0F2020 100%);
  border: 1px solid rgba(30, 107, 107, 0.35);
}
.ra-app-card-top-bar {
  height: 4px;
  width: 100%;
}
.ra-app-card-top-bar-gold {
  background: linear-gradient(90deg, #C9963A, #E8B84B, #C9963A);
}
.ra-app-card-top-bar-teal {
  background: linear-gradient(90deg, #1E6B6B, #2A9D8F, #1E6B6B);
}
.ra-app-card-body { padding: 2rem; }
.ra-app-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ra-app-icon {
  width: 64px; height: 64px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ra-app-icon-gold {
  background: rgba(201, 150, 58, 0.15);
  border: 1px solid rgba(201, 150, 58, 0.3);
}
.ra-app-icon-teal {
  background: rgba(30, 107, 107, 0.2);
  border: 1px solid rgba(30, 107, 107, 0.4);
}
.ra-app-icon svg { width: 28px; height: 28px; }
.ra-platform-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ra-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.ra-badge-gold { color: #C9963A; border: 1px solid rgba(201, 150, 58, 0.35); }
.ra-badge-teal { color: #2A9D8F; border: 1px solid rgba(42, 157, 143, 0.35); }
.ra-app-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.ra-app-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.ra-app-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ra-app-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.ra-feature-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ra-feature-dot-gold { background: #C9963A; }
.ra-feature-dot-teal { background: #2A9D8F; }
.ra-app-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
.ra-app-ctas-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1E6B6B, #2A9D8F);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  width: 100%;
  text-align: center;
}
.btn-teal:hover { opacity: 0.88; transform: translateY(-1px); color: #FFFFFF; }
.btn-gold-full { width: 100%; justify-content: center; }
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(201, 150, 58, 0.4);
  color: #C9963A;
  background: transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost-sm:hover {
  background: rgba(201, 150, 58, 0.1);
  border-color: #C9963A;
  color: #C9963A;
}
.ra-app-card-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.9));
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.9));
}
.ra-coming-soon {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(42, 157, 143, 0.6);
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.75rem;
}

/* ─── Shows Section ────────────────────────────────────────────────────────── */
#ra-shows {
  padding: 7rem 0;
  background: #06101C;
}
.ra-shows-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .ra-shows-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.ra-shows-header-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  line-height: 1.6;
}
.ra-shows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 480px) { .ra-shows-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .ra-shows-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ra-shows-grid { grid-template-columns: repeat(5, 1fr); } }

.ra-show-card {
  padding: 1.25rem;
  border-radius: 8px;
  background: rgba(15, 24, 38, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease;
  cursor: default;
}
.ra-show-card:hover {
  border-color: rgba(201, 150, 58, 0.3);
  background: rgba(20, 31, 48, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.ra-show-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(201, 150, 58, 0.08);
  border: 1px solid rgba(201, 150, 58, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.ra-show-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.ra-show-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
.ra-genre-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
.genre-comedy { background: rgba(232,184,75,0.15); color: #E8B84B; border: 1px solid rgba(232,184,75,0.3); }
.genre-western { background: rgba(180,110,50,0.15); color: #C87840; border: 1px solid rgba(180,110,50,0.3); }
.genre-sci-fi { background: rgba(100,160,220,0.15); color: #6AA0DC; border: 1px solid rgba(100,160,220,0.3); }
.genre-thriller { background: rgba(160,60,80,0.15); color: #C04060; border: 1px solid rgba(160,60,80,0.3); }
.ra-show-eps {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
}
.ra-show-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 8px;
  background: rgba(201, 150, 58, 0.06);
  border: 1px dashed rgba(201, 150, 58, 0.3);
  min-height: 140px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.ra-show-more-card:hover {
  background: rgba(201, 150, 58, 0.12);
  border-color: rgba(201, 150, 58, 0.5);
}
.ra-show-more-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #C9963A;
}
.ra-show-more-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 150, 58, 0.6);
  margin-top: 4px;
}

/* ─── About Section ────────────────────────────────────────────────────────── */
#ra-about {
  position: relative;
  padding: 7rem 0;
  background: #080E1A;
  overflow: hidden;
}
.ra-about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.ra-about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 26, 0.75);
}
.ra-about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .ra-about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.ra-about-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #FFFFFF;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.ra-about-h2 .gold { color: #C9963A; }
.ra-about-text {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ra-about-text-muted {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ra-about-text strong { color: #E8B84B; }
.ra-about-cta { margin-top: 2rem; }
.ra-stats-list { display: flex; flex-direction: column; gap: 1.5rem; }
.ra-stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(15, 24, 38, 0.7);
  border: 1px solid rgba(201, 150, 58, 0.15);
}
.ra-stat-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(201, 150, 58, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ra-stat-icon svg { width: 20px; height: 20px; color: #C9963A; }
.ra-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #E8B84B;
  line-height: 1;
}
.ra-stat-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 4px;
}
.ra-stat-sub {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
#ra-footer {
  background: #04090F;
  border-top: 1px solid rgba(201, 150, 58, 0.12);
  padding: 3rem 0;
}
.ra-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .ra-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.ra-footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .ra-footer-brand { align-items: flex-start; } }
.ra-footer-tagline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}
.ra-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}
.ra-footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.ra-footer-links a:hover { color: #C9963A; }
.ra-footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}

/* ─── WordPress Admin Bar Offset ──────────────────────────────────────────── */
.admin-bar #ra-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #ra-nav { top: 46px; } }
