/* ============================================
   voltdashjoy.cfd — STYLE.CSS
   Golden Oak Social Gaming Ltd.
   voltdashjoy.cfd
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --color-bg-deep: #061a14;
  --color-bg-moss: #0b2a21;
  --color-bg-shadow: #081c15;
  --color-gold: #d6b25e;
  --color-gold-amber: #c89b3c;
  --color-gold-relic: #f0e2b6;
  --color-text-primary: #f5f1e3;
  --color-text-secondary: #d8d2b8;
  --color-text-muted: #9c967c;
  --color-surface-glass: rgba(11, 42, 33, 0.55);
  --color-border-gold: rgba(214, 178, 94, 0.22);
  --color-border-gold-strong: rgba(214, 178, 94, 0.45);
  --radius-card: 20px;
  --radius-btn: 16px;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --transition-base: 0.3s ease;
  --shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 30px rgba(214, 178, 94, 0.12);
  --max-width: 1320px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-gold-relic);
}

ul {
  list-style: none;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }

em {
  font-style: italic;
  color: var(--color-gold);
}

p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- SECTION LABELS ---- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-amber) 100%);
  color: var(--color-bg-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(214, 178, 94, 0.28);
  color: var(--color-bg-deep);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-border-gold-strong);
}

.btn-outline:hover {
  background: rgba(214, 178, 94, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(214, 178, 94, 0.1);
  color: var(--color-gold-relic);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(6, 26, 20, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-gold);
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.site-header.scrolled {
  background: rgba(6, 26, 20, 0.88);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  font-size: 1.5rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

.logo-text em {
  color: var(--color-gold);
  font-style: normal;
}

/* NAV */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-relic));
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* MOBILE TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* MOBILE OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--color-bg-moss);
  border-left: 1px solid var(--color-border-gold);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-gold);
  transition: color var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

.mobile-nav-cta {
  margin-top: 24px;
  align-self: flex-start;
}

/* BODY OVERLAY BACKDROP */
.nav-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 20, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(200, 155, 60, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(11, 42, 33, 0.8) 0%, transparent 60%),
    linear-gradient(175deg, var(--color-bg-shadow) 0%, var(--color-bg-deep) 50%, var(--color-bg-moss) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-text-primary);
}

.hero-headline em {
  display: block;
  color: var(--color-gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-relic-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.relic-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(214, 178, 94, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-relic-image {
  width: 100%;
  border-radius: var(--radius-card);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(214, 178, 94, 0.08);
  border: 1px solid var(--color-border-gold);
  min-height: 400px;
  background: linear-gradient(160deg, var(--color-bg-moss), var(--color-bg-shadow));
  object-fit: cover;
}

.relic-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.relic-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-relic);
  opacity: 0;
  animation: particle-float 4s infinite;
}

.relic-particles span:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.relic-particles span:nth-child(2) { top: 60%; left: 70%; animation-delay: 1.2s; }
.relic-particles span:nth-child(3) { top: 40%; left: 20%; animation-delay: 2.4s; }
.relic-particles span:nth-child(4) { top: 80%; left: 50%; animation-delay: 0.8s; }

/* HERO PARTICLES */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(214, 178, 94, 0.4);
  animation: drift 8s infinite ease-in-out;
}

.particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 9s; }
.particle:nth-child(2) { top: 35%; left: 85%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(3) { top: 65%; left: 25%; animation-delay: 3s; animation-duration: 11s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 0.7s; animation-duration: 8s; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(6) { top: 25%; left: 60%; animation-delay: 4s; animation-duration: 6s; }
.particle:nth-child(7) { top: 70%; left: 40%; animation-delay: 1s; animation-duration: 12s; }
.particle:nth-child(8) { top: 10%; left: 45%; animation-delay: 3.5s; animation-duration: 9.5s; }

/* HERO SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scroll-pulse 2s infinite;
}

.scroll-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---- GAME SECTION ---- */
.game-section {
  padding: 120px 0;
  background: var(--color-bg-shadow);
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-amber), transparent);
  opacity: 0.3;
}

.game-shell {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-gold-strong);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-gold);
  max-width: 1100px;
  margin: 0 auto;
}

.game-shell-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(11, 42, 33, 0.8);
  border-bottom: 1px solid var(--color-border-gold);
}

.game-shell-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(214, 178, 94, 0.25);
  border: 1px solid var(--color-border-gold-strong);
}

.game-shell-title {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-left: 8px;
}

.game-root {
  width: 100%;
  min-height: 400px;
  background: var(--color-bg-deep);
  position: relative;
}

.game-root iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: none;
  border-radius: 0 0 18px 18px;
}

.game-legal-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FEATURES SECTION ---- */
.features-section {
  padding: 120px 0;
  background: var(--color-bg-deep);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  animation-delay: var(--delay, 0s);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft), 0 0 24px rgba(214, 178, 94, 0.1);
  border-color: var(--color-border-gold-strong);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-text-primary);
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- LORE SECTION ---- */
.lore-section {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--color-bg-moss) 0%, var(--color-bg-shadow) 100%);
  position: relative;
  overflow: hidden;
}

.lore-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(214, 178, 94, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.lore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lore-text h2 {
  margin-bottom: 24px;
}

.lore-text p {
  margin-bottom: 18px;
}

.lore-text .btn {
  margin-top: 16px;
}

.lore-image {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-soft);
  min-height: 340px;
  background: linear-gradient(160deg, var(--color-bg-moss), var(--color-bg-deep));
  object-fit: cover;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(175deg, var(--color-bg-shadow) 0%, var(--color-bg-deep) 100%);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
}

.page-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.page-title {
  margin-bottom: 12px;
}

.page-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ---- CONTENT SECTION ---- */
.content-section {
  padding: 100px 0;
  background: var(--color-bg-deep);
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 16px;
}

.content-image {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
  background: linear-gradient(160deg, var(--color-bg-moss), var(--color-bg-deep));
  object-fit: cover;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.about-disclaimer {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}

.about-disclaimer p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-card);
  padding: 40px 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(6, 26, 20, 0.6);
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold-amber);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.1);
}

.form-group select option {
  background: var(--color-bg-moss);
  color: var(--color-text-primary);
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

/* ---- LEGAL SECTION ---- */
.legal-section {
  padding: 80px 0 120px;
  background: var(--color-bg-deep);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border-gold);
}

.legal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.legal-block p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-block ul {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.legal-block ul li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-block a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(214, 178, 94, 0.3);
}

/* RESPONSIBLE GAMING CALLOUT */
.rg-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(214, 178, 94, 0.06);
  border: 1px solid var(--color-border-gold-strong);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.rg-callout-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.rg-callout p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.rg-callout strong {
  color: var(--color-gold-relic);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-bg-moss);
  border-top: 1px solid var(--color-border-gold);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer-company {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

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

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-gold);
  padding: 20px 0;
}

.copyright {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}
/* ENDFILE */