@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&display=swap');

:root {
  --color-brand-black: #080808;
  --color-brand-card: #121212;
  --color-brand-card-hover: #181818;
  --color-brand-graphite: #1c1c1c;
  --color-brand-red: #B11226;
  --color-brand-red-hover: #cf152e;
  --color-brand-gold: #D6A84B;
  --color-brand-gold-glow: rgba(214, 168, 75, 0.4);
  --color-text-main: #f5f5f5;
  --color-text-muted: #9e9e9e;
  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-brand-black);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--color-brand-black);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* World Map Background overlay */
.world-map-overlay {
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(177, 18, 38, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(214, 168, 75, 0.05) 0%, transparent 40%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-gold);
}

/* Selection */
::selection {
  background: var(--color-brand-red);
  color: #ffffff;
}

/* Glowing Cursor on Desktop */
#custom-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--color-brand-gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 0 10px rgba(214, 168, 75, 0.3);
}

#custom-cursor-glow.active {
  width: 46px;
  height: 46px;
  background-color: rgba(214, 168, 75, 0.15);
  box-shadow: 0 0 20px rgba(214, 168, 75, 0.5);
}

@media (hover: none) or (max-width: 1024px) {
  #custom-cursor-glow {
    display: none !important;
  }
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem 0;
  background: transparent;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-badge {
  position: relative;
  width: 44px;
  height: 44px;
  background-color: var(--color-brand-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 75, 0.3);
  box-shadow: 0 4px 15px rgba(177, 18, 38, 0.3);
  transition: transform 0.3s ease;
}

.brand-logo-link:hover .brand-badge {
  transform: scale(1.05);
}

.brand-badge span {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-name .red-accent {
  color: var(--color-brand-red);
  font-family: var(--font-sans);
  font-weight: 800;
}

.brand-tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(214, 168, 75, 0.15);
  color: var(--color-brand-gold);
  padding: 0.15rem 0.4rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-weight: 600;
  border: 1px solid rgba(214, 168, 75, 0.3);
}

.brand-subtitle {
  font-size: 0.625rem;
  color: #8a8a8a;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d1d5db;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--color-brand-red);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--color-brand-red);
}

/* Header Buttons */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--color-brand-red);
  color: #ffffff;
  border: 1px solid rgba(214, 168, 75, 0.35);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(177, 18, 38, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: var(--color-brand-red-hover);
  box-shadow: 0 6px 20px rgba(177, 18, 38, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  color: #e5e5e5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: var(--color-brand-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem 2rem;
  z-index: 49;
  backdrop-filter: blur(16px);
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d1d5db;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-brand-gold);
  background: rgba(177, 18, 38, 0.12);
  border-left: 3px solid var(--color-brand-gold);
}

/* Floating SVG Motifs */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-4deg); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.1); }
}

.animate-float-1 { animation: floatSlow 8s ease-in-out infinite; }
.animate-float-2 { animation: floatReverse 10s ease-in-out infinite; }
.animate-pulse-soft { animation: pulseSoft 12s ease-in-out infinite; }

/* Section Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(177, 18, 38, 0.12);
  border: 1px solid rgba(177, 18, 38, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff99a8;
  margin-bottom: 1rem;
}

.badge-pill-gold {
  background: rgba(214, 168, 75, 0.12);
  border-color: rgba(214, 168, 75, 0.35);
  color: var(--color-brand-gold);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-brand-red);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot-gold {
  background-color: var(--color-brand-gold);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3.5rem;
  }
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 4rem;
  }
}

.hero-heading .italic {
  font-style: italic;
}

.hero-heading .red-accent {
  font-weight: 800;
  color: var(--color-brand-red);
}

.hero-desc {
  font-size: 0.95rem;
  color: #c4c4c4;
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 0.78rem;
  color: var(--color-brand-gold);
  font-family: var(--font-mono);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 2rem;
}

/* Card components */
.card-glass {
  background: rgba(24, 24, 24, 0.45);
  border: 1px solid var(--color-border-subtle);
  border-radius: 1rem;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.card-glass:hover {
  border-color: rgba(177, 18, 38, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(177, 18, 38, 0.1);
  transform: translateY(-2px);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #a3a3a3;
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  padding: 0.7rem 1rem;
  font-size: 0.8125rem;
  color: #ffffff;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-brand-gold);
  box-shadow: 0 0 10px rgba(214, 168, 75, 0.25);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #666;
}

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

.form-select option {
  background-color: #1a1a1a;
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: var(--color-brand-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 4rem;
  padding-bottom: 3rem;
  font-size: 0.85rem;
  color: #9e9e9e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-heading {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}

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

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link .bullet {
  color: var(--color-brand-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: #666;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Floating Audio Player Dock */
#audio-player-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(18, 18, 18, 0.96);
  border-top: 1px solid rgba(177, 18, 38, 0.4);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#audio-player-dock.active {
  transform: translateY(0);
}

.audio-dock-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .audio-dock-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.audio-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .audio-meta {
    width: 28%;
  }
}

.audio-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  position: relative;
}

.audio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-meta-text {
  min-width: 0;
}

.audio-title {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-speaker {
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-speaker .gold {
  color: var(--color-brand-gold);
}

.audio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
}

.audio-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-btn {
  background: transparent;
  border: none;
  color: #a3a3a3;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.audio-btn:hover {
  color: #fff;
}

.audio-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-brand-red);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(177, 18, 38, 0.4);
  transition: all 0.2s ease;
}

.audio-play-btn:hover {
  background: var(--color-brand-red-hover);
  transform: scale(1.06);
}

.audio-speed-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-brand-gold);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
}

.audio-scrubber-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.audio-time {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #888;
  width: 40px;
}

.audio-time.end {
  text-align: right;
}

.audio-slider {
  flex: 1;
  height: 4px;
  background: #2b2b2b;
  border-radius: 4px;
  outline: none;
  accent-color: var(--color-brand-red);
  cursor: pointer;
}

.audio-extra {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 25%;
}

@media (min-width: 1024px) {
  .audio-extra {
    display: flex;
  }
}

.volume-slider {
  width: 70px;
  height: 4px;
  accent-color: var(--color-brand-gold);
  cursor: pointer;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  animation: modalPop 0.25s ease-out;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a3a3a3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--color-brand-red);
  color: #fff;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 580px;
  margin: 0 auto;
  z-index: 80;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(214, 168, 75, 0.35);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

#cookie-banner.show {
  display: flex;
}

/* Alerts and Form Notification Boxes */
.alert-success {
  background: rgba(0, 199, 88, 0.12);
  border: 1px solid rgba(0, 199, 88, 0.35);
  color: #4ade80;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
  line-height: 1.6;
  box-shadow: 0 10px 30px rgba(0, 199, 88, 0.08);
  animation: fadeIn 0.4s ease-out;
}

.alert-error {
  background: rgba(177, 18, 38, 0.15);
  border: 1px solid rgba(177, 18, 38, 0.4);
  color: #ff99a8;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 0.75rem;
  animation: fadeIn 0.4s ease-out;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

