/* =============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================= */
:root {
  --bg: #05011b;
  --fg: #f0ede6;
  --gold: #dbb155;
  --gold-dark: #d79628;
  --gold-light: #f6d389;
  --card-bg: rgba(25, 18, 61, 0.45);
  --card-border: rgba(219, 177, 85, 0.18);
  --muted: rgba(240, 237, 230, 0.6);

  --font-body: 'Nunito', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Cinzel', serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.glass-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
}

.gold-divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
  height: 1px;
  margin: 0 auto;
}

.section-label {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #f6d389, #e7b45e, #d79628, #d8ad5f, #d8c288);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Buttons */
.btn-gold {
  display: inline-block;
  color: #05011b;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d79628, #dcac54, #dfc176, #dcac54, #d79628);
  background-size: 200%;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline-gold {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(219, 177, 85, 0.5);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-outline-gold:hover {
  background: rgba(219, 177, 85, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Layout helpers */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 1.5rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

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

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(219, 177, 85, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(219, 177, 85, 0.6);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease both;
}

.animate-slow-rotate {
  animation: slowRotate 30s linear infinite;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 1, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-logo-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  background-image:
    linear-gradient(to bottom, rgba(5, 1, 27, 0.2), rgba(8, 4, 28, 0.45), #05011b),
    url('sylvia-nebel.webp');
  background-size: cover;
  background-position: center top;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-rotating-question {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  min-height: 1.5rem;
}

.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-h1 span {
  display: block;
}

.hero-divider {
  margin: 1.5rem auto;
}

.hero-subtext {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* =============================================
   ÜBER MICH
   ============================================= */
#ueber-mich .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ueber-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.ueber-text .lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ueber-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.skill-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.skill-tag {
  padding: 0.5rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.ueber-image {
  position: relative;
}

.ueber-image img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  max-height: 600px;
}

.ueber-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  #ueber-mich .section-inner {
    grid-template-columns: 1fr;
  }

  .ueber-badge {
    right: 0;
  }
}

/* =============================================
   QUOTE SECTION
   ============================================= */
.quote-section {
  position: relative;
  text-align: center;
  padding: 7rem 1.5rem;
  background-image:
    linear-gradient(rgba(8, 5, 30, 0.82), rgba(8, 5, 30, 0.82)),
    url('/subsrc/spirit.webp');
  background-size: cover;
  background-position: center;
}

.quote-section blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.quote-attribution {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 1rem;
}

/* =============================================
   WENN DU DICH ... / TIMELINE
   ============================================= */
.wenn-section {
  text-align: center;
}

.wenn-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.wenn-section>p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.timeline {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.timeline-text {
  padding-top: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--muted);
}

/* =============================================
   ANGEBOTE
   ============================================= */
#angebote {
  background: radial-gradient(ellipse at 50% 0%, rgba(45, 13, 103, 0.3), #05011b 70%);
}

#angebote .section-inner {
  text-align: center;
}

#angebote h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.angebote-subtitle {
  color: var(--muted);
  max-width: 550px;
  margin: 1rem auto 3rem;
}

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

.angebot-card {
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.angebot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 177, 85, 0.4);
}

.angebot-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.angebot-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.angebot-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .angebote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =============================================
   SEELENWEG
   ============================================= */
#seelenweg {
  background: radial-gradient(ellipse at 50% 100%, rgba(32, 16, 80, 0.4), #05011b);
}

#seelenweg .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

#seelenweg img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  max-height: 500px;
}

#seelenweg h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

#seelenweg p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  #seelenweg .section-inner {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PACKAGES
   ============================================= */
#packages .section-inner {
  text-align: center;
}

#packages h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.packages-subtitle {
  color: var(--muted);
  max-width: 550px;
  margin: 1rem auto 3rem;
  font-size: 0.95rem;
}

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

.package-card {
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card.highlight {
  border-color: rgba(219, 177, 85, 0.5);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d79628, #dcac54);
  color: #05011b;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.package-duration {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.packages-custom {
  margin-top: 3rem;
  padding: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.packages-custom p {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Guthabenkarten – 5-Spalten-Grid responsiv */
#guthabenkarten .section-inner {
  text-align: center;
}

#guthabenkarten .packages-grid {
  grid-template-columns: repeat(5, 1fr);
}

#guthabenkarten .package-card form {
  height: 100%;
}

@media (max-width: 1000px) {
  #guthabenkarten .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  #guthabenkarten .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mission-section {
  position: relative;
  text-align: center;
  padding: 7rem 1.5rem;
  background-image:
    linear-gradient(rgba(5, 1, 27, 0.78), rgba(5, 1, 27, 0.78)),
    url('/subsrc/mission.webp');
  background-size: cover;
  background-position: center;
}

.mission-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 650px;
  margin: 0 auto 1.5rem;
  line-height: 1.35;
}

.mission-section p {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* =============================================
   KONTAKT
   ============================================= */
#kontakt .section-inner {
  text-align: center;
}

#kontakt h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.kontakt-subtext {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.kontakt-form {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(219, 177, 85, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240, 237, 230, 0.3);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.kontakt-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.kontakt-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.kontakt-info p {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.kontakt-success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

/* =============================================
   IMPRESSUM
   ============================================= */
#impressum {
  background: rgba(5, 1, 27, 0.5);
  border-top: 1px solid var(--card-border);
}

#impressum .section-inner {
  max-width: 800px;
}

#impressum h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

#impressum h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

#impressum p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =============================================
   FAQ
   ============================================= */
#faq .section-inner {
  text-align: center;
  max-width: 780px;
}

.faq-subtitle {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0.5rem auto 4.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(219, 177, 85, 0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--card-border);
  margin-top: 0;
}

/* =============================================
   KUNDENLIEBE / TESTIMONIALS
   ============================================= */
#kundenliebe {
  background: radial-gradient(ellipse at 50% 50%, rgba(45, 13, 103, 0.2), #05011b 70%);
}

#kundenliebe .section-inner {
  text-align: center;
}

#kundenliebe h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
}

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

.testimonial-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 177, 85, 0.35);
}

.testimonial-quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: var(--font-serif);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-role {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: rgba(5, 1, 27, 0.95);
  border-top: 1px solid var(--card-border);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
}

.footer-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-divider {
  margin: 1.5rem auto;
}

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

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(240, 237, 230, 0.35);
}

.footer-powered {
  font-size: 0.7rem;
  color: rgba(240, 237, 230, 0.2);
  margin-top: 0.25rem;
}
.footer-powered a {
  color: inherit;
  text-decoration: none;
}
.footer-powered a:hover {
  color: rgba(240, 237, 230, 0.45);
}