/* ============================================
   1. VARIABLES
   ============================================ */
:root {
  --gold-primary: #caa66a;
  --gold-secondary: #b1aa64;
  --gold-light: #dbb87a;
  --gold-gradient: linear-gradient(135deg, #caa66a 0%, #b1aa64 100%);
  --gold-gradient-move: linear-gradient(270deg, #caa66a, #dbb87a, #caa66a);

  --surface-light: #e8ecef;
  --dark: #2c303b;
  --dark-secondary: #1a1e26;
  --text-light: #f5f6f8;
  --text-muted: #a0a5b0;

  --background: var(--surface-light);
  --surface: #ffffff;
  --text: var(--dark);
  --border: rgba(202, 166, 106, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 20px rgba(44, 48, 59, 0.08);
  --shadow-md: 0 8px 40px rgba(44, 48, 59, 0.12);
  --shadow-lg: 0 20px 60px rgba(44, 48, 59, 0.18);
  --shadow-gold: 0 8px 40px rgba(202, 166, 106, 0.25);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
  --nav-height: 90px;
  --nav-height-scrolled: 72px;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Image Controls */
  --hero-image-opacity: 0.5;
  --hero-image-scale: 1.08;
  --location-image-opacity: 0.45;
  --location-image-scale: 1.05;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--surface-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 100px 0;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.section-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-label.gold {
  color: var(--gold-primary);
}

.section-label.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title.light {
  color: var(--text-light);
}

.section-title.gold {
  color: var(--gold-primary);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-large {
  padding: 18px 48px;
  font-size: 17px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(202, 166, 106, 0.1);
  transform: translateY(-2px);
}

.btn-outline.gold {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn-outline.gold:hover {
  background: var(--gold-primary);
  color: var(--dark);
}

.btn-outline.gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 106, 0.3), transparent);
  transition: 0.8s ease;
}

.btn-outline.gold:hover::before {
  left: 150%;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: rgba(44, 48, 59, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(202, 166, 106, 0.15);
}

.navbar.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(26, 30, 38, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-light);
  text-decoration: none;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition);
}

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

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

.nav-cta-btn {
  padding: 10px 28px;
  background: var(--gold-gradient);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  font-family: var(--font-sans);
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger-line {
  width: 28px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   6. NAVIGATION LOGO
   ============================================ */
.nav-logo {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.navbar.scrolled .nav-logo {
  height: 38px;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 36px;
    max-width: 150px;
  }
  
  .navbar.scrolled .nav-logo {
    height: 30px;
  }
}

/* ============================================
   7. HERO
   ============================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 0 80px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: var(--hero-image-opacity);
  transform: scale(var(--hero-image-scale));
  transition: transform 0.1s linear;
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(202, 166, 106, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(202, 166, 106, 0.02) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 48, 59, 0.85) 0%, transparent 60%);
  z-index: 1;
}

.hero-gold-light {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(202, 166, 106, 0.08) 0%, transparent 70%);
  z-index: 1;
  animation: goldPulse 8s ease-in-out infinite alternate;
}

@keyframes goldPulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 166, 106, 0.12), transparent 70%);
  animation: floatParticle 15s infinite alternate ease-in-out;
}

.hero-particles::before {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
  animation-delay: -3s;
}

.hero-particles::after {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 10%;
  animation-delay: -7s;
}

@keyframes floatParticle {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(50px, -30px) scale(1.2); opacity: 0.6; }
}

.hero-bg-text {
  position: absolute;
  top: 10%;
  right: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(120px, 20vw, 320px);
  color: rgba(202, 166, 106, 0.04);
  letter-spacing: 8px;
  line-height: 0.9;
  z-index: 1;
  pointer-events: none;
  text-align: right;
  white-space: nowrap;
  transition: transform 0.1s linear;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(44, 48, 59, 0.85);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero-title br {
  display: block;
}

.hero-subtitle {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.hero-description {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   8. REVEAL ANIMATIONS
   ============================================ */
.reveal-text {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============================================
   9. VISION / ABOUT
   ============================================ */
.vision-section {
  background: var(--surface-light);
  position: relative;
  overflow: hidden;
}

.vision-bg-text {
  position: absolute;
  bottom: -5%;
  left: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(150px, 25vw, 400px);
  color: rgba(44, 48, 59, 0.03);
  z-index: 0;
  pointer-events: none;
  line-height: 0.8;
  transition: transform 0.1s linear;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vision-visual {
  position: relative;
}

.director-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.director-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.director-image[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}

.gold-frame {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold-primary);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}

.vision-content {
  padding: 20px 0;
}

.vision-text {
  margin-bottom: 32px;
}

.vision-text p {
  margin-bottom: 16px;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.8;
}

.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-primary);
}

.pillar-icon {
  font-size: 20px;
  color: var(--gold-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.pillar p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.5;
}

/* ============================================
   10. LOCATION STORY
   ============================================ */
.location-story-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--dark-secondary);
}

.location-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.location-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: var(--location-image-opacity);
  transform: scale(var(--location-image-scale));
  transition: transform 0.1s linear;
  position: relative;
}

.location-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(202, 166, 106, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(202, 166, 106, 0.02) 0%, transparent 40%);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 30, 38, 0.85) 0%, rgba(26, 30, 38, 0.4) 100%);
  z-index: 1;
}

.location-story-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.location-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-story-text p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.location-story-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0 32px;
}

.location-story-details div {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.location-story-details i {
  color: var(--gold-primary);
  width: 18px;
  font-size: 14px;
}

.location-story-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.15);
}

.landscape-frame {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landscape-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.landscape-preview i {
  font-size: 48px;
  opacity: 0.3;
}

.landscape-preview span {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   11. WILDLIFE EXPERIENCE
   ============================================ */
.wildlife-section {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
}

.wildlife-bg-text {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: rgba(202, 166, 106, 0.03);
  z-index: 0;
  pointer-events: none;
  letter-spacing: 12px;
  transition: transform 0.1s linear;
}

.wildlife-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.wildlife-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.wildlife-carousel {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 350px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active .slide-image {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 30, 38, 0.7) 0%, transparent 50%);
}

.slide-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  max-width: 500px;
}

.slide-caption h4 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-light);
  margin-bottom: 4px;
}

.slide-caption p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 300;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(26, 30, 38, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(202, 166, 106, 0.08);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(202, 166, 106, 0.2);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.carousel-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(202, 166, 106, 0.1);
  color: var(--gold-primary);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.indicator.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(202, 166, 106, 0.3);
  width: 28px;
  border-radius: 5px;
}

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

.wildlife-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.wildlife-conservation {
  color: rgba(255, 255, 255, 0.5);
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ============================================
   12. HONEY HILLS FEATURE
   ============================================ */
.honey-hills-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hh-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(80px, 15vw, 200px);
  color: rgba(202, 166, 106, 0.04);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 4px;
  transition: transform 0.1s linear;
}

.hh-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hh-header .section-title {
  color: var(--text-light);
}

.hh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(202, 166, 106, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold-primary);
  line-height: 1;
}

.stat-number::after {
  content: '+';
  font-size: 0.6em;
  margin-left: 2px;
}

.stat-number[data-count="36"]::after {
  content: '';
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hh-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.hh-pillar {
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: default;
}

.hh-pillar:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(202, 166, 106, 0.08);
  background: rgba(202, 166, 106, 0.05);
}

.hh-pillar-icon {
  font-size: 40px;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: block;
}

.hh-pillar h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.hh-pillar p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

.hh-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   13. STAND OPTIONS
   ============================================ */
.stand-options-section {
  background: var(--surface-light);
  position: relative;
}

.stand-options-section .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.stand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stand-panel {
  padding: 48px 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(202, 166, 106, 0.15);
  transition: all var(--transition);
  position: relative;
}

.stand-panel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.stand-panel.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, #ffffff 0%, #fcf8f0 100%);
  box-shadow: var(--shadow-gold);
}

.stand-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  padding: 4px 20px;
  background: var(--gold-gradient);
  color: var(--dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stand-size {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  color: var(--dark);
}

.stand-size span {
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 4px;
}

.stand-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 16px 0 24px;
}

.stand-details {
  border-top: 1px solid rgba(44, 48, 59, 0.08);
  padding-top: 20px;
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}

.detail-label {
  opacity: 0.6;
}

.detail-value {
  font-weight: 600;
}

/* ============================================
   14. DEVELOPMENTS
   ============================================ */
.developments-section {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
}

.dev-bg-text {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: rgba(202, 166, 106, 0.03);
  z-index: 0;
  pointer-events: none;
  letter-spacing: 12px;
  transition: transform 0.1s linear;
}

.dev-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.dev-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.dev-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.dev-block:hover .dev-block-bg {
  transform: scale(1.05);
}

.dev-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 30, 38, 0.85) 0%, rgba(26, 30, 38, 0.4) 100%);
}

.dev-block-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 700px;
}

.dev-block-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text-light);
  margin-bottom: 16px;
}

.dev-block-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

.dev-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 24px;
}

.dev-meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dev-meta i {
  color: var(--gold-primary);
}

/* ============================================
   15. INVESTMENT
   ============================================ */
.investment-section {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
}

.investment-bg-text {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(140px, 22vw, 360px);
  color: rgba(202, 166, 106, 0.03);
  z-index: 0;
  pointer-events: none;
  letter-spacing: 16px;
  line-height: 0.8;
  transition: transform 0.1s linear;
}

.investment-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.investment-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.investment-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.investment-features div {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.investment-features .gold {
  color: var(--gold-primary);
  font-size: 18px;
}

/* ============================================
   16. DIRECTOR
   ============================================ */
.director-section {
  background: var(--surface-light);
  position: relative;
}

.director-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.director-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.portrait-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portrait-image[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}

.gold-frame-thick {
  position: absolute;
  inset: -12px;
  border: 4px solid var(--gold-primary);
  border-radius: calc(var(--radius-lg) + 12px);
  pointer-events: none;
  opacity: 0.6;
}

.director-bio p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 24px;
}

.director-quote {
  padding: 24px 32px;
  background: rgba(202, 166, 106, 0.06);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.director-quote i {
  color: var(--gold-primary);
  font-size: 24px;
  opacity: 0.4;
  margin-right: 8px;
}

.director-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--dark);
  opacity: 0.9;
  margin-bottom: 8px;
}

.director-name {
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

/* ============================================
   17. CONTACT
   ============================================ */
.contact-section {
  background: var(--gold-gradient);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-content .section-title {
  color: var(--dark);
}

.contact-content p {
  color: rgba(44, 48, 59, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.25);
}

.contact-card i {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-card a {
  display: block;
  color: var(--dark);
  opacity: 0.7;
  font-size: 15px;
  margin: 4px 0;
  transition: opacity var(--transition);
}

.contact-card a:hover {
  opacity: 1;
}

.contact-card p {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 16px;
}

/* ============================================
   18. FOOTER
   ============================================ */
.footer-section {
  background: var(--dark-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(202, 166, 106, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.footer-brand .brand-name {
  color: var(--text-light);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

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

.footer-social a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color var(--transition);
  text-decoration: none;
}

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

.footer-col ul a i {
  margin-right: 8px;
  color: var(--gold-primary);
  opacity: 0.6;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* ============================================
   19. SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(202, 166, 106, 0.3);
}

.navbar.scrolled + .scroll-progress {
  top: var(--nav-height-scrolled);
}

/* ============================================
   20. MOBILE MENU CTA BUTTON
   ============================================ */
.mobile-cta-btn {
  display: none;
  padding: 14px 32px;
  background: var(--gold-gradient);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition);
  font-family: var(--font-sans);
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
  width: 100%;
  max-width: 280px;
  border: none;
  cursor: pointer;
  position: relative;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Separator line above mobile CTA */
.mobile-cta-btn::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(202, 166, 106, 0.3);
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .mobile-cta-btn {
    display: block;
  }
}

/* ============================================
   21. MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
  .vision-grid,
  .director-grid,
  .location-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-visual {
    order: -1;
  }

  .director-portrait {
    max-width: 400px;
    margin: 0 auto;
  }

  .location-story-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
    --nav-height-scrolled: 64px;
  }

  .section-padding {
    padding: 60px 0;
  }

  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 30, 38, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 80px 40px 60px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .nav-link {
    font-size: 22px;
  }

  .nav-cta-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-section {
    min-height: 70vh;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-bg-text {
    font-size: 80px;
    top: 15%;
    right: -10%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  /* Location Story */
  .location-story-section {
    min-height: auto;
  }

  .location-story-grid {
    gap: 30px;
  }

  .location-story-details {
    grid-template-columns: 1fr;
  }

  /* Wildlife */
  .carousel-track {
    aspect-ratio: 4/3;
    min-height: 250px;
  }

  .slide-caption {
    bottom: 20px;
    left: 20px;
    max-width: 80%;
  }

  .slide-caption h4 {
    font-size: 20px;
  }

  .slide-caption p {
    font-size: 13px;
  }

  .carousel-controls {
    padding: 14px 16px;
    gap: 16px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Stats */
  .hh-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Stands */
  .stand-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .stand-panel {
    padding: 32px 24px;
  }

  /* Honey Hills pillars */
  .hh-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hh-pillar {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: 1fr;
  }

  /* Investment */
  .investment-features div {
    font-size: 14px;
  }

  /* Director */
  .director-quote p {
    font-size: 17px;
  }

  .dev-block-content {
    padding: 28px 20px;
  }

  .dev-meta {
    gap: 10px 16px;
  }

  .dev-meta span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .hero-title {
    font-size: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stand-size {
    font-size: 44px;
  }

  .stand-price {
    font-size: 26px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .carousel-track {
    aspect-ratio: 1/1;
    min-height: 200px;
  }

  .slide-caption {
    bottom: 16px;
    left: 16px;
  }

  .slide-caption h4 {
    font-size: 17px;
  }

  .slide-caption p {
    font-size: 12px;
  }

  .wildlife-intro {
    font-size: 15px;
  }
}

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

  .reveal-left,
  .reveal-right,
  .reveal-item,
  .reveal-text {
    opacity: 1 !important;
    transform: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  .hero-particles::before,
  .hero-particles::after {
    animation: none !important;
    display: none;
  }

  .carousel-slide {
    transition: none !important;
  }

  .carousel-slide.active .slide-image {
    transform: none !important;
  }

  .slide-image {
    transform: none !important;
  }
}