/* =============================================
   DJ MIKEONZ — style.css
   To change the color scheme, edit the :root
   variables below — no other changes needed.
   ============================================= */

:root {
  --bg-primary:      #0a0a0a;
  --bg-secondary:    #111111;
  --bg-card:         #161616;
  --accent-gold:     #c9a84c;
  --accent-gold-dim: rgba(201, 168, 76, 0.12);
  --accent-gold-border: rgba(201, 168, 76, 0.3);
  --text-primary:    #f5f5f5;
  --text-secondary:  #a0a0a0;
  --text-muted:      #555555;
  --section-padding: clamp(70px, 10vw, 130px);
  --container-width: 1160px;
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Inter', system-ui, sans-serif;
  --radius:          8px;
  --transition:      0.25s ease;
}

/* ============ RESET & BASE ============ */

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* ============ LAYOUT HELPERS ============ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
}

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

.section-dark {
  background-color: var(--bg-secondary);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 20px auto 0;
  opacity: 0.7;
}

/* ============ BUTTONS ============ */

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-gold);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: #dbb95a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold-dim);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ============ SCROLL ANIMATIONS ============ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.specialty-card:nth-child(2) { transition-delay: 0.1s; }
.specialty-card:nth-child(3) { transition-delay: 0.2s; }
.specialty-card:nth-child(4) { transition-delay: 0.3s; }
.video-card:nth-child(2)     { transition-delay: 0.1s; }
.video-card:nth-child(3)     { transition-delay: 0.2s; }

/* ============ NAVBAR ============ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 22px !important;
  background: transparent;
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius);
  color: var(--accent-gold) !important;
  transition: background var(--transition), border-color var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-gold-dim) !important;
  border-color: var(--accent-gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */

#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 60%, #1e1408 0%, #0a0a0a 65%);
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* subtle noise texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

#hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

#hero h1::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--accent-gold);
  animation: line-grow 1.4s ease forwards 0.8s;
  transform-origin: center;
  opacity: 0;
}

@keyframes line-grow {
  from { width: 0; opacity: 0; transform: translateX(-50%); }
  to   { width: 80px; opacity: 0.7; transform: translateX(-50%); }
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-top: 36px;
  margin-bottom: 44px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent-gold));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 0.8; transform: scaleY(1); transform-origin: top; }
}

/* ============ ABOUT ============ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.photo-placeholder {
  width: min(240px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  border: 1px solid var(--accent-gold-border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-initials {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 300;
  color: var(--accent-gold);
  opacity: 0.4;
  user-select: none;
}

/* When a real <img> is placed inside .photo-placeholder */
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-bio {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.specialties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.specialty-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  transition: background var(--transition);
}

.specialty-card:hover {
  background: #1c1c1c;
}

.specialty-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.specialty-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.specialty-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============ VIDEOS ============ */

.videos-instagram {
  text-align: center;
  padding: 60px 20px;
}

.videos-instagram-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.video-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

/* ============ SOCIAL ============ */

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 48px;
}

.social-img-placeholder {
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: opacity var(--transition);
  /* Replace with: background-image: url('your-screenshot.jpg'); background-size: cover; */
}

.social-img-placeholder:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  background: #1c1c1c;
  transform: translateY(-2px);
}

.social-btn.instagram:hover { color: #e1306c; border-color: #e1306c40; }
.social-btn.tiktok:hover    { color: #69c9d0; border-color: #69c9d040; }
.social-btn.facebook:hover  { color: #1877f2; border-color: #1877f240; }
.social-btn.spotify:hover   { color: #1ed760; border-color: #1ed76040; }
.social-btn.youtube:hover      { color: #ff0000; border-color: #ff000040; }
.social-btn.soundcloud:hover   { color: #ff5500; border-color: #ff550040; }

/* ============ REVIEWS ============ */

.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold-border) transparent;
}

.reviews-carousel::-webkit-scrollbar {
  height: 4px;
}

.reviews-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-carousel::-webkit-scrollbar-thumb {
  background: var(--accent-gold-border);
  border-radius: 2px;
}

.review-card {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold-border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--accent-gold);
  opacity: 0.5;
  user-select: none;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.75;
  flex: 1;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 10px;
}

.review-badge::before {
  content: 'G';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============ FAQ ============ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent-gold-border);
}

.faq-question {
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============ BOOKING FORM ============ */

.booking-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 52px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.form-row .form-group {
  margin-bottom: 0;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.required {
  color: var(--accent-gold);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input[type="date"] {
  color-scheme: dark;
}

select {
  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 d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-submit {
  margin-top: 8px;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.radio-group--inline {
  flex-direction: row;
  gap: 24px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--bg-secondary);
  transition: border-color var(--transition), background var(--transition);
}

.radio-option:hover {
  border-color: var(--accent-gold-border);
  background: var(--accent-gold-dim);
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--accent-gold);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  box-shadow: none;
}

.radio-option input[type="radio"]:focus {
  box-shadow: none;
  border: none;
}

.radio-option:has(input:checked) {
  border-color: var(--accent-gold);
  background: var(--accent-gold-dim);
  color: var(--text-primary);
}

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

.form-success {
  background: rgba(46, 160, 67, 0.12);
  border: 1px solid rgba(46, 160, 67, 0.3);
  color: #5dbb6a;
}

.form-error {
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  color: #e57373;
}

/* ============ FOOTER ============ */

#footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0 36px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold-border);
  background: var(--accent-gold-dim);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============ RESPONSIVE — TABLET (640px+) ============ */

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .specialties {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ RESPONSIVE — DESKTOP (1024px+) ============ */

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: start;
  }

  .about-photo {
    justify-content: flex-start;
    position: sticky;
    top: 100px;
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
}

/* ============ MOBILE NAV DRAWER ============ */

@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    background: #0d0d0d;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 80px 36px;
    border-left: 1px solid rgba(255,255,255,0.06);
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }

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

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    border: 1px solid var(--accent-gold-border) !important;
    padding: 12px 0 !important;
  }
}
