﻿:root,
[data-theme="light"] {
  --sb-bg: #ffffff;
  --sb-bg-alt: #f9f9f9;
  --sb-charcoal: #000000;
  --sb-text: #000000;
  --sb-text-secondary: #444444;
  --sb-gold: #A68A4E;

  --sb-gold-accent: #B09B65;
  --sb-gold-glow: rgba(166, 138, 78, 0.2);
  --sb-gold-gradient: linear-gradient(135deg, #A68A4E 0%, #B09B65 100%);
  --sb-grey: #666666;
  --sb-border: rgba(0, 0, 0, 0.1);
  --sb-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  --sb-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
  --sb-card-bg: #ffffff;
  --sb-card-border: rgba(0, 0, 0, 0.05);
  --sb-header-bg: transparent;
  --sb-header-scroll: rgba(247, 244, 236, 0.96);
  --sb-glass: rgba(255, 255, 255, 0.45);
  --sb-glass-border: rgba(255, 255, 255, 0.5);
  --sb-overlay: rgba(0, 0, 0, 0.55);
  --sb-input-bg: #f7f4ec;
  --sb-skeleton-a: #eee;
  --sb-skeleton-b: #e0ddd6;
  --sb-footer-bg: #0a0a0a;
  --sb-footer-text: rgba(255, 255, 255, 0.6);

  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 12px;
  --radius-lg: 16px;
  --transition: 300ms ease;
  --section-padding: 120px 0;
  --container-width: 1200px;
}


[data-theme="dark"] {
  --sb-bg: #0f0f0f;
  --sb-bg-alt: #1a1a1a;
  --sb-charcoal: #f0ece4;
  --sb-text: #f5f5f5;
  --sb-text-secondary: #9a9590;
  --sb-gold: #C6A75E;
  --sb-gold-accent: #D8B46A;
  --sb-gold-glow: rgba(198, 167, 94, 0.25);
  --sb-gold-gradient: linear-gradient(135deg, #C6A75E 0%, #D8B46A 100%);
  --sb-grey: #9a9590;
  --sb-border: rgba(255, 255, 255, 0.06);
  --sb-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --sb-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
  --sb-card-bg: #1a1a1a;
  --sb-card-border: rgba(255, 255, 255, 0.06);
  --sb-header-bg: transparent;
  --sb-header-scroll: rgba(15, 15, 15, 0.96);
  --sb-glass: rgba(30, 28, 24, 0.5);
  --sb-glass-border: rgba(255, 255, 255, 0.08);
  --sb-overlay: rgba(0, 0, 0, 0.6);
  --sb-input-bg: #1a1a1a;
  --sb-skeleton-a: #1e1e1e;
  --sb-skeleton-b: #2a2a2a;
  --sb-footer-bg: #050505;
  --sb-footer-text: rgba(255, 255, 255, 0.5);
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sb-text);
  background-color: var(--sb-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

[data-theme="light"] body {
  color: #000000;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sb-text);
  transition: color var(--transition);
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--sb-text-secondary);
  margin-bottom: 1rem;
  transition: color var(--transition);
}


.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.gold-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--sb-gold-gradient);
  margin: 24px auto 0;
  border-radius: 2px;
}


.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 240ms;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 360ms;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 480ms;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 600ms;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 40px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sb-gold-gradient);
  color: #fff;
  box-shadow: 0 4px 16px var(--sb-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--sb-gold-glow);
  filter: brightness(1.08);
}

.btn-outline {
  border: 1.5px solid var(--sb-gold);
  color: var(--sb-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--sb-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--sb-gold-glow);
}

.btn-dark {
  background: var(--sb-charcoal);
  color: var(--sb-bg);
}

.btn-dark:hover {
  opacity: 0.88;
  transform: translateY(-3px);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.site-header.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  pointer-events: none;
  /* Let clicks pass through */
}

[data-theme="light"] .site-header.scrolled {
  background: transparent !important;
  box-shadow: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
  transition: opacity 0.4s ease, transform 0.4s ease, max-width 0.4s ease;
  max-width: 200px;
  overflow: hidden;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 44px;
  width: auto;
}


.site-header.scrolled .logo {
  opacity: 0;
  max-width: 0;
  transform: translateX(-20px);
  pointer-events: none;
}


.desktop-nav {
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.site-header.scrolled .nav-links {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
}

[data-theme="dark"] .site-header.scrolled .nav-links {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--sb-text);
  background: rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .nav-links a.active {
  color: var(--sb-text);
  background: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .site-header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .site-header.scrolled .nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .site-header.scrolled .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}


.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  /* Increased width */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px;
  /* Increased padding */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1002;
  text-align: center;
}

/* Invisible bridge to prevent hover loss */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

[data-theme="dark"] .nav-dropdown {
  background: rgba(30, 30, 30, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.site-header.scrolled .nav-dropdown {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .site-header.scrolled .nav-dropdown {
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px !important;
  /* Larger clickable area */
  font-size: 0.8rem !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 10px !important;
  transition: all 0.2s ease;
  background: transparent !important;
}

.nav-dropdown a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.site-header.scrolled .nav-dropdown a {
  color: var(--sb-text-secondary) !important;
}

.site-header.scrolled .nav-dropdown a:hover {
  color: var(--sb-text) !important;
  background: rgba(0, 0, 0, 0.05) !important;
}

[data-theme="dark"] .site-header.scrolled .nav-dropdown a {
  color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="dark"] .site-header.scrolled .nav-dropdown a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
  transition: opacity 0.4s ease, transform 0.4s ease;
}


.site-header.scrolled .header-wa-btn {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
}



/* --- Global Controlled UI Redesign --- */

/* Part 2: Header Design (Transparent Container + Glass Nav) */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 98%;
  max-width: 1600px;
  z-index: 1000;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none !important;
  /* CRITICAL: Remove transform to allow fixed children to float viewport-relative */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  /* Add padding to push elements down from top:0 */
  margin: 0;
  width: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
  max-width: 400px;
  /* Allow even bigger logo */
  overflow: visible;
}

/* Glass Morphism specifically on Nav */
.nav-links {
  /* Absolute Centering for Exact Middle */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 34px;
  align-items: center;
  /* margin: 0 auto; Removed auto margin */

  /* Glass Pill Effect ONLY on Nav */
  background: rgba(20, 20, 20, 0.7);
  /* Slightly darker for contrast */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.85;
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: #C6A75E;
  opacity: 1;
}

/* --- Dropdown Styles --- */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  /* Below the parent */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  /* min-width: 160px; */
  min-width: auto;
  /* Let content dictate width, or use a smaller min-width */
  background: rgba(20, 20, 20, 0.9);
  /* Darker glass for readability */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;

  /* Animation State */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1010;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
  /* Slide Up slightly */
}

/* Dropdown Links */
.dropdown-content a {
  display: block;
  padding: 16px 24px;
  color: #ccc;
  font-size: 13px;
  /* Slightly smaller */
  white-space: nowrap;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 0;
  /* Reset */
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #C6A75E;
  padding-left: 24px;
  /* No indent change, keep centered/clean */
}

/* Part 3: Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  z-index: 1002;
  /* Ensure above everything else */
  pointer-events: auto;
  /* Force clickability */
}

/* 1. Theme Toggle: Icon Animation */
.theme-toggle {
  appearance: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1003;
  /* Extra safe z-index */
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.theme-toggle::after {
  display: none;
  /* Remove old dot */
}

/* Icons inside toggle */
.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: #fff;
}

.moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
  color: #C6A75E;
}

/* Dark Mode Animations */
[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* 2. WhatsApp Button: minimal glass (No Green) */
.header-whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  /* For SVG currentColor */
}

.header-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  opacity: 0.9;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: #C6A75E;
}

/* Clean up old toggle pseudo-elements if any */
.theme-toggle::before {
  display: none;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1001;

  width: 56px;
  height: 56px;

  border-radius: 50%;

  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5);

  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Part 5: Mobile Adjustments */
@media (max-width: 768px) {
  .main-header {
    width: 95%;
    top: 15px;
  }

  .header-container {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    /* Keep bottom mobile nav system */
  }
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}



.theme-toggle:hover {
  border-color: var(--sb-gold);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header.scrolled .nav-toggle span {
  background: var(--sb-text);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-anim-wrap {
  position: absolute;
  inset: -5%;
  z-index: 1;
  animation: heroZoomDrift 25s ease-in-out infinite alternate;
}

@keyframes heroZoomDrift {
  0% {
    transform: scale(1) translateX(0);
  }

  50% {
    transform: scale(1.04) translateX(-8px);
  }

  100% {
    transform: scale(1.06) translateX(8px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(10, 8, 4, 0.05) 0%,
      rgba(10, 8, 4, 0.08) 25%,
      rgba(10, 8, 4, 0.30) 60%,
      rgba(10, 8, 4, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 0 24px 80px;
  max-width: 700px;
  width: 100%;
  animation: heroFadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 700;
}

.hero-content>p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-content .btn {
  margin: 0;
}

.hero-content .btn-primary {
  background: var(--sb-gold-gradient);
  color: #fff;
  box-shadow: 0 6px 24px var(--sb-gold-glow);
}

.hero-content .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(198, 167, 94, 0.5);
  filter: brightness(1.1);
}

.hero-content .btn-outline-hero {
  border: 1.5px solid rgba(198, 167, 94, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.hero-content .btn-outline-hero:hover {
  background: var(--sb-gold);
  color: #fff;
  border-color: var(--sb-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--sb-gold-glow);
}


.hero-filter {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 40px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-filter-btn {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-radius: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-filter-btn:hover {
  color: #fff;
}

.hero-filter-btn.active {
  background: var(--sb-gold-gradient);
  color: #fff;
  box-shadow: 0 4px 16px var(--sb-gold-glow);
}


.hero-stat-card {
  position: absolute;
  bottom: 80px;
  right: 24px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  padding: 20px 28px;
  max-width: 260px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: heroFadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.8s both;
}

[data-theme="dark"] .hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--sb-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.4;
}


.page-header {
  padding: 140px 0 64px;
  text-align: center;
  background: var(--sb-bg-alt);
  border-bottom: 1px solid var(--sb-border);
  transition: background var(--transition);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  max-width: 500px;
  margin: 0 auto;
}


.properties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.property-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] .property-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(198, 167, 94, 0.15);
  border-color: rgba(198, 167, 94, 0.25);
}

[data-theme="dark"] .property-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(198, 167, 94, 0.2);
  border-color: rgba(198, 167, 94, 0.3);
}

.property-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.property-card:hover .property-card-image img {
  transform: scale(1.06);
}

.property-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--sb-gold-gradient);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.property-card-body {
  padding: 24px;
}

.property-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sb-text);
  margin-bottom: 6px;
}

.property-card-location {
  font-size: 0.8125rem;
  color: var(--sb-grey);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-card-features {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sb-border);
  flex-wrap: wrap;
}

.property-card-feature {
  font-size: 0.8125rem;
  color: var(--sb-text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sb-gold);
}

.property-card-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sb-gold);
}

.property-card-cta:hover {
  color: var(--sb-gold-accent);
}


.loading-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.skeleton-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.skeleton-image {
  height: 220px;
  background: linear-gradient(90deg, var(--sb-skeleton-a) 25%, var(--sb-skeleton-b) 50%, var(--sb-skeleton-a) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.skeleton-body {
  padding: 24px;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--sb-skeleton-a) 25%, var(--sb-skeleton-b) 50%, var(--sb-skeleton-a) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  margin-bottom: 12px;
}

.skeleton-line:nth-child(1) {
  width: 70%;
}

.skeleton-line:nth-child(2) {
  width: 50%;
}

.skeleton-line:nth-child(3) {
  width: 80%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.state-message {
  text-align: center;
  padding: 60px 20px;
}

.state-message h3 {
  margin-bottom: 8px;
}

.state-message p {
  max-width: 400px;
  margin: 0 auto;
}


.why-choose {
  padding: 100px 0;
  background: var(--sb-bg-alt);
  transition: background var(--transition);
}

.why-choose .section-header {
  margin-bottom: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--sb-border);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sb-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sb-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--sb-grey);
  margin-top: 8px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}


.about-preview {
  background: transparent;
  position: relative;
  transition: background var(--transition);
}

.about-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sb-border) 20%, var(--sb-border) 80%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--sb-border);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text .gold-line {
  margin: 24px 0 0;
}

.about-hero {
  padding: 140px 0 64px;
  text-align: center;
  background: var(--sb-bg-alt);
  transition: background var(--transition);
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-story {
  background: var(--sb-bg-alt);
  transition: background var(--transition);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}


.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-card {
  background: var(--sb-bg-alt);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sb-border);
  box-shadow: var(--sb-shadow);
  transition: transform var(--transition), background var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}


.cofounders-section {
  background: var(--sb-bg);
  transition: background var(--transition);
}

.cofounders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.cofounder-card {
  text-align: center;
  background: var(--sb-card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--sb-shadow);
  border: 1px solid var(--sb-card-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cofounder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sb-shadow-hover);
}

.cofounder-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--sb-gold);
}

.cofounder-card h3 {
  margin-bottom: 4px;
}

.cofounder-card .role {
  font-size: 0.8125rem;
  color: var(--sb-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cofounder-card p {
  font-size: 0.9375rem;
}


.property-detail {
  padding-top: 100px;
}

.property-hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px;
  background: var(--sb-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sb-border);
}

.property-meta-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.property-meta-item .label {
  font-size: 0.75rem;
  color: var(--sb-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.property-meta-item .value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sb-text);
}

.property-description {
  margin-bottom: 40px;
}

.property-description h2 {
  margin-bottom: 16px;
}


.inquiry-form {
  background: var(--sb-bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--sb-shadow);
  border: 1px solid var(--sb-border);
  margin-bottom: 40px;
  transition: background var(--transition);
}

.inquiry-form h2 {
  margin-bottom: 8px;
}

.inquiry-form>p {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sb-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--sb-input-bg);
  border: 1px solid var(--sb-border);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--sb-text);
  transition: border-color var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sb-gold);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group .error-text {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c0392b;
}

.form-group.has-error .error-text {
  display: block;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--sb-bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--sb-shadow);
  border: 1px solid var(--sb-border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sb-input-bg);
  border-radius: 12px;
  font-size: 1.25rem;
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}


.accent-image-section {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.accent-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sb-bg) 0%, transparent 30%, transparent 70%, var(--sb-bg) 100%);
}


.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}


.hero-split {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 90px;
}

.hero-split-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  padding-bottom: 80px;
}

.hero-text {
  max-width: 560px;
  animation: heroFadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 700;
}

.hero-text>p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
  max-width: 320px;
  animation: heroFadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s both;
}

.hero-panel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

.hero-panel-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(198, 167, 94, 0.3);
  transform: translateX(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: rgba(198, 167, 94, 0.15);
  border: 1px solid rgba(198, 167, 94, 0.2);
}

.hero-panel-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-panel-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  font-weight: 300;
}

.hero-panel-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.hero-panel-card:hover .hero-panel-arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--sb-gold);
}


.sell-form-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.sell-form-wrap h2 {
  margin-bottom: 8px;
}

.sell-form-wrap>p {
  color: var(--sb-text-secondary);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.file-upload-area {
  border: 2px dashed var(--sb-border);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--sb-input-bg);
}

.file-upload-area:hover {
  border-color: var(--sb-gold);
  background: rgba(198, 167, 94, 0.04);
}

.file-upload-area .upload-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.file-upload-area p {
  font-size: 0.875rem;
  color: var(--sb-text-secondary);
}

.file-upload-area input[type="file"] {
  display: none;
}


.site-footer {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: var(--sb-footer-text);
  padding: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .site-footer {
  background: rgba(5, 5, 5, 0.8);
}


.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sb-gold) 30%, var(--sb-gold-accent) 70%, transparent 100%);
  z-index: 1;
}

.footer-inner {
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}


.footer-brand-col .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand-col .footer-logo-text span {
  color: var(--sb-gold);
}

.footer-brand-col>p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.7;
}


.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--sb-gold);
  border-color: var(--sb-gold);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
}

.footer-socials a:hover svg {
  fill: #fff;
}


.footer-nav-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-nav-col a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9375rem;
  margin-bottom: 12px;
  transition: color var(--transition), transform var(--transition);
}

.footer-nav-col a:hover {
  color: var(--sb-gold);
  transform: translateX(3px);
}


.footer-newsletter p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 300px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 0.875rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
  border-color: var(--sb-gold);
}

.footer-newsletter-form button {
  padding: 10px 18px;
  background: var(--sb-gold-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: filter 0.3s ease;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  filter: brightness(1.1);
}


.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8125rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--sb-gold);
}


.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}


@media (min-width: 768px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .properties-grid,
  .loading-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cofounders-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:not(:last-child)::after {
    bottom: auto;
    top: 20%;
    left: auto;
    right: 0;
    width: 1px;
    height: 60%;
  }


  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(2)::after {
    display: block;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .nav-toggle {
    display: none;
  }
}




[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav-links {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav-links a {
  color: #222222;
}

[data-theme="light"] .nav-links a:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-links a.active {
  color: #000000;
  background: rgba(0, 0, 0, 0.1);
}


[data-theme="light"] .logo {
  filter: none;
}


[data-theme="light"] .nav-dropdown {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .nav-dropdown a {
  color: #333333 !important;
}

[data-theme="light"] .nav-dropdown a:hover {
  color: #000000 !important;
  background: rgba(0, 0, 0, 0.06) !important;
}


[data-theme="light"] .nav-toggle span {
  background: #222222;
}


[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}


[data-theme="light"] .hero-immersive {
  color: #fff;

}


[data-theme="light"] .section h2,
[data-theme="light"] .section h3,
[data-theme="light"] .section h4 {
  color: #000000;
}

[data-theme="light"] .section p {
  color: #444444;
}


[data-theme="light"] .eyebrow {
  color: var(--sb-gold);
}

[data-theme="light"] .story-content h2 {
  color: #000000;
}

[data-theme="light"] .story-content p {
  color: #444444;
}

[data-theme="light"] .btn-underline {
  color: #000000;
}


[data-theme="light"] .why-card {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .why-card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .why-card h3 {
  color: #000000;
}

[data-theme="light"] .why-card p {
  color: #555555;
}


.m-founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 768px;
  margin: 40px auto;
  align-items: start;
}

.m-founder {
  text-align: left;

  position: relative;
  padding-bottom: 24px;
}

.m-founder__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;

  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.m-founder__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);

  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.m-founder:hover .m-founder__img img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.m-founder h3 {
  font-family: var(--font-heading);
  font-size: 2rem;

  font-weight: 500;
  margin: 0 0 4px;
  color: var(--sb-text);
  letter-spacing: -0.02em;
}

.m-founder span {
  display: block;
  font-size: 0.8rem;
  color: var(--sb-gold);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.m-founder-bio {
  color: var(--sb-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 100%;
  opacity: 0.8;
  font-weight: 300;
}


@media (max-width: 768px) {
  .m-founders {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 400px;
  }

  .m-founder {
    text-align: center;
  }
}

/* --- Mobile Partners Carousel --- */
@media (max-width: 768px) {
  .partners-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    /* Space for scroll */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    grid-template-columns: none !important;
    /* Override inline style */
  }

  .partners-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .partners-grid .m-feature {
    min-width: 260px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  [data-theme="light"] .partners-grid .m-feature {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
  }
}

/* --- Header Scrolling Behavior (Final Refinement) --- */

/* Base header state */
.site-header,
.main-header {
  position: absolute !important;
  /* Default: Scrolls away */
  width: 100%;
}

/* Desktop Sticky Nav Only */
@media (min-width: 768px) {
  .nav-links {
    position: fixed !important;
    top: 22px;
    /* Centered with 44px logo + 20px top padding */
    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 10000 !important;
    margin: 0 !important;
    /* This will now truly float relative to high-level viewport */
  }

  /* When the page is scrolled, the header container becomes sticky
     only to manage the nav, while logo stays absolute */
  .site-header.scrolled {
    position: absolute !important;
    /* Keep it absolute so logo scrolls away */
    background: transparent !important;
    pointer-events: none !important;
    transform: none !important;
  }

  .site-header.scrolled .nav-links {
    pointer-events: auto !important;
  }
}

/* Mobile: logo scrolls away, bottom nav is fixed (handled separately) */
@media (max-width: 768px) {

  .site-header,
  .main-header {
    position: absolute !important;
  }
}




.m-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.m-news-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.m-news-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

[data-theme="light"] .m-news-card {
  border-color: rgba(0, 0, 0, 0.06);
  background: #fff;
}

[data-theme="light"] .m-news-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.m-news-card__img {
  height: 200px;
  overflow: hidden;
}

.m-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.m-news-card:hover .m-news-card__img img {
  transform: scale(1.04);
}

.m-news-card__body {
  padding: 24px;
}

.m-news-card__date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-theme="light"] .m-news-card__date {
  color: #999;
}

.m-news-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 8px 0 16px;
  line-height: 1.4;
}

[data-theme="light"] .m-news-card__body h3 {
  color: #1a1a1a;
}


@media (max-width: 920px) {
  .m-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .m-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-news-grid {
    grid-template-columns: 1fr;
  }

  .m-founders {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .m-hero__title {
    font-size: 2.2rem;
  }

  .m-section {
    padding: 64px 0;
  }

  .m-features {
    grid-template-columns: 1fr;
  }

  .m-hero__links {
    gap: 12px;
  }

  .m-hero__link {
    font-size: 0.85rem;
  }
}


.fluid-container {
  max-width: 100%;
  padding-left: 5%;
  padding-right: 0;

  overflow: hidden;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-right: 5%;
}

.section-header-row h2 {
  font-size: 3rem;
  margin: 0;
}

.view-all-link {
  font-size: 1rem;
  color: var(--sb-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  border-bottom-color: var(--sb-gold);
  margin-right: 10px;
}


.featured-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.featured-scroll-wrap .properties-grid {
  display: contents;

}


@media (min-width: 1024px) {
  .featured-scroll-wrap .property-card:first-child {
    grid-column: span 2;
  }
}

.featured-scroll-wrap .property-card {
  min-width: 0;
  flex-shrink: 1;
}

.featured-scroll-wrap .property-card {
  min-width: 400px;

  flex-shrink: 0;
}



.section-story {
  padding: 120px 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
  height: 600px;
}

.story-img-main {
  width: 85%;
  height: 90%;
  overflow: hidden;
  border-radius: 4px;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.story-img-accent {
  position: absolute;
  bottom: -40px;

  right: -40px;
  width: 50%;
  height: 55%;
  border: 4px solid #fff;

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

[data-theme="light"] .story-img-accent {
  border-color: #000;
}

.story-content {
  padding-right: 40px;
}

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sb-gold);
  margin-bottom: 20px;
}

.story-content h2 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 30px;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--sb-text-muted);
}

.btn-underline {
  position: relative;
  color: var(--sb-text-main);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 4px;
}

.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--sb-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  padding: 40px 30px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.why-card:hover {
  background: radial-gradient(circle at top right, rgba(198, 167, 94, 0.1), rgba(255, 255, 255, 0.02));
  border-color: rgba(198, 167, 94, 0.3);
  transform: translateY(-8px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}



.founders-duo {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.founder-portrait {
  position: relative;
  width: 400px;
  aspect-ratio: 0.8;
}

.portrait-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.6s ease;
}

.founder-portrait:hover .portrait-inner img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
}

.portrait-overlay h3 {
  font-size: 1.8rem;
  margin: 0 0 5px 0;
}

.portrait-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.news-card {
  background: var(--sb-card-bg);

  border: 1px solid var(--sb-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-img {
  height: 220px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-content {
  padding: 24px;
}

.news-date {
  display: block;
  font-size: 0.8rem;
  color: var(--sb-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.read-more {
  font-size: 0.9rem;
  color: var(--sb-text-main);
  text-decoration: underline;
}



.blended-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  padding: 80px 0 40px;
}


.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}


.footer-logo {


  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}


.footer-logo,
[data-theme="light"] .footer-logo {
  filter: none !important;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.2s ease;
}

.footer-socials a:hover svg {
  fill: #ffffff;
}


.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: #ffffff;
}


.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 48px 0 24px;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}


[data-theme="light"] .blended-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-bottom,
[data-theme="light"] .footer-nav-col a {
  color: rgba(255, 255, 255, 0.45) !important;
}

[data-theme="light"] .footer-nav-col h4 {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="light"] .footer-socials a svg {
  fill: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="light"] .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3) !important;
}


@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand-col {
    grid-column: auto;
  }
}



@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }

  .hero-interactive-cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-tagline {
    margin: 15px 0 0 0;
    max-width: 100%;
    text-align: center;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    height: 400px;
    margin-bottom: 40px;
  }

  .why-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .founders-duo {
    flex-direction: column;
    align-items: center;
  }
}


@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }

  .hero-content h1 {
    font-size: 4.8rem;
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .properties-grid,
  .loading-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item:not(:last-child)::after {
    bottom: auto;
    top: 20%;
    left: auto;
    right: 0;
    width: 1px;
    height: 60%;
  }
}


@media (max-width: 767px) {
  .logo img {
    height: 40px;
  }

  .header-inner {
    height: 64px;
  }




  .site-header.scrolled .logo {
    opacity: 0;
    max-width: 0;
    transform: translateX(-20px);
    pointer-events: none;
  }

  .nav-toggle {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1000;
    border-radius: 0;
    padding: 20px;
    border: none;
  }

  [data-theme="light"] .nav-links {
    background: rgba(247, 244, 236, 0.9);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 14px 24px;
    border-radius: 14px;
    background: transparent;
  }

  [data-theme="light"] .nav-links a {
    color: var(--sb-text) !important;
  }

  .nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
  }

  [data-theme="light"] .nav-links a.active {
    background: var(--sb-border);
  }


  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    border-radius: 0;
  }

  .nav-dropdown a {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    color: rgba(255, 255, 255, 0.6) !important;
  }

  [data-theme="light"] .nav-dropdown a {
    color: var(--sb-text-secondary) !important;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-bottom: 60px;
  }

  .hero-stat-card {
    display: none;
  }

  .hero-filter-btn {
    padding: 8px 20px;
    font-size: 0.6875rem;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .footer-top {
    gap: 36px;
  }

  .stats-grid {
    gap: 0;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}




.m-section {
  padding: 80px 0;
}

.m-section--light {
  background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .m-section--light {
  background: #f7f7f5;
}


.m-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}


.m-section-header {
  margin-bottom: 48px;
}

.m-section-header--center {
  text-align: center;
}

.m-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}


.m-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.m-story__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.m-story__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 4px 0 16px;
}

.m-story__text p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

[data-theme="light"] .m-story__text p {
  color: #555;
}


.m-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.m-feature {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  transition: border-color 0.3s;
}

.m-feature:hover {
  border-color: rgba(199, 163, 105, 0.3);
}

[data-theme="light"] .m-feature {
  border-color: #e8e8e8;
}

[data-theme="light"] .m-feature:hover {
  border-color: var(--accent);
}

.m-feature__num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.m-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.m-feature p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.65;
}

[data-theme="light"] .m-feature p {
  color: #666;
}


.m-text-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.m-text-link:hover {
  border-color: var(--accent);
}


.m-founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: center;
}

.m-founder__img {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(199, 163, 105, 0.3);
}

.m-founder__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-founder h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.m-founder span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.m-legal {
  line-height: 1.8;
}

.m-legal__updated {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.m-legal h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.m-legal h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 20px 0 8px;
}

.m-legal p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

[data-theme="light"] .m-legal p {
  color: #555;
}

.m-legal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.m-legal ul li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

[data-theme="light"] .m-legal ul li {
  color: #555;
}

.m-legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.m-legal a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.m-legal a:hover {
  border-color: var(--accent);
}


@media (max-width: 768px) {
  .m-section {
    padding: 56px 0;
  }

  .m-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .m-story__img img {
    height: 240px;
  }

  .m-features {
    grid-template-columns: 1fr;
  }

  .m-founders {
    grid-template-columns: 1fr;
  }

  .m-founder__img {
    width: 160px;
    height: 160px;
  }


  .m-story[style*="direction: rtl"] {
    direction: ltr !important;
  }
}




.footer-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  margin: 4px 0;
}

.footer-email-btn:hover {
  background: var(--sb-gold);
  color: #fff;
  border-color: var(--sb-gold);
}

[data-theme="light"] .footer-email-btn {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
}

[data-theme="light"] .footer-email-btn:hover {
  background: var(--sb-gold);
  color: #fff;
}


.search-filter-section {
  padding: 24px 0 48px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--sb-card-bg);
  border: 1px solid var(--sb-card-border);
  border-radius: 12px;
  padding: 8px 12px;
  gap: 12px;
  box-shadow: var(--sb-shadow);
  flex-wrap: wrap;
}

[data-theme="light"] .search-bar {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

.search-input-group {
  display: flex;
  align-items: center;
  flex: 2;
  min-width: 200px;
  border-right: 1px solid var(--sb-border);
  padding-right: 12px;
}

.search-icon {
  width: 20px;
  height: 20px;
  fill: var(--sb-grey);
  margin-right: 10px;
}

.search-input-group input {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--sb-text);
  font-size: 0.95rem;
  outline: none;
}

.search-filters {
  display: flex;
  gap: 12px;
  flex: 3;
  overflow-x: auto;
}

.search-select-wrapper {
  position: relative;
  min-width: 100px;
}

.search-select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--sb-border);
  border-radius: 8px;
  padding: 10px 32px 10px 12px;
  color: var(--sb-text);
  font-size: 0.9rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.search-btn {
  width: 44px;
  height: 44px;
  background: var(--sb-gold);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--sb-gold-accent);
  transform: translateY(-1px);
}

.search-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .search-input-group {
    border-right: none;
    border-bottom: 1px solid var(--sb-border);
    padding-bottom: 12px;
  }

  .search-filters {
    flex-wrap: wrap;
  }

  .search-select-wrapper {
    min-width: 45%;
    flex: 1;
  }

  .search-btn {
    width: 100%;
  }
}




.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  padding: 0;
}

.site-header.scrolled {
  background: rgba(15, 15, 15, 0.85);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s ease;
}

.site-header.scrolled .header-inner {
  height: 70px;
}

.logo img {
  height: 50px;
  transition: height 0.4s ease;
  filter: brightness(0) invert(1);

}


.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);

  padding: 5px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.header-wa-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.header-wa-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


.m-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.m-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.m-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  animation: mHeroZoom 35s ease-in-out infinite alternate;
}

@keyframes mHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.m-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%);

  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
}

.m-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 80px;

}

.m-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sb-gold);
  margin-bottom: 24px;
  animation: fadeInDown 1s ease 0.2s backwards;
}

.m-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.m-hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.m-hero__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 1s ease 0.8s backwards;
}

.m-hero__link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  position: relative;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.m-hero__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--sb-gold);
  transition: width 0.3s ease;
}

.m-hero__link:hover {
  opacity: 1;
  color: var(--sb-gold);
}

.m-hero__link:hover::after {
  width: 100%;
}

.m-hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sb-gold);
  opacity: 0.5;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}



.featured-scroll-wrap {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 32px;
  scrollbar-width: none;

  -ms-overflow-style: none;

  scroll-snap-type: x mandatory;
}

.featured-scroll-wrap::-webkit-scrollbar {
  display: none;
}


.property-card {
  min-width: 320px;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sb-card-bg);
  border: 1px solid var(--sb-card-border);
  box-shadow: var(--sb-shadow);
  transition: all 0.4s ease;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sb-shadow-hover);
  border-color: rgba(166, 138, 78, 0.3);
}

[data-theme="light"] .property-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .property-card:hover {
  border-color: rgba(166, 138, 78, 0.4);
}

.property-card__img {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-card__img img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 15, 15, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

[data-theme="light"] .property-badge {
  background: rxgba(255, 255, 255, 0.9);
  color: #000;
}

.property-card__content {
  padding: 24px;
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sb-gold);
  margin-bottom: 8px;
  display: block;
}

.property-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
  color: var(--sb-text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

[data-theme="light"] .property-card h3 {
  color: #1a1a1a;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--sb-text-secondary);
  margin-bottom: 20px;
}

.property-card__location svg {
  width: 14px;
  height: 14px;
  fill: var(--sb-gold);
  opacity: 0.8;
}

.property-card__specs {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--sb-border);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--sb-text-secondary);
  font-weight: 500;
}

.spec-item svg {
  width: 16px;
  height: 16px;
  fill: var(--sb-text-secondary);
  opacity: 0.6;
}

[data-theme="light"] .spec-item svg {
  fill: #666;
}






[data-theme="light"] .logo img {
  filter: none !important;
  opacity: 1;
}


[data-theme="light"] .site-header .nav-links {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .site-header .nav-links a {
  color: #333;

}

[data-theme="light"] .site-header .nav-links a:hover,
[data-theme="light"] .site-header .nav-links a.active {
  color: #000;
  background: rgba(0, 0, 0, 0.06);
}


[data-theme="light"] .header-wa-btn {
  color: #333;
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .header-wa-btn:hover {
  color: #fff;
  border-color: #25d366;

}


[data-theme="light"] .theme-toggle {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}





.logo img,
[data-theme="light"] .logo img,
[data-theme="dark"] .logo img {
  filter: none !important;
  opacity: 1;
}


.site-header,
[data-theme="light"] .site-header,
[data-theme="dark"] .site-header {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;

}





.site-header:not(.scrolled) {
  box-shadow: none !important;
}



@media (max-width: 768px) {


  .section,
  .section-story,
  .section-featured {
    padding: 60px 0;

  }

  .container,
  .footer-inner,
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-right: 0;
  }

  .view-all-link {
    align-self: flex-start;

  }


  .m-hero__title {
    font-size: 2.5rem !important;

  }

  h2,
  .section-header-row h2 {
    font-size: 2rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }


  .site-header .header-inner {
    height: 70px;
  }


  .desktop-nav,
  .header-wa-btn {
    display: none;
  }


  .nav-toggle {
    display: flex;
    z-index: 1100;
  }


  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--sb-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    border-radius: 0;

    backdrop-filter: none;
    border: none;
  }

  .nav-links.open {
    transform: translateY(0);
    display: flex;

  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--sb-text);
  }

  [data-theme="light"] .nav-links {
    background: #ffffff;
  }

  [data-theme="light"] .nav-links a {
    color: #1a1a1a;
  }


  .m-hero__content {
    padding-top: 60px;
  }

  .m-hero__sub {
    font-size: 1rem;
    padding: 0 16px;
  }

  .m-hero__links {
    flex-direction: column;
    gap: 16px;
  }

  .m-hero__dot {
    display: none;
  }


  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-visual {
    height: 300px;

    order: -1;

  }

  .story-img-main {
    width: 100%;
    height: 100%;
  }


  .search-filter-section {
    padding: 0 0 40px;
  }

  .search-bar {
    padding: 16px;
  }

  .search-input-group {
    border-right: none;
    border-bottom: 1px solid var(--sb-border);
    padding-bottom: 12px;
  }

  .search-btn {
    width: 100%;
  }



  .featured-scroll-wrap {
    gap: 16px;
    padding-bottom: 24px;
    padding-right: 20px;

  }

  .property-card {
    min-width: 280px;

    max-width: 280px;
  }

  .property-card__img {
    height: 200px;
  }


  .form-row {
    flex-direction: column;
    gap: 16px;
  }


  .footer-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-divider {
    display: none;

    margin: 20px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }


  .footer-brand-col {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }


  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}





.nav-toggle {
  display: none;

  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;

  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}


[data-theme="light"] .nav-toggle span {
  background-color: #000;
}


.nav-toggle:hover span {
  background-color: var(--sb-gold);
}


.nav-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;

  }


  .nav-dropdown-wrap {
    width: 100%;
  }

  .nav-dropdown {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 20px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin-top: 10px;
    min-width: auto;
  }

  [data-theme="light"] .nav-dropdown {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-dropdown a {
    font-size: 1.1rem !important;
    border: none !important;
    padding: 8px 0 !important;
    color: var(--sb-text-secondary) !important;
  }


  .footer-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-top {
    flex-direction: column !important;
    gap: 40px;
  }

  .footer-brand-col,
  .footer-nav-col {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}


.mobile-nav {
  display: none;
}

@media (max-width: 768px) {


  .mobile-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;

    max-width: 420px;
    display: flex;
    justify-content: center;

    gap: 16px;

    align-items: center;
    padding: 12px 12px;

    border-radius: 50px;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    z-index: 999;
    white-space: nowrap;

  }


  .nav-item {
    color: white;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 90ms ease, color 200ms ease, text-shadow 300ms ease;
    padding: 8px 4px;
  }


  .nav-item:active {
    transform: scale(0.97);

  }


  .nav-item.active {
    color: #C6A75E;
  }


  .nav-item.more-active {
    color: #C6A75E;
    text-shadow:
      0 0 4px rgba(198, 167, 94, 0.35);

  }

  body {
    padding-bottom: 110px !important;
  }


  .header-inner {
    flex-wrap: nowrap !important;
  }


  .desktop-nav {
    display: none !important;
  }


  .whatsapp-float {
    bottom: 90px !important;
  }


  .site-header.scrolled .logo {
    opacity: 1 !important;
    max-width: 200px !important;
    transform: none !important;
    pointer-events: auto !important;
  }


  .mobile-more-panel {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.985);

    width: 92%;
    max-width: 420px;

    background: linear-gradient(180deg,
        rgba(22, 22, 22, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 100%);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;


    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);

    opacity: 0;
    pointer-events: none;


    transition:
      opacity 180ms ease-out,
      transform 220ms cubic-bezier(0.25, 0.1, 0.25, 1),
      box-shadow 250ms ease;

    z-index: 998;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }


  .mobile-more-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right,
        transparent,
        rgba(198, 167, 94, 0.9),
        transparent);
    filter: blur(1px);
    border-radius: 50px;
    pointer-events: none;
  }


  .mobile-more-panel::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center,
        rgba(198, 167, 94, 0.06) 0%,

        transparent 70%);
    pointer-events: none;
    z-index: -1;
  }


  .mobile-more-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);

  }


  .mobile-more-panel a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.8px;
    font-weight: 500;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 180ms ease, transform 180ms ease;
  }

  .mobile-more-panel a:last-child {
    border-bottom: none;
  }

  .mobile-more-panel a:active {
    background: rgba(198, 167, 94, 0.05);
    transform: scale(0.99);
  }

  .mobile-more-panel a:hover {
    color: #C6A75E;
    transform: translateX(4px);

    padding-left: 14px;

  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}


html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-logo img {
    display: block;
    margin: 0 auto;
  }

  .footer-description {
    text-align: center;
    max-width: 320px;
    margin: 0 auto 16px auto;
  }

  .footer-links {
    align-items: center;
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }
}

/* =========================================
   Founders Grid (Desktop Fix)
   ========================================= */
.founders-section {
  padding: 100px 0;
  background-color: var(--sb-bg-secondary);
  /* or similar */
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.founder-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.founder-img-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 24px;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: grayscale(20%);
}

.founder-card:hover .founder-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.founder-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--sb-text);
}

.founder-info span {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sb-gold);
  margin-bottom: 16px;
}

.stats-section {
  padding: 80px 0;
  background: var(--sb-bg);
  border-top: 1px solid var(--sb-border);
  border-bottom: 1px solid var(--sb-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--sb-gold);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--sb-text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   About Story Layout
   ========================================= */
.about-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}

.about-intro .lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--sb-text);
  margin-bottom: 24px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  /* Optional rounded corners */
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.03);
}

.story-content-col h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--sb-text);
}

.story-content-col p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--sb-text-secondary);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-content-col h2 {
    font-size: 2rem;
  }
}

/* =========================================
   Page Hero (Global)
   ========================================= */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -80px;
  /* Offset for transparent header */
  padding-top: 80px;
  color: #fff;
}

.page-hero::before {
  /* Overlay alias if hero-overlay div not used, but we use div */
  content: '';
  /* fallback if needed */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 16px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* =========================================
   Part 1: Header Spacing Fix
   ========================================= */
.nav-links {
  display: flex !important;
  gap: 2px !important;
  align-items: center !important;
  white-space: normal !important;
}

.nav-links a {
  display: inline-block !important;
  /* Ensure proper anchor behavior */
}

/* =========================================
   Part 2: Clean Hero Structure
   ========================================= */
/* =========================================
   Part 2: Clean Hero Structure & About Page Layout
   ========================================= */
.about-hero {
  padding: 140px 20px 100px 20px;
  text-align: center;
}

.about-hero .about-container {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================
   Part 3: About Page Redesign (Editorial)
   ========================================= */
.about-split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text-col,
.about-img-col {
  flex: 1;
  min-width: 300px;
}

.about-img-col img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-bar {
  background: #111;
  color: #fff;
  padding: 80px 0;
  margin: 0;
  /* Full width strip */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading, serif);
  font-size: 3rem;
  color: #cbb06a;
  margin-bottom: 10px;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .about-split-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

/* Global Container System (About Page) */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section {
  padding: 100px 0;
}

/* About Lead Text */
.about-lead {
  max-width: 800px;
  margin: 20px auto 0 auto;
  line-height: 1.8;
  text-align: center;
  opacity: 0.9;
}

/* Grid Spacing */
.values-grid {
  margin-top: 60px;
}

.founders-grid {
  margin-top: 60px;
}