/* ============================================
   Billionaire Kings Group — Premium Stylesheet
   ============================================ */

/* --- CSS Variables — Dark (default) --- */
:root {
  --color-gold: #c9a962;
  --color-gold-light: #e0c878;
  --color-gold-dark: #a68b4b;
  --color-rose-gold: #b76e79;
  --color-rose-gold-light: #d4a0a8;

  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-glass: rgba(26, 26, 26, 0.6);
  --bg-input: rgba(10, 10, 10, 0.6);
  --bg-header-scrolled: rgba(10, 10, 10, 0.95);
  --bg-dropdown: rgba(15, 15, 15, 0.98);
  --bg-mobile-nav: rgba(10, 10, 10, 0.98);
  --bg-feature: rgba(26, 26, 26, 0.5);
  --bg-overlay: rgba(0, 0, 0, 0.6);

  --text-primary: #f5f3ef;
  --text-heading: #ffffff;
  --text-muted: #b8b8b8;
  --text-subtle: #888888;
  --text-logo-accent: #ffffff;

  --gradient-section: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #0d0d0d 100%);
  --gradient-hero: linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.68) 100%);
  --gradient-gold: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));

  --border-gold: 1px solid rgba(201, 169, 98, 0.3);
  --border-subtle: 1px solid rgba(201, 169, 98, 0.15);
  --border-divider: rgba(255, 255, 255, 0.05);
  --glass-border: 1px solid rgba(201, 169, 98, 0.15);

  --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --hero-text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);

  --float-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  --float-right: max(1.25rem, env(safe-area-inset-right, 0px));
  --float-size: 52px;
  --float-gap: 0.75rem;

  /* Legacy aliases */
  --color-black: var(--bg-primary);
  --color-black-soft: var(--bg-secondary);
  --color-black-card: var(--bg-card);
  --color-white: var(--text-heading);
  --color-off-white: var(--text-primary);
  --color-gray-light: var(--text-muted);
  --color-gray: var(--text-subtle);
  --color-gray-dark: #444444;
  --gradient-dark: var(--gradient-section);
  --glass-bg: var(--bg-glass);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --header-height: 132px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color-scheme: dark;
}

/* --- Light Theme --- */
[data-theme="light"] {
  --bg-primary: #faf8f5;
  --bg-secondary: #f3efe8;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-input: rgba(255, 255, 255, 0.98);
  --bg-header-scrolled: rgba(250, 248, 245, 0.98);
  --bg-dropdown: rgba(255, 255, 255, 0.98);
  --bg-mobile-nav: rgba(250, 248, 245, 0.99);
  --bg-feature: rgba(255, 255, 255, 0.85);
  --bg-overlay: rgba(0, 0, 0, 0.4);

  /* Darker gold palette for WCAG contrast on light backgrounds */
  --color-gold: #7a6228;
  --color-gold-light: #967832;
  --color-gold-dark: #5c4a18;
  --color-rose-gold: #8f5059;
  --color-rose-gold-light: #a8626c;

  --text-primary: #1f1f1f;
  --text-heading: #0a0a0a;
  --text-muted: #454545;
  --text-subtle: #5c5c5c;
  --text-logo-accent: #0a0a0a;

  --gradient-section: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 50%, #f0ece4 100%);
  --gradient-hero: linear-gradient(to bottom, rgba(250,248,245,0.28) 0%, rgba(243,239,232,0.38) 45%, rgba(250,248,245,0.48) 100%);
  --gradient-gold: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));

  --border-gold: 1px solid rgba(122, 98, 40, 0.45);
  --border-subtle: 1px solid rgba(122, 98, 40, 0.25);
  --glass-border: 1px solid rgba(122, 98, 40, 0.22);

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 4px 24px rgba(122, 98, 40, 0.18);
  --hero-text-shadow: none;
  --border-divider: rgba(0, 0, 0, 0.08);

  color-scheme: light;
}

/* Light theme — header & navigation */
[data-theme="light"] .logo {
  text-shadow: none;
}

[data-theme="light"] .logo-line--secondary {
  color: var(--color-gold-dark);
}

[data-theme="light"] .nav-link {
  color: var(--text-primary);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: var(--color-gold-dark);
}

[data-theme="light"] .site-header:not(.scrolled) .nav-link {
  color: #1a1a1a;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .site-header:not(.scrolled) .nav-link:hover,
[data-theme="light"] .site-header:not(.scrolled) .nav-link.active {
  color: var(--color-gold-dark);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .site-header:not(.scrolled) .logo {
  color: var(--color-gold-dark);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .dropdown-menu a {
  color: var(--text-muted);
}

[data-theme="light"] .dropdown-menu a:hover,
[data-theme="light"] .dropdown-menu a.active {
  color: var(--color-gold-dark);
  background: rgba(122, 98, 40, 0.08);
}

/* Light theme — hero & page hero */
[data-theme="light"] .hero h1,
[data-theme="light"] .page-hero h1 {
  color: #0a0a0a;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .page-hero .breadcrumb {
  color: #2a2a2a;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .hero-badge {
  color: var(--color-gold-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-gold-dark);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-theme="light"] .hero-bg img {
  opacity: 1;
  filter: brightness(1.02) saturate(1.05);
}

[data-theme="light"] .page-hero .hero-bg img {
  opacity: 1;
  filter: brightness(0.88) saturate(0.95);
}

[data-theme="light"] .breadcrumb span {
  color: var(--text-subtle);
}

[data-theme="light"] .breadcrumb a {
  color: var(--color-gold-dark);
}

/* Light theme — content sections */
[data-theme="light"] .text-gold {
  color: var(--color-gold-dark);
}

[data-theme="light"] .stat-number {
  color: var(--color-gold-dark);
}

[data-theme="light"] .stat-label {
  color: var(--text-muted);
}

[data-theme="light"] .section-subtitle {
  color: var(--text-muted);
}

[data-theme="light"] .partnership-block h2 {
  color: var(--color-gold-dark);
}

[data-theme="light"] .footer-heading {
  color: var(--color-gold-dark);
}

[data-theme="light"] .footer-links a {
  color: var(--text-muted);
}

[data-theme="light"] .footer-links a:hover {
  color: var(--color-gold-dark);
}

[data-theme="light"] .venture-tag {
  color: var(--color-rose-gold);
  border-color: rgba(143, 80, 89, 0.5);
}

[data-theme="light"] .outline-button {
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

[data-theme="light"] .outline-button:hover {
  color: var(--color-gold-dark);
  background: rgba(122, 98, 40, 0.1);
}

[data-theme="light"] .service-card-image::after {
  background: linear-gradient(to top, var(--bg-card), transparent);
}

[data-theme="light"] .luxury-card p[style*="color:var(--color-off-white)"],
[data-theme="light"] .partnership-block p,
[data-theme="light"] article.luxury-card p,
[data-theme="light"] .luxury-card p {
  color: var(--text-primary) !important;
}

[data-theme="light"] .site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .site-header.scrolled .nav-link {
  text-shadow: none;
}

[data-theme="light"] .site-header.scrolled .logo {
  text-shadow: none;
}

[data-theme="light"] .nav-toggle span {
  background: var(--color-gold-dark);
}

[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}

[data-theme="light"] .cta-section::before {
  background: linear-gradient(135deg, rgba(122, 98, 40, 0.06), rgba(143, 80, 89, 0.04));
  border-color: rgba(122, 98, 40, 0.25);
}

[data-theme="light"] .feature-item i,
[data-theme="light"] .benefits-list li i {
  color: var(--color-rose-gold);
}

[data-theme="light"] .contact-info-item i,
[data-theme="light"] .service-card-icon,
[data-theme="light"] .venture-card-icon,
[data-theme="light"] .value-card i,
[data-theme="light"] .capability-item i,
[data-theme="light"] .presence-item i {
  color: var(--color-gold-dark);
}

[data-theme="light"] .map-placeholder {
  color: var(--text-muted);
}

[data-theme="light"] a {
  color: var(--color-gold-dark);
}

[data-theme="light"] a:hover {
  color: var(--color-gold);
}

[data-theme="light"] .gold-button {
  color: #0a0a0a;
}

[data-theme="light"] .back-to-top {
  background: #ffffff;
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}

[data-theme="light"] .back-to-top:hover {
  background: var(--color-gold-dark);
  color: #ffffff;
}

/* Prevent content hidden behind floating buttons on small screens */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--float-size) + var(--float-bottom) + 1rem);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  width: 100%;
  min-height: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-heading);
  transition: color var(--transition);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section--dark {
  background: var(--gradient-section);
}

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

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1rem auto 0;
}

/* Avoid double/broken underline when a gold-divider follows the title */
.section-title:has(+ .gold-divider)::after {
  display: none;
}

.section-title + .gold-divider {
  margin-top: 1rem;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

/* --- Buttons --- */
.gold-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.gold-button {
  background: var(--gradient-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 169, 98, 0.35);
  color: var(--color-black);
}

.outline-button {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.outline-button:hover {
  background: rgba(201, 169, 98, 0.1);
  transform: translateY(-2px);
  color: var(--color-gold-light);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Cards --- */
.luxury-card,
.glass-card,
.venture-card {
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.luxury-card::before,
.venture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.luxury-card:hover,
.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border-color: rgba(201, 169, 98, 0.5);
}

.luxury-card:hover::before,
.venture-card:hover::before {
  transform: scaleX(1);
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
}

.glass-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-gold);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: var(--bg-header-scrolled);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  border-bottom: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 98, 0.5);
  border-radius: 50%;
  color: var(--color-gold);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  font-size: 1rem;
  z-index: 1001;
}

.site-header.scrolled .theme-toggle {
  background: rgba(201, 169, 98, 0.1);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(122, 98, 40, 0.12);
  border-color: var(--color-gold-dark);
}

.theme-toggle:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.theme-toggle .theme-icon-light,
.theme-toggle .theme-icon-dark {
  position: absolute;
  transition: opacity var(--transition), transform var(--transition);
}

.theme-toggle .theme-icon-light {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .theme-icon-dark {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .theme-icon-light {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .theme-icon-dark {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: min(100%, 520px);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.site-header .logo {
  align-items: center;
  padding: 0.25rem 1rem 0.25rem 0.25rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 98, 0.22);
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(201, 169, 98, 0.06) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.site-header.scrolled .logo {
  background: linear-gradient(105deg, rgba(201, 169, 98, 0.12) 0%, rgba(0, 0, 0, 0.15) 100%);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-gold);
}

.site-header .logo-img {
  width: auto;
  height: 126px;
  max-width: 126px;
  min-width: 96px;
  margin-right: -0.85rem;
}

.logo-img {
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(201, 169, 98, 0.35));
  transition: transform var(--transition), filter var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1.05;
  padding-left: 0.35rem;
  margin-left: 0;
  border-left: none;
}

.logo-line {
  display: block;
}

.logo-line--primary {
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.025em;
  line-height: 1.06;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 24px rgba(0, 0, 0, 0.4);
}

.logo-line--secondary {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span,
.logo-text span {
  color: var(--text-logo-accent);
}

.logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4), 0 0 32px rgba(201, 169, 98, 0.15);
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(201, 169, 98, 0.45));
}

.logo:hover .logo-line--primary {
  color: #ffffff;
}

.logo:hover .logo-line--secondary {
  background: linear-gradient(90deg, var(--color-gold), #fff0c8);
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="light"] .site-header .logo {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.65) 55%, rgba(201, 169, 98, 0.08) 100%);
  border-color: rgba(122, 98, 40, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .site-header.scrolled .logo {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(122, 98, 40, 0.35);
}

[data-theme="light"] .logo-img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 16px rgba(201, 169, 98, 0.2));
}

[data-theme="light"] .logo-line--primary {
  color: #0a0a0a;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .logo-line--secondary {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: flex-end;
  margin-right: 0.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  text-decoration: none;
}

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

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

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

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item.has-dropdown > .nav-link i {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-item.has-dropdown:hover > .nav-link i,
.nav-item.has-dropdown.open > .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-dropdown);
  border: var(--border-gold);
  border-radius: 4px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  color: var(--color-gold);
  background: rgba(201, 169, 98, 0.08);
  padding-left: 1.5rem;
}

/* Mobile nav header (injected by JS, visible on small screens only) */
.mobile-nav-header {
  display: none;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: var(--hero-text-shadow);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.page-hero .hero-bg img {
  filter: brightness(0.4);
}

.page-hero .hero-content {
  padding: 3rem 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin-top: 1rem;
  flex-wrap: wrap;
}

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

.breadcrumb span {
  color: var(--color-gray-dark);
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .suffix {
  font-size: 0.6em;
  color: var(--color-rose-gold);
}

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

/* --- Grids --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Service Card --- */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: var(--border-gold);
  background: var(--bg-card);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.service-card-body p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* --- Venture Card --- */
.venture-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.venture-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,169,98,0.15), rgba(183,110,121,0.15));
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.venture-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  border: 1px solid rgba(183, 110, 121, 0.4);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.venture-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.venture-card p {
  flex-grow: 1;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.venture-card .gold-button {
  align-self: flex-start;
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

/* --- Global Presence --- */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.presence-item {
  text-align: center;
  padding: 2rem 1rem;
  border: var(--border-gold);
  border-radius: 4px;
  background: var(--bg-glass);
  transition: all var(--transition);
}

.presence-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.presence-item i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.presence-item h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* --- Why Choose --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-left: 2px solid var(--color-gold);
  background: var(--bg-feature);
  transition: all var(--transition);
}

.feature-item:hover {
  background: rgba(201, 169, 98, 0.05);
  padding-left: 1.75rem;
}

.feature-item i {
  color: var(--color-rose-gold);
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,98,0.08), rgba(183,110,121,0.05));
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* --- About Preview --- */
.about-preview-image {
  border-radius: 4px;
  overflow: hidden;
  border: var(--border-gold);
  position: relative;
}

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

.about-preview-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
  border: var(--border-gold);
  border-radius: 4px;
  background: var(--bg-card);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--color-rose-gold);
  transform: translateY(-4px);
}

.value-card i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Service Page --- */
.capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  border: var(--glass-border);
  border-radius: 4px;
  transition: all var(--transition);
}

.capability-item:hover {
  border-color: rgba(201, 169, 98, 0.4);
}

.capability-item i {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.capability-item h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.capability-item p {
  font-size: 0.88rem;
  margin: 0;
}

/* --- Partnership Page --- */
.partnership-block {
  padding: 3rem;
  border: var(--border-gold);
  border-radius: 4px;
  background: var(--bg-card);
  margin-bottom: 2rem;
  transition: all var(--transition);
}

.partnership-block:hover {
  box-shadow: var(--shadow-gold);
}

.partnership-block h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefits-list li i {
  color: var(--color-rose-gold);
  margin-top: 0.25rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-form-wrap.is-hidden {
  display: none;
}

.contact-grid--no-form {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-glass);
  border: var(--glass-border);
  border-radius: 4px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-input);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}

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

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: none;
  font-size: 0.95rem;
}

.form-message.success {
  display: block;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.map-placeholder {
  height: 350px;
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.95rem;
  margin-top: 3rem;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-right: 1rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: var(--border-subtle);
  padding: 4rem 0 0;
}

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

.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  max-width: 100%;
  white-space: normal;
  gap: 0;
  padding: 0.4rem 0.75rem 0.4rem 0.15rem;
  background: linear-gradient(105deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 10px;
}

.footer-brand .logo-img {
  width: auto;
  height: 104px;
  max-width: 104px;
  margin-right: -0.55rem;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 14px rgba(201, 169, 98, 0.25));
}

.footer-brand .logo-text {
  padding-left: 0.4rem;
}

.footer-brand .logo-line--primary {
  font-size: 1.55rem;
  color: var(--color-gold-light);
  text-shadow: none;
}

.footer-brand .logo-line--secondary {
  font-size: 1.05rem;
  letter-spacing: 0.26em;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  color: var(--color-gold);
  transition: all var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-divider);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin: 0;
}

.footer-credit {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

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

.footer-credit .fa-heart {
  color: var(--color-rose-gold);
  font-size: 0.7rem;
  margin: 0 0.15rem;
  animation: heart-pulse 1.6s ease-in-out infinite;
}

@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

[data-theme="light"] .footer-credit a {
  color: var(--color-gold-dark);
}

[data-theme="light"] .footer-credit a:hover {
  color: var(--color-gold);
}

/* --- Floating Action Buttons (stacked) --- */
.float-actions {
  position: fixed;
  bottom: var(--float-bottom);
  right: var(--float-right);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--float-gap);
  pointer-events: none;
}

.float-actions > * {
  pointer-events: auto;
}

.whatsapp-float {
  position: relative;
  width: var(--float-size);
  height: var(--float-size);
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* --- Back to Top --- */
.back-to-top {
  position: relative;
  width: calc(var(--float-size) - 8px);
  height: calc(var(--float-size) - 8px);
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* --- Decorative --- */
.gold-divider {
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1.5rem 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,98,0.3), transparent);
  margin: 0;
  border: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .three-col {
    grid-template-columns: 1fr 1fr;
  }

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

  .nav-link {
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .main-nav .nav-list {
    gap: 0;
  }

  .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --float-size: 48px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    background: var(--bg-header-scrolled);
    border-bottom: var(--border-subtle);
  }

  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header .container.header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    box-sizing: border-box;
    overflow: visible;
  }

  .header-inner {
    gap: 0.4rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .logo {
    flex: 1 1 auto;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 4.5rem);
    overflow: hidden;
    white-space: nowrap;
  }

  /* Flat logo — merged into header bar (no separate box) */
  .site-header .logo,
  .site-header.scrolled .logo {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .site-header .logo:hover {
    transform: none;
    box-shadow: none;
  }

  .site-header .logo-img {
    height: 44px;
    width: 44px;
    max-width: 44px;
    min-width: 0;
    flex-shrink: 0;
    margin-right: -0.2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 10px rgba(201, 169, 98, 0.2));
  }

  .logo-line--primary {
    font-size: 0.88rem;
    line-height: 1.05;
  }

  .logo-line--secondary {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    line-height: 1.1;
  }

  .logo-text {
    padding-left: 0.15rem;
    overflow: hidden;
    min-width: 0;
    flex: 1;
    gap: 0.05rem;
  }

  [data-theme="light"] .site-header .logo,
  [data-theme="light"] .site-header:not(.scrolled) .logo,
  [data-theme="light"] .site-header.scrolled .logo {
    background: none;
    border: none;
    box-shadow: none;
  }

  [data-theme="light"] .site-header .logo-img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 8px rgba(201, 169, 98, 0.15));
  }

  .logo-line--primary,
  .logo-line--secondary {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  .header-actions {
    flex-shrink: 0;
    position: relative;
    z-index: 1005;
    min-width: 62px;
    margin-left: auto;
    gap: 0.3rem;
  }

  .theme-toggle {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 98, 0.5);
  }

  [data-theme="light"] .nav-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(122, 98, 40, 0.45);
  }

  /* Single-column grids — prevent minmax overflow on narrow screens */
  .service-grid,
  .ventures-grid,
  .feature-list,
  .values-grid,
  .capabilities-list,
  .presence-grid,
  .three-col {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-hero .hero-content,
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }

  .breadcrumb {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .luxury-card,
  .partnership-block,
  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.35);
    flex-shrink: 0;
  }

  .mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
  }

  body > .main-nav {
    z-index: 1004;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: min(100%, 320px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-mobile-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: calc(var(--header-height) + 0.75rem) 1.25rem 2rem;
    margin-right: 0;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
    border-left: 1px solid rgba(201, 169, 98, 0.25);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1004;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open .site-header {
    z-index: 1005;
    background: var(--bg-header-scrolled);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open .header-actions {
    position: relative;
    z-index: 1;
  }

  .main-nav .nav-link,
  .main-nav .dropdown-menu a {
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(201, 169, 98, 0.2);
    touch-action: manipulation;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav .nav-link {
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .dropdown-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
  }

  .main-nav .dropdown-menu a:hover,
  .main-nav .dropdown-menu a.active {
    color: var(--color-gold-light);
    background: rgba(201, 169, 98, 0.1);
  }

  [data-theme="light"] .main-nav {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: rgba(122, 98, 40, 0.25);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  }

  [data-theme="light"] .mobile-nav-title {
    color: var(--color-gold-dark);
  }

  [data-theme="light"] .mobile-nav-header {
    border-bottom-color: rgba(122, 98, 40, 0.25);
  }

  [data-theme="light"] .main-nav .nav-link {
    color: #1a1a1a;
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  [data-theme="light"] .main-nav .nav-link:hover,
  [data-theme="light"] .main-nav .nav-link.active {
    color: var(--color-gold-dark);
  }

  [data-theme="light"] .main-nav .dropdown-menu a {
    color: #454545;
  }

  [data-theme="light"] .main-nav .dropdown-menu a:hover,
  [data-theme="light"] .main-nav .dropdown-menu a.active {
    color: var(--color-gold-dark);
    background: rgba(122, 98, 40, 0.08);
  }

  [data-theme="light"] .site-header:not(.scrolled) .main-nav .nav-link,
  [data-theme="light"] .site-header.scrolled .main-nav .nav-link {
    color: #1a1a1a;
    text-shadow: none;
  }

  [data-theme="light"] .site-header:not(.scrolled) .main-nav .nav-link:hover,
  [data-theme="light"] .site-header:not(.scrolled) .main-nav .nav-link.active,
  [data-theme="light"] .site-header.scrolled .main-nav .nav-link:hover,
  [data-theme="light"] .site-header.scrolled .main-nav .nav-link.active {
    color: var(--color-gold-dark);
    text-shadow: none;
  }

  .nav-link {
    padding: 0.85rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-divider);
  }

  .nav-link::after {
    display: none;
  }

  .nav-item.has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav-item.has-dropdown.open .dropdown-menu {
    max-height: 320px;
  }

  .dropdown-menu a {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-divider);
  }

  .about-preview-image img {
    height: 280px;
  }

  .page-hero {
    min-height: 40vh;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .site-footer .container {
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-grid,
  .footer-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .footer-bottom {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-brand .logo {
    max-width: 100%;
    white-space: normal;
  }

  .footer-brand .logo-img {
    height: 72px;
    max-width: 72px;
  }

  .footer-brand .logo-line--primary {
    font-size: 1.15rem;
  }

  .footer-brand .logo-line--secondary {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .partnership-block {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 3rem;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .gold-button,
  .outline-button {
    width: 100%;
    max-width: 280px;
  }

  .map-placeholder {
    height: 260px;
    font-size: 0.85rem;
  }

  .map-placeholder i {
    font-size: 2rem;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 58px;
  }

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

  .site-header .logo-img {
    height: 40px;
    width: 40px;
    max-width: 40px;
  }

  .logo-line--primary {
    font-size: 0.82rem;
  }

  .logo-line--secondary {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .header-actions {
    min-width: 58px;
    gap: 0.25rem;
  }

  .theme-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .nav-toggle {
    width: 30px;
    height: 30px;
    padding: 5px;
  }
}

/* --- Preloader skip / reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .footer-credit .fa-heart {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
