/* ==========================================================================
   DRIVEON — Luxury Car Rental Platform
   Core Stylesheet & Design Tokens
   Colors: Deep Black (#050505), Luxury Black (#0B0B0B), Champagne Gold (#C6A15B)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-deep: #050505;
  --bg-surface: #0B0B0B;
  --bg-elevated: #121212;
  --bg-card: rgba(18, 18, 18, 0.7);
  --bg-glass: rgba(11, 11, 11, 0.78);
  --bg-glass-strong: rgba(7, 7, 7, 0.92);

  --gold-primary: #C6A15B;
  --gold-light: #E5C985;
  --gold-pale: #F3E5C2;
  --gold-dark: #917033;
  --gold-glow: rgba(198, 161, 91, 0.28);
  --gold-glow-strong: rgba(198, 161, 91, 0.45);
  --gold-border: rgba(198, 161, 91, 0.24);
  --gold-border-bright: rgba(229, 201, 133, 0.5);

  --ivory: #F5F1E8;
  --ivory-muted: #D8D2C6;
  --text-muted: #8A8A8A;
  --text-dim: #555555;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Bodoni Moda', 'Playfair Display', serif;
  --font-serif-alt: 'Playfair Display', serif;
  --font-sans: 'Manrope', 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Layout */
  --container-max: 1480px;
  --container-pad: clamp(1.25rem, 4vw, 3.5rem);
  --header-height: 96px;
  --header-height-scrolled: 76px;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-cinematic: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation */
  --shadow-gold-sm: 0 4px 20px rgba(198, 161, 91, 0.15);
  --shadow-gold-lg: 0 10px 40px rgba(198, 161, 91, 0.25);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.8);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--ivory);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-deep);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

/* Global Selection & Scrollbar */
::selection {
  background: var(--gold-primary);
  color: var(--bg-deep);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 3px;
  border: 1px solid var(--gold-border);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.025rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.champagne-text {
  color: var(--gold-primary);
}

.editorial-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.editorial-sub::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--bg-deep);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 25px rgba(198, 161, 91, 0.28);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 161, 91, 0.45);
}

.btn-primary:hover::before {
  transform: translateX(200%);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--gold-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(198, 161, 91, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  border-color: var(--border-subtle);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: rgba(15, 15, 15, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon-circle:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
  border-color: var(--gold-primary);
  transform: scale(1.08);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ivory);
  text-transform: uppercase;
  line-height: 1;
}

.logo-main span {
  color: var(--gold-primary);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 4px;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-smooth);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-action-btn {
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  padding: 0.4rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-action-btn:hover {
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -2px;
  right: -6px;
  background: var(--gold-primary);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 10px var(--gold-glow);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger-line {
  height: 2px;
  background: var(--ivory);
  transition: all var(--transition-smooth);
}

.hamburger-line:nth-child(1) { width: 30px; }
.hamburger-line:nth-child(2) { width: 22px; background: var(--gold-primary); }
.hamburger-line:nth-child(3) { width: 28px; }

.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}
.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 28px;
}

/* Mobile Fullscreen Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-deep);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(6rem, 15vh, 8rem) clamp(2rem, 8vw, 6rem) clamp(3rem, 6vh, 4rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-item {
  overflow: hidden;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--ivory);
  text-transform: uppercase;
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out-expo), color 0.3s ease;
}

.mobile-menu-overlay.is-open .mobile-nav-link {
  transform: translateY(0);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-primary);
  padding-left: 1rem;
}

.mobile-menu-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.mobile-contact-info {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  box-shadow: 0 0 10px var(--gold-glow-strong);
}

/* ==========================================================================
   FLOATING SEARCH PANEL
   ========================================================================== */
.search-panel-wrapper {
  position: relative;
  z-index: 40;
  margin-top: -60px;
}

.search-box-card {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--gold-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  border-radius: var(--radius-sm);
  padding: 2.25rem 2.5rem;
}

.search-form-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 1.5rem;
  align-items: flex-end;
}

.form-group-luxury {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group-luxury label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.luxury-input,
.luxury-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.95rem 1.15rem;
  color: var(--ivory);
  font-size: 0.9rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  outline: none;
}

.luxury-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C6A15B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
  appearance: none;
}

.luxury-select option {
  background: #111111;
  color: var(--ivory);
}

.luxury-input:focus,
.luxury-select:focus {
  border-color: var(--gold-primary);
  background: rgba(198, 161, 91, 0.05);
  box-shadow: 0 0 15px rgba(198, 161, 91, 0.2);
}

/* ==========================================================================
   FLEET CAR CARDS (Dynamic Grid)
   ========================================================================== */
.car-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xs);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(198, 161, 91, 0.12);
}

.car-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #080808;
}

.car-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.car-card:hover .car-card-img {
  transform: scale(1.08);
}

.car-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  z-index: 2;
}

.car-card-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
}

.car-card-wishlist:hover,
.car-card-wishlist.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(198, 161, 91, 0.15);
  transform: scale(1.1);
}

.car-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.car-card-brand {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
}

.car-card-rating {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.car-card-rating i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.car-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.car-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spec-item i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.car-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  margin-top: 0.25rem;
}

.price-amount span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.car-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* ==========================================================================
   LUXURY MARQUEE
   ========================================================================== */
.marquee-container {
  overflow: hidden;
  padding: 2.25rem 0;
  background: #080808;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  transition: color var(--transition-fast);
}

.marquee-item:hover {
  color: var(--gold-light);
}

.marquee-diamond {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--gold-primary);
  display: inline-block;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LUXURY FOOTER
   ========================================================================== */
.site-footer {
  background: #040404;
  border-top: 1px solid var(--gold-border);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 80%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand p {
  margin: 1.5rem 0 2rem;
  max-width: 360px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input-wrap {
  position: relative;
  display: flex;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.15rem;
  padding-right: 3.5rem;
  color: var(--ivory);
  font-size: 0.88rem;
  border-radius: var(--radius-xs);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
}

.newsletter-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 3.2rem;
  background: var(--gold-primary);
  border: none;
  color: var(--bg-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.newsletter-submit:hover {
  background: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   PAGE HERO / HEADER BANNER (FOR SUBPAGES)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: clamp(10rem, 22vh, 14rem) 0 clamp(4rem, 10vh, 6rem);
  background-color: #080808;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(198, 161, 91, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.page-hero-desc {
  max-width: 620px;
  font-size: 1.15rem;
}
