:root {
  --bg-main: #050712;
  --bg-alt: #0c0f1f;
  --bg-soft: #111425;
  --bg-highlight: linear-gradient(135deg, #6962ff, #c28cff);
  --bg-card: rgba(13, 16, 31, 0.95);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --accent: #f3cf7a;
  --accent-soft: rgba(243, 207, 122, 0.12);
  --text-main: #f5f3ff;
  --text-muted: #a7a7c6;
  --text-soft: #8081a6;
  --danger: #ff647c;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 40px rgba(194, 140, 255, 0.6);
  --container-width: min(1120px, 100% - 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #181b3b 0, #050712 48%, #02030a 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container-width);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  padding: 5rem 0;
  background: radial-gradient(circle at top, #151733 0, #050712 65%);
}

.section-highlight {
  padding: 5rem 0;
  background: radial-gradient(circle at top, #2a2348 0, #050712 70%);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-header h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.21em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 18, 0.97),
    rgba(5, 7, 18, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 30%;
  background: radial-gradient(circle at 20% 0%, #f3cf7a, #c28cff 45%, #181b3b 100%);
  display: grid;
  place-items: center;
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #070211;
  box-shadow: 0 0 25px rgba(243, 207, 122, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 500;
  font-size: 0.98rem;
}

.brand-tagline {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.6rem;
  font-size: 0.86rem;
}

.nav-links a {
  color: var(--text-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 18, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-open .nav-links {
  max-height: 320px;
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.75rem 0 4.5rem 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% -10%, rgba(243, 207, 122, 0.2), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(194, 140, 255, 0.35), transparent 60%),
    radial-gradient(circle at 50% 110%, rgba(74, 152, 255, 0.2), transparent 55%);
  opacity: 0.85;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(8, 9, 26, 0.1), #030410 70%);
  z-index: -2;
}

.hero-inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  }
}

.hero-copy h1 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 4vw, 2.9rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.9rem 0;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero-subtitle .highlight {
  color: #ffffff;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 1.1rem 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-meta span {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 18, 0.6);
}

.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.65;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(243, 207, 122, 0.6), transparent 60%);
  top: -16%;
  right: 3%;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(194, 140, 255, 0.7), transparent 62%);
  bottom: -12%;
  left: 5%;
}

.reading-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(243, 207, 122, 0.16), rgba(194, 140, 255, 0.04))
    border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(13px);
  background-color: rgba(5, 7, 18, 0.92);
}

.reading-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.reading-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.reading-sign {
  font-size: 0.78rem;
  padding: 0.23rem 0.7rem;
  border-radius: 999px;
  background: rgba(243, 207, 122, 0.1);
  border: 1px solid rgba(243, 207, 122, 0.5);
}

.reading-body p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 0.7rem;
}

.reading-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-main);
}

.reading-body li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.reading-body li::before {
  content: "✶";
  font-size: 0.7rem;
  color: var(--accent);
}

.reading-cta {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--accent);
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(243, 207, 122, 0.5);
}

.hero-photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tarot-photo {
  position: absolute;
  width: 120px;
  height: 190px;
  border-radius: 14px;
  border: 1px solid rgba(243, 207, 122, 0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.65);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  mix-blend-mode: screen;
}
.tarot-1 {
  right: -10px;
  top: 10%;
  transform: rotate(8deg);
  background:
    radial-gradient(circle at 30% 20%, rgba(243, 207, 122, 0.18), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(194, 140, 255, 0.22), transparent 45%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, #0e1122, #1a1230);
}
.tarot-2 {
  left: -6px;
  bottom: 8%;
  transform: rotate(-10deg);
  background:
    radial-gradient(circle at 70% 15%, rgba(74, 152, 255, 0.18), transparent 42%),
    radial-gradient(circle at 25% 80%, rgba(243, 207, 122, 0.16), transparent 40%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 5px, transparent 5px 10px),
    linear-gradient(135deg, #10142a, #221333);
}
.tarot-3 {
  right: 30%;
  bottom: -6%;
  transform: rotate(4deg);
  background:
    radial-gradient(circle at 40% 30%, rgba(194, 140, 255, 0.22), transparent 48%),
    radial-gradient(circle at 80% 70%, rgba(243, 207, 122, 0.14), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 4px, transparent 4px 8px),
    linear-gradient(135deg, #0c0f1f, #1a1433);
}

/* Trust */
.trust {
  padding: 1.6rem 0 0.4rem 0;
}

.trust-inner {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.trust-badges span {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 243, 255, 0.12);
  background: rgba(5, 7, 18, 0.7);
  font-size: 0.76rem;
}

/* Cards & Grid */
.card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.8);
}

.grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .card {
    border-radius: 18px;
  }
}

/* Services */
.service-card h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  margin: 0 0 0.3rem 0;
  font-size: 1.25rem;
}

.service-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem 0;
  color: var(--text-main);
  font-size: 0.86rem;
}

.service-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.service-meta span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 18, 0.85);
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }
}

.about-content h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  margin: 0 0 0.8rem 0;
}

.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-content p + p {
  margin-top: 0.6rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.about-highlights span {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 18, 0.75);
}

.about-card h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
}

.about-card li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.about-card li::before {
  content: "☉";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: var(--accent);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Process */
.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(8, 9, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(243, 207, 122, 0.7);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem 0;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card blockquote {
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-card figcaption {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Booking */
.booking-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 880px) {
  .booking-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.booking-copy h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.05rem);
  margin: 0 0 0.8rem 0;
}

.booking-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.booking-highlights {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0 0;
  font-size: 0.88rem;
  color: var(--text-main);
}

.booking-highlights li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.booking-highlights li::before {
  content: "✺";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.78rem;
  color: var(--accent);
}

.booking-card {
  background: rgba(5, 7, 18, 0.96);
}

.live-tarot-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 880px) {
  .live-tarot-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}
.live-tarot-sub {
  color: var(--text-muted);
  max-width: 560px;
}
.live-tarot-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
}
.live-tarot-stage {
  display: grid;
  place-items: center;
  min-height: 280px;
}
.tarot-card {
  width: 220px;
  height: 360px;
  perspective: 1000px;
}
.tarot-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.tarot-card.flipped .tarot-card-inner {
  transform: rotateY(180deg);
}
.tarot-card-front,
.tarot-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  border: 1px solid rgba(243, 207, 122, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.75);
  overflow: hidden;
}
.tarot-card-front {
  background: rgba(5,7,18,0.96);
  display: grid;
  place-items: center;
}
.tarot-back {
  width: 90%;
  height: 90%;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(243,207,122,0.15), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(194,140,255,0.2), transparent 45%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 4px, transparent 4px 8px);
  display: grid;
  place-items: center;
}
.tarot-card-back {
  transform: rotateY(180deg);
  background: rgba(5,7,18,0.98);
  display: grid;
  place-items: center;
}
.tarot-face {
  padding: 1rem;
  text-align: center;
}
.tarot-title {
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.tarot-meaning {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Blog page enhancements */
.prose {
  line-height: 1.7;
  color: var(--text-main);
}
.prose h1, .prose h2, .prose h3 {
  font-family: "Marcellus", serif;
  margin: 0.9rem 0 0.5rem 0;
}
.prose p {
  margin: 0.6rem 0;
  color: var(--text-muted);
}
.prose img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  background: rgba(5, 7, 18, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.75rem;
  color: var(--text-main);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(167, 167, 198, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(243, 207, 122, 0.65);
  box-shadow: 0 0 0 1px rgba(243, 207, 122, 0.35);
  background: rgba(5, 7, 18, 0.96);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0;
}
.status-success {
  color: #86efac;
}
.status-error {
  color: var(--danger);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 18, 0.9);
  padding: 0.75rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.5rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, transform 0.12s ease;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn-primary {
  background-image: var(--bg-highlight);
  color: #120815;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 38px rgba(194, 140, 255, 0.85);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(243, 207, 122, 0.6);
  color: var(--accent);
  background: rgba(5, 7, 18, 0.7);
}

.btn-outline:hover {
  background: rgba(243, 207, 122, 0.12);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 18, 0.65);
  color: #ffffff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 2.3rem 0;
  background: radial-gradient(circle at top, #151733 0, #050712 65%);
}

.footer-inner {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1.3fr;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-title {
  margin: 0 0 0.25rem 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
}

.footer-heading {
  font-weight: 500;
  margin: 0 0 0.25rem 0;
}

.footer-column a {
  color: var(--text-soft);
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-meta {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-meta p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-note {
  max-width: 520px;
}

/* Responsive nav */
@media (max-width: 799px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.35rem;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 7, 18, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.7rem;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.85);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.16s ease;
    width: min(230px, 80vw);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.42rem 0.5rem;
    border-radius: 999px;
  }

  .nav-links .btn-sm {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .site-header .header-inner {
    position: relative;
  }
}

/* Smaller screens */
@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-meta {
    gap: 0.5rem;
  }

  .hero-meta span {
    font-size: 0.74rem;
  }

  .container {
    width: min(100% - 2.4rem, 960px);
  }

  .section,
  .section-alt,
  .section-highlight {
    padding: 3.5rem 0;
  }
}

