/*
Theme Name: Celesia Luxury Real Estate
Theme URI: https://celesiateam.com
Author: The Charles Celesia Team
Author URI: https://celesiateam.com
Description: A luxury real estate theme for The Charles Celesia Team — Your Friend in Real Estate
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: celesia
Tags: real-estate, luxury, dark, minimal, elegant
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --color-bg:         #1a1a1a;
  --color-bg-soft:    #212121;
  --color-bg-card:    #242424;
  --color-bg-hover:   #2c2c2c;
  --color-gold:       #c9a84c;
  --color-gold-light: #dfc278;
  --color-gold-dark:  #a8873a;
  --color-white:      #ffffff;
  --color-off-white:  #f0ece4;
  --color-muted:      #888888;
  --color-border:     rgba(201,168,76,0.2);
  --color-border-soft:rgba(255,255,255,0.08);

  --font-display:     'Cormorant Garamond', serif;
  --font-body:        'Jost', sans-serif;

  --transition:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:        1400px;
  --gutter:           clamp(1.5rem, 4vw, 4rem);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: #c0b9ad; }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

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

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

.section { padding: clamp(4rem, 8vw, 9rem) 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: 0;
}

.btn span { position: relative; z-index: 1; }

.btn:hover { color: var(--color-bg); }
.btn:hover::before { transform: translateX(0); }

.btn-solid {
  background: var(--color-gold);
  color: var(--color-bg);
}
.btn-solid::before { background: var(--color-gold-light); }
.btn-solid:hover { color: var(--color-bg); }

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-slow), padding var(--transition);
}

#site-header.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--color-border);
}

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

.site-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-logo .logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.primary-nav a:hover,
.primary-nav a:hover::after { color: var(--color-white); width: 100%; }

.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  transition: background var(--transition), color var(--transition) !important;
}

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

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

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

.menu-toggle span {
  display: block;
  width: 26px; height: 1px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.95) 0%,
    rgba(26,26,26,0.5) 45%,
    rgba(26,26,26,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 6rem);
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.6s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-label { margin-bottom: 1.2rem; }

.hero-content h1 {
  max-width: 780px;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.7);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.2s;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* =============================================
   STATS ROW
   ============================================= */
#stats {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--color-border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =============================================
   FEATURED LISTINGS
   ============================================= */
#featured-listings { background: var(--color-bg); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-header-left .label { margin-bottom: 0.8rem; }

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

.property-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.property-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.property-card:hover .property-card-image img {
  transform: scale(1.06);
}

.property-status {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  padding: 0.3rem 0.8rem;
  z-index: 1;
}

.property-card-body {
  padding: 1.6rem 1.8rem 1.8rem;
  border: 1px solid var(--color-border-soft);
  border-top: none;
  transition: border-color var(--transition);
}

.property-card:hover .property-card-body {
  border-color: var(--color-border);
}

.property-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.property-address {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.property-city {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.property-details {
  display: flex;
  gap: 1.2rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-soft);
}

.property-details span { display: flex; align-items: center; gap: 0.35rem; }

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { background: var(--color-bg-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%; height: 580px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--color-border);
  z-index: -1;
}

.about-text .label { margin-bottom: 1.2rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.85; }
.about-text .btn { margin-top: 1.5rem; }

/* =============================================
   PRESS LOGOS
   ============================================= */
#press {
  background: var(--color-bg);
  padding: 4rem 0;
  border-top: 1px solid var(--color-border-soft);
}

.press-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}

.press-logo {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.press-logo:hover { color: rgba(255,255,255,0.6); }

a.press-logo { cursor: pointer; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--color-border-soft);
  margin-bottom: 2.5rem;
}

.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.footer-brand .logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
  color: var(--color-muted);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-contact-item .contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.15rem;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--color-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

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

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 160px var(--gutter) 80px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.page-hero .label { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 0; }

/* =============================================
   PROPERTIES PAGE
   ============================================= */
#properties-page { background: var(--color-bg); }

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-soft);
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-soft);
  color: var(--color-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,168,76,0.05);
}

.properties-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
#contact-page { background: var(--color-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.contact-info .label { margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
}

.contact-detail .detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: var(--color-white);
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--color-gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-family: var(--font-body);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft);
  padding: 0.9rem 1.2rem;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
}

.form-group textarea { min-height: 150px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-notice {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  padding: 1.2rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-top: 1rem;
}

/* =============================================
   SINGLE PROPERTY
   ============================================= */
.property-single-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.property-single-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.property-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
}

.property-single-hero-content {
  position: absolute;
  bottom: 3rem;
  left: var(--gutter);
  right: var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vh, 2.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  text-align: center;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .listings-grid,
  .properties-full-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item::after { display: none; }
  .listings-grid,
  .properties-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   NAV DROPDOWN (Properties submenu)
   ============================================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* Arrow indicator — overrides the underline ::after from .primary-nav a */
.nav-dropdown > a::after {
  content: '▾' !important;
  font-size: .6rem;
  color: var(--color-gold);
  position: static !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transition: transform var(--transition);
  opacity: 1 !important;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* The menu sits flush below the link — no gap.
   A ::before pseudo-element extends the hover area
   upward to bridge any subpixel gap between link and menu. */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  /* padding-top creates the visual gap while keeping hover connected */
  padding-top: 1rem;
  z-index: 200;
  transition: opacity .2s ease;
}

/* Invisible hover bridge fills the gap above the visible menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;   /* matches padding-top */
  background: transparent;
}

/* Inner wrapper gives the visible dark box */
.nav-dropdown-menu-inner {
  background: rgba(26,26,26,0.98);
  border-top: 1px solid var(--color-border);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.nav-dropdown-menu a {
  display: block;
  padding: .9rem 1.5rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid var(--color-border-soft);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  background: rgba(26,26,26,0.98);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }

.nav-dropdown-menu a:hover {
  color: var(--color-gold);
  background: rgba(201,168,76,.06);
}

.nav-dropdown-menu a::after { display: none !important; }
