/* =============================================
   FREEDOM SPA – CUSTOM STYLESHEET
   Color Palette: #000000 (Black) | #D4AF37 (Gold)
   Fonts: Cormorant Garamond (headings) + Raleway (body)
============================================= */

/* ---- ROOT VARIABLES ---- */
:root {
  --black: #000000;
  --black-soft: #0d0d0d;
  --black-card: #111111;
  --black-light: #1a1a1a;
  --gold: #D4AF37;
  --gold-hover: #e8c94a;
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.35);
  --white: #ffffff;
  --text-muted-light: #b0a080;
  --text-light: #e0d5b5;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.18);
  --section-pad: 90px 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1.25;
}

p { color: #ccbf9a; font-weight: 400; }

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

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

/* ---- UTILITY CLASSES ---- */
.gold-text { color: var(--gold); }

.section-padding { padding: var(--section-pad); }

.section-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
  background: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #b0a080;
  max-width: 600px;
  margin: 0 auto;
}

.section-text {
  font-size: 1rem;
  color: #b0a080;
  margin-bottom: 1rem;
  line-height: 1.85;
}

/* ---- BUTTONS ---- */
.btn-gold {
  background: var(--gold);
  color: var(--black) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--black) !important;
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #25D366;
  border-radius: var(--radius);
  padding: 12px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* =============================================
   STICKY HEADER
============================================= */
#mainHeader {
  background: rgba(0, 0, 0, 0.97);
  border-bottom: 1px solid var(--gold-border);
  z-index: 1050;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

#mainHeader.scrolled {
  background: rgba(0, 0, 0, 1);
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.15);
}

.navbar { padding: 16px 0; }

.navbar-brand { gap: 8px; }

.logo-icon { color: var(--gold); font-size: 1.6rem; line-height: 1; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.navbar-nav .nav-link {
  color: #d0c5a0 !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after { width: calc(100% - 28px); }

.navbar-toggler {
  border: 1px solid var(--gold-border);
  padding: 6px 10px;
  color: var(--gold);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.70) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 16px 100px;
}

.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.2s ease forwards;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--white);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.4s ease forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d0c5a0;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.6s ease forwards;
}

.hero-content .d-flex {
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s ease forwards;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}
.scroll-down-indicator a {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.75;
}
.scroll-down-indicator a:hover { opacity: 1; }

/* =============================================
   MARQUEE
============================================= */
.marquee-section {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.marquee-wrapper { width: 100%; overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-track span i { font-size: 0.9rem; }

/* =============================================
   ABOUT SECTION
============================================= */
.about-section { background: var(--black-soft); }

.about-img-wrapper {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
}

.about-main-img {
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-small-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid var(--black-soft);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.badge-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.about-feature-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  height: 100%;
  transition: var(--transition);
}
.about-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.about-feature-card h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-feature-card p {
  font-size: 0.8rem;
  color: #8a7d5a;
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   STATS SECTION
============================================= */
.stats-section {
  background: var(--gold);
  padding: 60px 0;
}

.stat-item { padding: 10px; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin: 0;
}

/* =============================================
   THERAPIES SECTION
============================================= */
.therapies-section { background: var(--black); }

.therapy-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.therapy-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.therapy-card-featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 5;
}

.therapy-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.therapy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.therapy-card:hover .therapy-card-img img { transform: scale(1.06); }

.therapy-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.therapy-card:hover .therapy-card-overlay { opacity: 1; }

.therapy-card-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.therapy-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.therapy-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.therapy-text {
  font-size: 0.88rem;
  color: #8a7d5a;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.therapy-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding-top: 14px;
}
.therapy-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #b0a080;
  padding: 4px 0;
  font-weight: 500;
}
.therapy-features li i { color: var(--gold); flex-shrink: 0; }

.cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #b0a080;
  margin-bottom: 1.25rem;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section { background: var(--black-soft); }

.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 16px;
}

.contact-info-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: #8a7d5a;
  margin-bottom: 4px;
  line-height: 1.65;
}
.contact-info-card a {
  color: #b0a080;
  font-weight: 500;
}
.contact-info-card a:hover { color: var(--gold); }

.contact-form-wrapper {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-heading {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.custom-input {
  background: var(--black-light) !important;
  border: 1px solid var(--gold-border) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  padding: 12px 16px !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
}
.custom-input::placeholder { color: #5a5040 !important; }
.custom-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  background: var(--black) !important;
  outline: none !important;
}
.custom-input option { background: var(--black-card); color: var(--white); }

.form-success {
  text-align: center;
  padding: 32px;
}
.form-success i {
  font-size: 3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

/* =============================================
   FOOTER
============================================= */
.footer-section {
  background: #080808;
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #8d8374;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: #8d8374;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #8d8374;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-list a {
  color: #8d8374;
  font-weight: 500;
}
.footer-contact-list a:hover { color: var(--gold); }

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #3a3020;
  margin: 0;
  letter-spacing: 0.08em;
}

/* =============================================
   STICKY BOTTOM BAR
============================================= */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  border-top: 1px solid var(--gold-border);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none !important;
}

.sticky-whatsapp {
  background: var(--black);
  color: #25D366 !important;
  border-right: 1px solid var(--gold-border);
}
.sticky-whatsapp:hover {
  background: #25D366;
  color: var(--white) !important;
}

.sticky-booknow {
  background: var(--gold);
  color: var(--black) !important;
}
.sticky-booknow:hover {
  background: var(--gold-hover);
  color: var(--black) !important;
}

.sticky-btn i { font-size: 1.1rem; }

/* Safe area for sticky bar on iOS */
body { padding-bottom: 60px; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SCROLL ANIMATION (AOS-lite via JS)
============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE – TABLET (768px)
============================================= */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 16px 0;
    gap: 4px;
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-collapse {
    background: rgba(0,0,0,0.98);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    margin-top: 10px;
    padding: 8px 16px;
  }

  .about-small-img { display: none; }
  .about-main-img { height: 380px; }
  .about-badge { left: 0; }
  .about-img-wrapper { padding-right: 0; padding-bottom: 0; }

  .contact-form-wrapper { padding: 28px 20px; }

  :root { --section-pad: 70px 0; }
}

/* =============================================
   RESPONSIVE – MOBILE (575px)
============================================= */
@media (max-width: 575.98px) {
  :root { --section-pad: 55px 0; }

  .hero-title { font-size: 3.2rem; }
  .hero-content { padding: 100px 16px 80px; }

  .about-main-img { height: 280px; }
  .about-badge { position: relative; left: auto; top: auto; display: inline-flex; flex-direction: row; align-items: center; gap: 10px; margin-top: 16px; }
  .badge-number { font-size: 1.5rem; }

  .therapy-card-img { height: 180px; }

  .contact-form-wrapper { padding: 22px 16px; }

  .sticky-btn span { font-size: 0.7rem; }
  .sticky-btn i { font-size: 1rem; }

  .stats-section { padding: 45px 0; }
  .stat-number { font-size: 2rem; }
}

/* =============================================
   SCROLLBAR STYLING
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-hover); }

/* =============================================
   SELECTION
============================================= */
::selection { background: rgba(212,175,55,0.35); color: var(--white); }
