/*
  LAKESIDE CONCIERGE - Premium Design System
  Style Sheet: styles.css
  Aesthetic: Dark Luxury, Glassmorphism, Champagne Gold Accents, Fluid Motion
*/

/* --- Locally hosted brand fonts (no render-blocking third-party request) --- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('./assets/fonts/outfit-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-italic-latin.woff2') format('woff2');
}

/* --- Design Tokens & Variables --- */
:root {
  /* Color Palette */
  --color-bg-darkest: #070708;
  --color-bg-darker: #0d0d0f;
  --color-bg-dark: #121215;
  --color-bg-card: rgba(18, 18, 21, 0.65);
  --color-bg-card-hover: rgba(26, 26, 31, 0.85);
  
  /* Gold Accents (Champagne & Bronze) */
  --gold-primary: #d4b26f;
  --gold-secondary: #c09e5c;
  --gold-dark: #91723c;
  --gold-light: #f7e6c4;
  --gold-glow: rgba(212, 178, 111, 0.25);
  --gold-glow-intense: rgba(212, 178, 111, 0.6);
  
  /* Text Colors */
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-muted: #8b8b91;
  --text-on-gold: #070708;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Borders & Shadows */
  --border-gold-subtle: 1px solid rgba(212, 178, 111, 0.12);
  --border-gold-hover: 1px solid rgba(212, 178, 111, 0.35);
  --border-glass: 1px solid rgba(255, 255, 255, 0.05);
  --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-gold-glow: 0 0 30px rgba(212, 178, 111, 0.15);

  /* Animation Speeds */
  --transition-ultra-smooth: color 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), width 0.6s cubic-bezier(0.16, 1, 0.3, 1), height 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  font-size: 16px;
  background-color: var(--color-bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
  min-width: 320px;
  background-color: var(--color-bg-darkest);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

section {
  scroll-margin-top: 120px;
}

/* Skip layout and paint work for sections that are still far below the viewport. */
main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background: var(--gold-primary);
  color: var(--color-bg-darkest);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 178, 111, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Selection style */
::selection {
  background: var(--gold-primary);
  color: var(--color-bg-darkest);
}

/* --- Reusable Components & Utilities --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 8rem 0;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

h2 span {
  font-style: italic;
  color: var(--gold-primary);
  font-weight: 400;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.1rem;
}

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

.subtitle-badge {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 1.25rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}

.subtitle-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 1px;
  background-color: var(--gold-primary);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
  color: var(--text-on-gold);
  border: none;
  box-shadow: 0 8px 24px rgba(212, 178, 111, 0.2);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 178, 111, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(212, 178, 111, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 178, 111, 0.05);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-glow);
}

a[href^="mailto:"],
a[href^="tel:"] {
  text-decoration: none;
}

/* Premium Glassmorphic Cards */
.glass-card {
  background: var(--color-bg-card);
  border: var(--border-gold-subtle);
  border-radius: 6px;
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-ultra-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(212, 178, 111, 0.08) 0%, transparent 60%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.005);
  border: var(--border-gold-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 178, 111, 0.12);
  background: var(--color-bg-card-hover);
}

/* Background Glowing Ambient Orbs */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

.orb-gold-1 {
  width: 500px;
  height: 500px;
  background: var(--gold-primary);
  top: -100px;
  right: 0;
}

.orb-gold-2 {
  width: 600px;
  height: 600px;
  background: var(--gold-dark);
  bottom: 10%;
  left: 0;
}

.orb-gold-3 {
  width: 400px;
  height: 400px;
  background: var(--gold-secondary);
  top: 45%;
  right: 0;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-bg-darkest);
  transition: var(--transition-ultra-smooth);
  border-bottom: 1px solid rgba(212, 178, 111, 0.1);
}

header.scrolled {
  background: var(--color-bg-darkest);
  border-bottom: 1px solid rgba(212, 178, 111, 0.1);
  padding: 0.75rem 0;
}

header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 1.5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: var(--transition-ultra-smooth);
}

header.scrolled .nav-container {
  padding: 0.75rem 2.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-ultra-smooth);
}

header.scrolled .logo-img {
  height: 48px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-cta {
  font-size: 0.8rem;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0.65rem;
  border-radius: 4px;
}

.burger-line {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: radial-gradient(circle at 50% 50%, #101013 0%, var(--color-bg-darkest) 100%);
}

/* Animated luxury abstract background patterns */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(212, 178, 111, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(212, 178, 111, 0.02) 1px, transparent 1px) 0 0 / 50px 50px;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  min-width: 0;
  opacity: 1;
  transform: none;
  max-width: 900px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-title span.title-main {
  display: block;
  font-weight: 300;
  color: var(--text-primary);
}

.hero-title span.title-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  margin-top: 0.25rem;
  font-family: var(--font-serif);
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-badge-glass {
  padding: 3rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(212, 178, 111, 0.15);
  background: rgba(18, 18, 21, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  text-align: center;
  position: relative;
}

.hero-badge-glass::before {
  content: '';
  position: absolute;
  top: -5px; right: -5px; bottom: -5px; left: -5px;
  background: linear-gradient(135deg, var(--gold-primary), transparent, var(--gold-secondary));
  border-radius: 12px;
  z-index: -1;
  opacity: 0.1;
}

.hero-badge-logo {
  max-width: 160px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-badge-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.hero-badge-bullets {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-badge-bullets li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge-bullets li::before {
  content: '•';
  color: var(--gold-primary);
  margin-right: 0.5rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.scroll-indicator:hover .scroll-text {
  color: var(--gold-primary);
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 1px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

/* --- ABOUT US ("ÜBER UNS") --- */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-intro-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.about-lead-text {
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: var(--font-serif);
  font-style: italic;
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.5rem;
}

.about-body-text {
  margin-bottom: 2.5rem;
}

.founder-quote {
  border-top: 1px solid rgba(212, 178, 111, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.quote-text {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.quote-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  font-weight: 500;
}

/* Value Cards Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.value-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-icon {
  width: 42px;
  height: 42px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

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

/* --- SERVICES TAB SECTION --- */
.services {
  position: relative;
  background-color: var(--color-bg-darker);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem auto;
}

.section-header p {
  font-size: 1.15rem;
}

/* Navigation tabs */
.services-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background: rgba(212, 178, 111, 0.05);
  color: var(--text-primary);
  border-color: rgba(212, 178, 111, 0.25);
}

.tab-btn.active {
  background: var(--gold-primary);
  color: var(--color-bg-darkest);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(212, 178, 111, 0.3);
}

/* Tab content layout */
.services-content-wrapper {
  position: relative;
  min-height: 480px;
}

.tab-content-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.tab-content-panel[hidden] {
  display: none;
}

.tab-content-panel.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  z-index: 5;
}

.service-intro-col,
.service-items-grid,
.service-item-card {
  min-width: 0;
}

.service-intro-col h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.service-intro-col p.lead {
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.service-intro-col p.description {
  margin-bottom: 2rem;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-item-card {
  padding: 2rem;
  border-radius: 4px;
}

.service-item-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.service-item-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

/* --- PACKAGES (MITGLIEDSCHAFTEN) --- */
.packages {
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 3.5rem 2.5rem;
  position: relative;
}

.package-card.recommended {
  border: 1.5px solid var(--gold-primary);
  transform: scale(1.03);
  overflow: visible !important;
}

.package-card.recommended::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold-primary);
  color: var(--color-bg-darkest);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
}

.package-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.package-card h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.package-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  min-height: 48px;
}

.package-divider {
  height: 1px;
  background: rgba(212, 178, 111, 0.1);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

.package-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.package-features li svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

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

.custom-deal-note {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.custom-deal-note a {
  color: var(--gold-primary);
  text-decoration: none;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0.75rem;
  border-bottom: 1px solid var(--gold-primary);
  transition: var(--transition-smooth);
}

.custom-deal-note a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* --- REGION & INTERACTIVE MAP --- */
.region {
  background-color: var(--color-bg-darker);
  position: relative;
  overflow: hidden;
}

.map-centered-layout {
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  width: 100%;
  position: relative;
}

.region-list-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.region-list-horizontal .region-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(212, 178, 111, 0.15);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: inherit;
  font: inherit;
  text-align: left;
}

.region-list-horizontal .region-item:hover,
.region-list-horizontal .region-item.active {
  background: rgba(212, 178, 111, 0.08);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-2px);
}

.region-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-primary);
  width: 20px;
}

.region-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.region-list-horizontal .region-item:hover .region-name,
.region-list-horizontal .region-item.active .region-name {
  color: var(--text-primary);
}

/* SVG Interactive Map styling */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  background: #070708;
  border: var(--border-gold-subtle);
  border-radius: 8px;
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
}

.luxury-map {
  width: 100%;
  height: 100%;
  background: #070708;
}

.map-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.luxury-map.leaflet-container .map-status {
  display: none;
}

.map-noscript {
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Custom Pulsing Markers for Leaflet Map */
.map-pulse-marker {
  position: relative;
  width: 16px;
  height: 16px;
  background: var(--gold-primary);
  border-radius: 50%;
  border: 2px solid var(--color-bg-darkest);
  box-shadow: 0 0 10px rgba(212, 178, 111, 0.8);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
}

.map-pulse-marker::before,
.map-pulse-marker::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: mapPulse 3s infinite ease-out;
  pointer-events: none;
}

.map-pulse-marker::after {
  animation-delay: 1.5s;
}

.map-pulse-marker:hover,
.map-pulse-marker.active {
  transform: scale(1.35) translate(-10%, -10%);
  background: var(--text-primary);
  border-color: var(--gold-dark);
  box-shadow: 0 0 20px rgba(212, 178, 111, 1);
}

@keyframes mapPulse {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Override Leaflet default tooltip styling for Luxury dark theme */
.leaflet-tooltip-pane .leaflet-tooltip.luxury-leaflet-tooltip {
  background: rgba(18, 18, 22, 0.96) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid var(--gold-primary) !important;
  border-radius: 4px !important;
  padding: 1rem 1.25rem !important;
  color: var(--text-primary) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  white-space: normal !important;
  max-width: 240px !important;
  pointer-events: none !important;
}

.luxury-leaflet-tooltip::before {
  border-top-color: var(--gold-primary) !important;
  border-bottom-color: var(--gold-primary) !important;
}

.luxury-leaflet-tooltip h4 {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.luxury-leaflet-tooltip p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* One controlled detail card prevents clipped or overlapping map popups. */
.map-location-card {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
  width: min(290px, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  overflow-y: auto;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  background: rgba(18, 18, 22, 0.98);
  color: var(--text-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  animation: mapCardReveal 0.2s ease-out;
}

.map-location-card[hidden] {
  display: none;
}

.map-location-card h3 {
  margin: 0 2rem 0.3rem 0;
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.map-location-side {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-location-description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

.map-location-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font: 300 1.5rem/1 var(--font-sans);
  cursor: pointer;
}

.map-location-close:hover,
.map-location-close:focus-visible {
  color: var(--text-primary);
}

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

/* Style Leaflet Zoom controls to fit luxury theme */
.leaflet-bar {
  border: var(--border-gold-subtle) !important;
  box-shadow: var(--shadow-luxury) !important;
}

.leaflet-bar a {
  background-color: var(--color-bg-dark) !important;
  color: var(--gold-primary) !important;
  border-bottom: 1px solid rgba(212, 178, 111, 0.15) !important;
  transition: var(--transition-smooth) !important;
}

.leaflet-bar a:hover {
  background-color: var(--color-bg-card-hover) !important;
  color: var(--text-primary) !important;
}

.leaflet-bar a.leaflet-disabled {
  background-color: var(--color-bg-darkest) !important;
  color: var(--text-muted) !important;
}

/* Hide leaflet attribution, or style it elegantly */
.leaflet-container .leaflet-control-attribution {
  background: rgba(7, 7, 8, 0.75) !important;
  color: var(--text-muted) !important;
  font-size: 9px !important;
  border-top-left-radius: 4px;
}

.leaflet-container .leaflet-control-attribution a {
  color: var(--gold-secondary) !important;
}

/* --- CONTACT SECTION & FORMS --- */
.contact {
  position: relative;
  background: radial-gradient(circle at 50% 100%, #111114 0%, var(--color-bg-darkest) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.contact-intro-lead {
  font-size: 1.35rem;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
  margin-top: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-decoration: none;
}

.contact-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: var(--border-gold-subtle);
  background: rgba(212, 178, 111, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.contact-method-item:hover .contact-icon-wrapper {
  background: var(--gold-primary);
  color: var(--color-bg-darkest);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
}

.contact-details h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.contact-details p {
  font-size: 1.15rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.contact-method-item:hover .contact-details p {
  color: var(--gold-primary);
}

.discretion-pledge {
  padding: 2rem;
  border-radius: 4px;
  border: 1px dashed rgba(212, 178, 111, 0.2);
  background: rgba(212, 178, 111, 0.01);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pledge-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pledge-text h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pledge-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Premium Form Styling */
.contact-form-panel {
  padding: 3.5rem;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-bottom: 1px solid rgba(212, 178, 111, 0.15);
  padding: 0.9rem 0;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-bottom-color: var(--gold-primary);
  background: rgba(212, 178, 111, 0.02);
}

.form-input:focus-visible {
  outline: 2px solid rgba(247, 230, 196, 0.9);
  outline-offset: 4px;
}

.form-input::placeholder {
  color: #96969c;
  opacity: 1;
}

/* Elevate label on focus/input */
.form-group:focus-within .form-label {
  color: var(--gold-primary);
}

.form-checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.form-consent {
  margin-bottom: 3rem;
}

.form-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(212, 178, 111, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  margin-top: 0.15rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.01);
}

.form-checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-checkbox-input:checked + .form-checkbox-custom {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
}

.form-checkbox-custom svg {
  width: 12px;
  height: 12px;
  color: var(--color-bg-darkest);
  display: none;
}

.form-checkbox-input:checked + .form-checkbox-custom svg {
  display: block;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  user-select: none;
}

.form-checkbox-label strong,
.form-privacy-note a {
  color: var(--gold-primary);
  font-weight: 400;
}

.form-privacy-note {
  margin-left: calc(18px + 0.75rem);
  font-size: 0.82rem;
  line-height: 1.4;
}

.form-privacy-note a {
  text-underline-offset: 0.2em;
}

.form-checkbox-input:focus-visible + .form-checkbox-custom {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.form-honeypot {
  display: none !important;
}

.submit-btn {
  width: 100%;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.78;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.form-status.is-success {
  color: #86d5a1;
}

.form-status.is-error {
  color: #f0aaa3;
}

/* --- CONTACT REQUEST MODAL --- */
body.modal-open {
  overflow: hidden;
}

.contact-modal {
  width: min(680px, calc(100% - 2rem));
  max-width: none;
  max-height: 92dvh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--text-primary);
}

.contact-modal::backdrop {
  background: rgba(3, 3, 4, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-modal[open] {
  animation: modalReveal 0.28s ease-out;
}

.contact-modal-card {
  position: relative;
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(212, 178, 111, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 178, 111, 0.12), transparent 34%),
    rgba(12, 12, 15, 0.99);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72);
}

.contact-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 178, 111, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-light);
  font: 300 1.7rem/1 var(--font-sans);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  border-color: var(--gold-primary);
  background: rgba(212, 178, 111, 0.1);
  color: var(--text-primary);
}

.contact-modal h2 {
  max-width: 520px;
  margin: 1.2rem 3rem 0.75rem 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
}

.contact-modal #contact-modal-description {
  max-width: 560px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.contact-modal-context {
  display: inline-flex;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(212, 178, 111, 0.24);
  border-radius: 3px;
  background: rgba(212, 178, 111, 0.06);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-modal .form-group {
  margin-bottom: 1.35rem;
}

.contact-modal .form-consent {
  margin-bottom: 1.5rem;
}

@keyframes modalReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* --- FOOTER --- */
footer {
  background-color: #050506;
  border-top: 1px solid rgba(212, 178, 111, 0.05);
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 10;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-nav h2, .footer-contact h2 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-details a:hover,
.footer-contact-details a:focus-visible {
  color: var(--gold-primary);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
}

.copyright-text, .footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* --- FLOATING DISCRETION LINE (WHATSAPP/PHONE ACTION) --- */
.floating-discretion-line {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  pointer-events: all;
}

.floating-discretion-label {
  background: rgba(18, 18, 22, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  opacity: 0;
  transform: translateX(15px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-luxury);
  pointer-events: none;
}

.floating-discretion-line:hover .floating-discretion-label {
  opacity: 1;
  transform: translateX(0);
}

.floating-discretion-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
  color: var(--color-bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: var(--transition-smooth);
  position: relative;
}

.floating-discretion-btn::before {
  content: none;
}

.floating-discretion-btn svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

.floating-discretion-line:hover .floating-discretion-btn {
  transform: scale(1.1) rotate(5deg);
  box-shadow: none;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 1;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
    height: 8px;
  }
  50% {
    top: 14px;
    opacity: 0.3;
    height: 4px;
  }
  100% {
    top: 6px;
    opacity: 1;
    height: 8px;
  }
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes pulsePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* --- SCROLL REVEAL STYLES (JS ACTIVE) --- */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-ready .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  h2 {
    font-size: 2.3rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .about-grid, .region-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .values-grid {
    margin-top: 2rem;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-card.recommended {
    transform: none;
    order: -1; /* Place recommended first on tablet grid */
  }
  .package-card.recommended::before {
    top: 0;
  }
  .tab-content-panel {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  header .nav-container,
  header.scrolled .nav-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 360px);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: rgba(7, 7, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 178, 111, 0.15);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: max(5rem, env(safe-area-inset-top)) 2rem max(3rem, env(safe-area-inset-bottom));
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.45s;
    z-index: 105;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

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

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .section-padding {
    padding: 5rem 0;
  }

  header,
  header.scrolled {
    padding: 0;
  }

  header .nav-container,
  header.scrolled .nav-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 110px;
    padding-bottom: 7rem;
  }

  .logo-img,
  header.scrolled .logo-img {
    height: 50px;
  }

  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0.55rem;
  }

  /* Hero adjustments */
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
  }

  .services .container {
    display: flex;
    flex-direction: column;
  }

  .services .section-header {
    order: 1;
  }

  .services-content-wrapper {
    display: contents;
    min-height: 0;
  }

  .tab-content-panel,
  .tab-content-panel[hidden] {
    display: none;
  }

  .tab-content-panel.active {
    display: contents;
  }

  .services .service-intro-col {
    order: 2;
    margin-bottom: 2.25rem;
  }

  .services-tabs-nav {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    overflow: visible;
    margin: 0 0 2.75rem;
    padding: 0;
    gap: 0.65rem;
  }

  .services-tabs-nav::-webkit-scrollbar {
    height: 4px;
  }

  .services-tabs-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
  }

  .services-tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(212, 178, 111, 0.45);
  }

  .tab-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0.75rem 0.65rem;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.3;
    letter-spacing: 0.07em;
    font-size: 0.72rem;
    text-align: center;
  }

  .service-intro-col h3 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .services .service-items-grid {
    order: 4;
  }

  .map-wrapper {
    height: 400px;
  }

  .map-location-card {
    position: absolute;
    top: auto;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 1100;
    width: auto;
    max-height: calc(100% - 1.5rem);
    padding: 1rem 1.1rem;
  }

  .bg-glow-orb {
    filter: blur(85px);
    opacity: 0.18;
    width: 280px;
    height: 280px;
  }

  /* Other sections */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-items-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .floating-discretion-label {
    display: none; /* Hide label on mobile to save space */
  }

  .floating-discretion-line {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.contact-visible .floating-discretion-line {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .service-item-card {
    padding: 1.75rem;
  }

  .region-list-horizontal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-list-horizontal .region-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.125rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.3rem);
  }

  .hero {
    padding-top: 105px;
    padding-bottom: 5.5rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 12vw, 2.7rem);
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .services-tabs-nav {
    margin: 0 0 2.25rem;
    padding: 0;
    gap: 0.55rem;
  }

  .contact-form-panel,
  .discretion-pledge,
  .package-card {
    padding: 1.5rem;
  }

  .map-wrapper {
    height: 340px;
  }

  .contact-modal {
    width: calc(100% - 1rem);
    max-height: 96dvh;
  }

  .contact-modal-card {
    max-height: 96dvh;
    padding: 1.35rem;
    border-radius: 6px;
  }

  .contact-modal h2 {
    margin-right: 2.75rem;
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .contact-modal-close {
    top: 0.65rem;
    right: 0.65rem;
    width: 38px;
    height: 38px;
  }

  .contact-modal .form-input {
    font-size: 1rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-discretion-btn {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  .region-list-horizontal {
    grid-template-columns: 1fr;
  }

  .region-list-horizontal .region-item,
  .region-name {
    min-width: 0;
  }
}

@media (max-width: 600px) and (max-height: 700px) {
  .scroll-indicator {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .floating-discretion-line {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- LEGAL, ERROR AND HANDOFF PAGES --- */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 178, 111, 0.09), transparent 38%),
    var(--color-bg-darkest);
}

.legal-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(212, 178, 111, 0.1);
  background: rgba(7, 7, 8, 0.92);
}

.legal-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-header .logo-img {
  height: 54px;
}

.legal-back-link {
  color: var(--gold-primary);
  text-underline-offset: 0.25em;
}

.legal-main {
  padding: 5rem 0 7rem;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.legal-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--text-primary);
}

.legal-card h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 4vw, 2rem);
}

.legal-card h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 1rem;
}

.legal-card ul {
  margin: 1rem 0 0 1.25rem;
}

.legal-card a {
  color: var(--gold-primary);
  text-underline-offset: 0.2em;
}

.legal-card address {
  margin-top: 1rem;
  font-style: normal;
}

.legal-kicker {
  margin-bottom: 0.75rem;
  color: var(--gold-primary) !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-notice {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(212, 178, 111, 0.35);
  border-radius: 4px;
  background: rgba(212, 178, 111, 0.06);
}

.launch-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
}

.error-page-content {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 18vw, 9rem);
  font-style: italic;
  line-height: 1;
}

.error-page-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (max-width: 600px) {
  .legal-header-inner {
    min-height: 76px;
  }

  .legal-header .logo-img {
    height: 44px;
  }

  .legal-main {
    padding: 3rem 0 5rem;
  }

  .legal-back-link {
    font-size: 0.9rem;
  }
}
