:root{
  --bg: #050505;     /* Deep Luxury Black */
  --ink: #111315;
  --white: #ffffff;
  --muted: #9CA3AF;
  --line: rgba(255,255,255,0.08);
  --card: #0a0a0a;
  
  /* --- LUXURY COLORS --- */
  --gold: #D5CBA1;        /* Platinum Gold */
  --gold-dim: #8C8466;    
  
  /* --- LUXURY TYPOGRAPHY --- */
  --display: "Cormorant Garamond", serif; /* The new premium serif */
  --sans: "Manrope", sans-serif;          /* Modern clean sans */
  
  --max: 1280px;
}

/* Reset */
*,*::before,*::after{box-sizing:border-box}
html,body{
  margin:0; padding:0;
  font-family: var(--sans);
  background: var(--bg);
  color: #ececec;
  overflow-x: hidden;
}
a{ text-decoration:none; color:inherit; transition: all 0.3s ease; }
img{ max-width:100%; display:block; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 1. LUXURY HEADER (Floating Glass) --- */
header {
  position: fixed; 
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  /* Subtle gradient so text is readable over video */
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

/* State: When scrolled down */
header.scrolled {
  padding: 16px 0;
  background: rgba(5, 5, 5, 0.95); 
  backdrop-filter: blur(12px);     
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Styling */
.brand {
  display: flex;
  align-items: center;
  gap: 14px; /* Slightly more gap for the logo */
}
.logo {
  width: 42px; height: 42px; /* Slightly larger logo box */
  background: var(--gold);
  color: #000;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  display: grid; place-items: center;
  border-radius: 2px; 
}

/* *** NEW BRAND TEXT STYLING *** */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.brand-title {
  /* 1. Use Cormorant (Serif) for the main name */
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem; 
  color: #fff;
  letter-spacing: 0.01em;
}
.brand-tagline {
  /* 2. Use Manrope (Sans) for the tagline */
  font-family: var(--sans);
  font-size: 0.6rem; /* Very small, elegant */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Very wide spacing */
  color: var(--gold); /* Gold color */
  margin-top: 3px;
  font-weight: 600;
}
/* *** END BRAND UPDATE *** */


/* Desktop Menu Styling */
.menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 900px) { .menu { display: none; } }

.menu a, .dropdown-toggle {
  font-family: var(--sans);
  font-size: 0.75rem; 
  text-transform: uppercase;
  letter-spacing: 0.15em; 
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: none; border: none; cursor: pointer;
}
.menu a:hover, .menu a.active {
  color: var(--gold);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 150%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-radius: 2px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 14px 24px;
  font-family: var(--sans);
  text-transform: uppercase; 
  letter-spacing: 0.12em;
  font-size: 0.7rem; 
  font-weight: 600;
  color: #999;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.2s ease;
}
.dropdown-menu a:last-child {
  border-bottom: none;
}
.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.03);
  padding-left: 28px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 10px;
}
.bar {
  width: 24px; height: 1px; background: #fff;
}
@media (max-width: 900px) { .hamburger { display: flex; } }

/* --- FULL SCREEN MENU (Refined Sizes) --- */
.full-nav-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: #080808; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.full-nav-overlay.active { opacity: 1; pointer-events: all; }

.full-nav-links { display: flex; flex-direction: column; text-align: center; gap: 18px; }

/* Main Links (Home, About, Spotlight) */
.full-nav-links a {
  font-family: var(--display); /* Cormorant */
  font-size: 2.2rem; /* Reduced from 3rem to look elegant */
  font-weight: 500;
  color: rgba(255,255,255,0.9); /* Bright white */
  letter-spacing: 0.02em;
}
.full-nav-links a:hover { color: var(--gold); }

/* Sub Links (The Explore items) */
.full-nav-links a.sub { 
  font-family: var(--display);
  font-size: 1.8rem;  /* Very close to main size, just slightly lighter */
  color: rgba(255,255,255,0.5); /* Muted white/grey */
  font-weight: 400;
  margin-top: -8px; /* Pulls them closer together */
}
.full-nav-links a.sub:hover {
  color: var(--gold);
  opacity: 1;
}

/* The label "Explore" */
.full-nav-title {
  font-family: var(--sans); 
  text-transform: uppercase; 
  letter-spacing: 3px; 
  color: var(--gold); 
  font-size: 0.75rem; /* Small and sharp */
  margin-top: 15px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.nav-close-btn {
  position: absolute; top: 30px; right: 30px;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}
/* --- GENERAL STYLES (Buttons, etc) --- */
.btn {
  border-radius: 2px; 
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  padding: 14px 28px;
}
.btn-gold { background: var(--gold); color: #000; }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; }

/* Sections */
.section { padding: 100px 0; }
.white { background: #fff; color: #111; }
.offwhite { background: #f4f4f5; color: #111; }
.dark { background: #0b0b0b; color: #fff; }

/* Typography */
h1, h2, h3, .title { font-family: var(--display); font-weight: 500; }
h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
@media (max-width: 768px) { h1 { font-size: 3.2rem; } }

p { font-family: var(--sans); line-height: 1.7; }
.lead { font-size: 1.2rem; color: rgba(255,255,255,0.7); }

/* Hero Video */
.hero { padding-top: 140px; padding-bottom: 60px; }

/*NEW CINEMATIC HERO STYLES ---*/

.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  min-height: 600px; /* Minimum height for mobile */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 1. Video Background Logic (Smarter Responsive Fix) */
.video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none; 
}

.video-frame {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Default: Fit to Width (Good for Desktop/Laptop) */
  width: 100vw; 
  height: 56.25vw; /* 16:9 Aspect Ratio */
}

/* Smart Rule: If the screen is TALL (Mobile/Tablet), fit to Height instead */
@media (max-aspect-ratio: 16/9) {
  .video-frame {
    width: 177.78vh; /* 16:9 Aspect Ratio based on height */
    height: 100vh;
  }
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  /* No scale needed anymore, the math above is precise */
}

/* 2. Overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.65); 
  z-index: 1;
}

/* 3. Content */
.hero-content {
  position: relative;
  z-index: 10; 
  width: 100%;
  padding-top: 60px; 
  padding-left: 20px;
  padding-right: 20px;
}
.hero-title {
  font-family: var(--display);
  font-size: 4rem; 
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-content .lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto 30px auto;
}
/* Updated Pretitle (Kicker) Style */
.hero-content .kicker {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase; /* Capital Letters */
  margin-bottom: 24px;
  
  /* The "Dark Shadow BG" Look */
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6); /* Dark see-through background */
  padding: 10px 20px;
  border-radius: 50px; /* Pill shape */
  border: 1px solid rgba(213, 203, 161, 0.3); /* Subtle gold border */
  backdrop-filter: blur(4px); /* Luxury glass effect */
}
.cta-row.justify-center {
  justify-content: center;
}

/* Updated Button Row */
.cta-row {
  display: flex;
  gap: 16px; /* Space between buttons */
  flex-wrap: wrap;
}

.cta-row.justify-center {
  justify-content: center;
}

/* *** FIX FOR MOBILE BUTTONS *** */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: column; /* Stack them top-to-bottom */
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  
  .cta-row .btn {
    width: 100%;       /* Full width buttons */
    max-width: 320px;  /* But not too wide */
    justify-content: center; /* Center text inside button */
    text-align: center;
  }
}

/* Responsive Text Sizes (Only change text size, not video size) */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; } /* Smaller title on mobile */
  .hero-content .lead { font-size: 1rem; }
}

/* ECOSYSTEM SECTION */

/* 1. Refine the Ecosystem Title */
.eco-title {
  font-family: var(--display);
  font-size: 2.5rem !important; /* Reduced from 3.5rem */
  line-height: 1.2;
  color: var(--ink); /* Ensure it's dark on white background */
  margin-bottom: 20px;
  font-weight: 500; /* Slightly lighter weight */
}

/* 2. Refine the Value Code Title */
.value-title {
  font-size: 2.8rem !important; /* Reduced from 4rem */
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* 3. Refine Standard Section Titles (Events, etc.) */
.title {
  font-family: var(--display);
  font-size: 2.2rem !important; /* Reduced from 32px/2rem */
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

/* 4. Refine the "Lead" text */
.lead, .eco-desc {
  font-size: 1.1rem !important; /* Slightly smaller, more readable */
  line-height: 1.8;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .eco-title, .value-title { font-size: 2rem !important; }
  .title { font-size: 1.8rem !important; }
}

/* --- REIMAGINED SECTION (Refined Luxury) --- */

.reimagined-light {
  background: #FFFFFF; /* Pure white for clean contrast */
  padding: 100px 0;    /* Matches Ecosystem padding */
  position: relative;
}

/* The 2x2 Grid */
.luxury-grid-2x2 {
  display: grid;
  gap: 24px; /* Slightly tighter gap for cohesion */
  grid-template-columns: 1fr;
  max-width: 960px; /* Constrain width for readability */
  margin: 0 auto;
}
@media (min-width: 768px) {
  .luxury-grid-2x2 { 
    grid-template-columns: 1fr 1fr; 
  }
}

/* The Framed Card */
.xp-framed {
  background: #ffffff;
  padding: 40px 36px; /* Refined padding */
  /* Thinner, subtler gold border like the Ecosystem frame */
  border: 1px solid rgba(213, 203, 161, 0.4); 
  border-radius: 2px; 
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xp-framed:hover {
  background: rgba(213, 203, 161, 0.04); /* Very subtle tint */
  border-color: var(--gold);
  transform: translateY(-3px); /* Smaller, elegant lift */
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.05);
}

/* Card Heading - Smaller & Elegant */
.xp-framed h3 {
  font-family: var(--display);
  font-size: 1.6rem; /* Reduced from 2rem for elegance */
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Card Text */
.xp-framed p {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #666; /* Softer grey */
  line-height: 1.7;
  margin: 0;
}

/* --- CENTERING UTILITY --- */
.center-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto; /* Auto margins centers the box */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- VALUE CODE CHALLENGE (Cinematic Dark) --- */
.value-section {
  background: #050505;
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle gold glow behind the text */
.value-section::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(213, 203, 161, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.value-title {
  font-family: var(--display);
  font-size: 4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.value-highlight {
  color: var(--gold);
  font-style: italic; /* Adds that "Vogue" editorial feel */
  font-weight: 400;
}

/* --- TEXT-ONLY EVENT CARDS (Luxury - Full Gold Frame) --- */

/* The Card Container */
.event-card-text {
  background: #ffffff;
  /* Full, subtle gold frame */
  border: 1px solid rgba(213, 203, 161, 0.5); 
  border-radius: 2px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.event-card-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
  /* On hover, border becomes solid gold and bg gets a tiny tint */
  border-color: var(--gold); 
  background: rgba(213, 203, 161, 0.05);
}

/* Date Label */
.evt-date {
  font-family: var(--sans);
  color: var(--gold-dim); 
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  display: block;
}

/* Title (Refined: Lighter & Softer) */
.evt-title {
  font-family: var(--display);
  font-size: 1.75rem; /* Reduced size */
  line-height: 1.2;
  color: rgba(17, 19, 21, 0.85); /* Slightly opaque/dimmed */
  font-weight: 400; /* Less bold */
  margin-bottom: 15px;
}

/* Location & Link Row */
.evt-loc {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #666;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 15px;
  margin-top: auto; 
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- SMART GRID LAYOUTS --- */

.smart-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

/* 1 Event: Centered, Max Width */
.smart-grid.one-item {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}
/* Slightly larger title for the single featured event */
.smart-grid.one-item .evt-title { font-size: 2.2rem; } 

/* 2 Events: 50/50 Split */
.smart-grid.two-items {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .smart-grid.two-items { grid-template-columns: 1fr 1fr; }
}

/* 3 Events: 33/33/33 Split */
.smart-grid.three-items {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .smart-grid.three-items { grid-template-columns: repeat(3, 1fr); }
}
/* --- MINIMALIST NEWSLETTER FORM --- */
.newsletter-minimal {
  max-width: 600px;
  margin: 0 auto;
}
.input-line-group {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}
/* Clean Underline Style inputs */
.input-line {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  border-radius: 0;
  padding: 15px 0;
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.input-line:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.input-line::placeholder {
  color: #9ca3af;
  font-weight: 300;
}

/* --- RECAPTCHA LUXURY STYLING --- */
.recaptcha-container {
  display: flex;
  justify-content: center; /* Center aligns with the form */
  margin-top: 30px;
  margin-bottom: 10px;
  transform-origin: center;
}

/* On very small screens, scale it down slightly so it fits the elegance */
@media (max-width: 400px) {
  .recaptcha-container {
    transform: scale(0.85); 
  }
}

/* --- UNIFIED LUXURY TYPOGRAPHY --- */

/* 1. Standardize Section Titles (Events, Newsletter) */
.title, .eco-title {
  font-family: var(--display);
  font-size: 2.5rem !important; /* The new standard (was 3.5rem+) */
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 15px;
}

/* 2. Standardize Subtitles (The gold text above titles) */
.subtitle, .eco-subtitle {
  font-family: var(--sans);
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

/* 3. Value Code Special Title (Dark Background) */
.value-title {
  font-family: var(--display);
  font-size: 3rem !important; /* Slightly larger for impact, but refined */
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Mobile Sizing */
@media (max-width: 768px) {
  .title, .eco-title { font-size: 2rem !important; }
  .value-title { font-size: 2.2rem !important; }
}

/* Responsive */
@media (max-width: 768px) {
  .value-title { font-size: 2.8rem; }
}

/* Responsive Text */
@media (max-width: 768px) {
  .eco-title { font-size: 2.5rem; }
}

/* --- ABOUT PAGE LUXURY STYLES --- */

/* 1. Refined Text Columns */
.text-editorial {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}
.text-editorial p {
  margin-bottom: 24px;
}
.text-editorial strong {
  color: #000;
  font-weight: 600;
}

/* 2. Philosophy Section (Dark Mode) */
.philosophy-section {
  background: #080808;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.philosophy-card {
  border-left: 2px solid var(--gold);
  padding-left: 40px;
  margin: 0 auto;
  max-width: 900px;
}
.philosophy-text {
  font-family: var(--display);
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  font-style: italic;
}
.philosophy-author {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 30px;
  display: block;
}

/* 3. Global Presence List (Refined) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
}
.loc-item h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.loc-item p {
  font-size: 0.9rem;
  color: #666;
}

/* --- LUXURY FORM STYLES (Join Page) --- */

/* The "Underline" Input Style */
.input-luxury {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(17, 19, 21, 0.15); /* Light grey line */
  border-radius: 0; /* No rounded corners */
  padding: 16px 0; /* Tall touch target */
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.input-luxury:focus {
  outline: none;
  border-bottom: 2px solid var(--gold); /* Gold line on focus */
  background: rgba(213, 203, 161, 0.02); /* Tiny tint on focus */
}

.input-luxury::placeholder {
  color: #9ca3af;
  font-weight: 300;
  font-size: 0.95rem;
}

/* Form Labels */
.label-luxury {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 5px;
  margin-top: 20px;
}
/* --- PRIVILEGE CARD (Pure White & Floating) --- */

.privilege-card {
  background: #ffffff !important; /* Pure White Background */
  
  /* The "Tricky" Shadow: Soft, spread out, feels expensive */
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.08) !important;
  
  /* Remove thick borders, keep it clean */
  border: 1px solid rgba(0,0,0,0.03) !important;
  border-top: 3px solid var(--gold) !important; /* Keep Gold Top Accent */
  
  padding: 60px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.privilege-header {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ink) !important; /* Dark Text */
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important; /* Very subtle line */
}

.privilege-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privilege-item {
  position: relative;
  padding-left: 25px; /* Space for the marker */
  margin-bottom: 25px;
}
.privilege-item:last-child { margin-bottom: 0; }

/* Generic Gold Marker (Diamond shape) */
.privilege-item::before {
  content: "◆"; 
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-size: 0.8rem;
}

.priv-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink) !important; /* Dark Text */
  display: block;
  margin-bottom: 4px;
}

.priv-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #666 !important; /* Elegant Dark Grey */
  line-height: 1.6;
}

/* *** BUTTON FIX: Ensure no black border *** */
.btn-gold {
  background: var(--gold) !important;
  color: #000 !important;
  border: none !important; /* Force removal of border */
  box-shadow: none !important; /* Remove shadow for flatter look if preferred */
}
.btn-gold:hover {
  background: #e0d6ac !important; /* Slightly lighter gold on hover */
  transform: translateY(-1px);
}

/* --- GLOBAL HERO TITLE REFINEMENT --- */
/* This applies to About, Contact, Join, and Spotlight */

.hero h1 {
  font-family: var(--display);
  font-size: 3.2rem !important; /* The "Elegant" size (was 4.5rem) */
  font-weight: 400 !important;   /* Regular weight (was Bold) */
  letter-spacing: -0.01em !important;
  line-height: 1.15 !important;
  color: #ffffff !important;     /* Force white text on dark backgrounds */
  margin-bottom: 15px !important;
}

/* Mobile Sizing */
@media (max-width: 768px) {
  .hero h1 { 
    font-size: 2.4rem !important; 
  }
}

/* Optional: Make the "Kicker" (small text above title) gold & sleek everywhere */
.hero .eco-subtitle, 
.hero .kicker {
  color: var(--gold) !important;
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  display: block;
}

/* BLOG & POST STYLES (LUXURY REDESIGN) */
/* 1. BLOG LIST PAGE (Spotlight.php) */
.blog-grid {
  display: grid;
  gap: 40px; /* More white space */
  padding-top: 40px;
}
@media(min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr; /* 2-column elegant list */
    gap: 60px 40px; /* Wide row gap, standard column gap */
  }
}

.blog-card {
  background: transparent; /* Clean up background */
  border: none;
  border-bottom: 1px solid #eee; /* Subtle bottom separator */
  padding-bottom: 30px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
  overflow: visible;
}
.blog-card:hover {
  border-bottom-color: var(--gold); /* Gold line on hover */
}

.blog-card-image-link {
  display: block;
  margin-bottom: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02); /* Very soft shadow */
}

.blog-card-title {
  font-family: var(--display); /* Cormorant */
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 500;
}
.blog-card:hover .blog-card-title {
  color: #333;
}
.blog-card-excerpt {
  font-family: var(--sans);
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.blog-card-meta {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}
.btn-read-more {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 15px;
}

/* 2. SINGLE POST PAGE (post.php) */
.post-hero {
  padding-top: 150px !important; /* Space for fixed header */
  padding-bottom: 50px;
  background: #fff;
  text-align: center;
}

.post-content {
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  padding-top: 20px;
}
.post-content h2, .post-content h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.8em;
  margin-bottom: 0.8em;
}

/* Fix for old link styles */
.post-content a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover {
  color: var(--gold);
}

/* --- FIX: BLOG CARD IMAGE ASPECT RATIO --- */

.blog-card .event-media {
  /* This forces the container to be a wide, cinematic rectangle */
  aspect-ratio: 16 / 10; 
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 2px; /* Matches luxury design */
}

.blog-card .event-media img {
  /* This ensures the image fills the container without stretching, cropping if necessary */
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center center; /* Focuses the center of the image */
}

/* --- SINGLE POST PAGE REFINEMENT (post.php) --- */

.content-narrow {
  max-width: 800px; /* Tighter column width for better reading */
  margin: 0 auto;
}

/* FIX: Image Container Aspect Ratio (Fixes "too long" issue) */
.post-hero-image {
  width: 100%;
  /* Force a cinematic ratio to prevent vertical stretching */
  aspect-ratio: 16 / 9; 
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  border-radius: 2px;
}
.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the frame without stretching */
}

/* FIX: Refine Post Title Size (Matches your elegant 3.0rem standard) */
.post-hero h1.title {
  /* Reduced from 4.5rem/3rem to be elegant and readable */
  font-size: 2.8rem !important; 
  font-weight: 500 !important;
  color: var(--ink);
}

.post-content {
  /* More spacious paragraphs for luxury readability */
  padding-top: 40px; 
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 768px) {
  .post-hero h1.title { font-size: 2rem !important; }
}

/* --- VALUE CODE CHALLENGE STYLES --- */

/* 1. Standardize Section Titles */
.title {
    font-family: var(--display);
    font-size: 2.5rem !important;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink);
    margin-bottom: 15px;
}

/* 2. Value Code Special Title (Dark Background) */
.value-title {
    font-family: var(--display);
    font-size: 3rem !important; 
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
}
.value-highlight {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* 3. TEXTUAL CONTENT STYLING */
.text-editorial {
  font-size: 1.15rem; 
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}
.text-editorial p {
  margin-bottom: 24px;
}
.text-editorial strong {
  color: #000;
  font-weight: 600;
}

/* 4. PROGRAM PILLARS / VALUE CODE STYLING (Unique Classes) */
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px; 
}
.pillar-item:last-child { margin-bottom: 0; }
.pillar-item::before {
  content: "◆"; 
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-size: 0.8rem;
}
.pillar-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink) !important;
  display: block;
  margin-bottom: 4px;
}
.pillar-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #52525b !important;
  line-height: 1.6;
}

/* 5. FORM STYLING (Luxury Underline Inputs) */
.input-luxury {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(17, 19, 21, 0.15); 
  border-radius: 0; 
  padding: 16px 0; 
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.input-luxury:focus {
  outline: none;
  border-bottom: 2px solid var(--gold); 
  background: rgba(213, 203, 161, 0.02); 
}
.input-luxury::placeholder {
  color: #9ca3af;
  font-weight: 300;
  font-size: 0.95rem;
}
.label-luxury {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 5px;
  margin-top: 20px;
}

/* 6. KEY MILESTONES TABLE (Elegant Table) */
.milestone-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: var(--sans);
    max-width: 500px;
}
.milestone-table td {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    color: var(--ink);
    font-size: 1.05rem;
}
.milestone-table td:first-child {
    color: #52525b;
    font-weight: 500;
    width: 40%;
}
.milestone-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--gold-dim);
}
.milestone-table tr:last-child td {
    border-bottom: none;
}

/* --- CONTACT PAGE LUXURY STYLES --- */

/* 1. General Typography */
.contact-title {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}
.contact-subtitle {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #52525b;
}

/* 2. Contact Details Panel (Light, Clean, Separated) */
.contact-panel {
  background: #fcfcfc; /* Almost white */
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}

.contact-detail-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-detail-item:last-child {
  border-bottom: none;
}

.detail-icon-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
}
.detail-icon-box svg {
  color: #000;
  width: 20px;
  height: 20px;
}

.detail-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 4px;
}
.detail-value {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}


@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; gap: 40px; }
}