/* ====== LUXURY VARIABLES ====== */
:root {
  --gold: #e0c495;
  --gold: #e0c495;
  --gold-dark: #b57c4c;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #ffffff;
  --muted: #a0a0a0;
  --muted-dark: #666666;
  --success: #10b981;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.7);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====== LUXURY LOADING SCREEN ====== */
.luxury-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: var(--gold);
}

.diamond-loader {
  width: 60px;
  height: 60px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 20px;
  animation: diamondPulse 2s infinite;
}

@keyframes diamondPulse {
  0%, 100% { 
    transform: rotate(45deg) scale(1);
    border-color: var(--gold);
  }
  50% { 
    transform: rotate(45deg) scale(1.1);
    border-color: var(--gold-light);
  }
}

.loader-content p {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.loader-content span {
  font-size: 1rem;
  opacity: 0.8;
  letter-spacing: 3px;
}

/* ====== ENHANCED LUXURY NAVBAR ====== */
.luxury-navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 196, 149, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.logo span {
  font-weight: 300;
  color: var(--gold-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.nav-links li a i {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-links li a:hover {
  background: rgba(224, 196, 149, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-links li a.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 600;
}

.nav-cta {
  margin-left: 15px;
}

.nav-concierge-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.nav-concierge-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.luxury-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== RESET & BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== ABOUT HERO SECTION ====== */
.about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, rgba(224, 196, 149, 0.05) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.gold-text {
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ====== STORY SECTION ====== */
.story-section {
  padding: 6rem 0;
  background: var(--dark);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 300;
}

.story-intro {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.story-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.point-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon i {
  font-size: 1.5rem;
  color: var(--dark);
}

.point-content h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.point-content p {
  color: var(--muted);
  line-height: 1.6;
}

.story-image {
  display: flex;
  justify-content: center;
}

.image-frame {
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--gold);
  padding: 1rem;
  background: var(--darker);
}

.framed-img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  padding: 2rem;
}

/* ====== CRAFTSMANSHIP SECTION ====== */
.craftsmanship-section {
  padding: 6rem 0;
  background: var(--darker);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 300;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.craft-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(224, 196, 149, 0.2);
  transition: var(--transition);
}

.craft-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.craft-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.craft-icon i {
  font-size: 2rem;
  color: var(--dark);
}

.craft-item h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.craft-item p {
  color: var(--muted);
  line-height: 1.6;
}

/* ====== VALUES SECTION ====== */
.values-section {
  padding: 6rem 0;
  background: var(--dark);
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 300;
}

.values-header p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(224, 196, 149, 0.2);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--dark);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.value-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ====== TEAM SECTION ====== */
.team-section {
  padding: 6rem 0;
  background: var(--darker);
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-header h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 300;
}

.team-header p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.founder-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.profile-frame {
  width: 100%;
  max-width: 300px;
  border: 2px solid var(--gold);
  padding: 1rem;
  background: var(--dark);
}

.profile-img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  padding: 2rem;
}

.founder-info h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.founder-title {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.founder-bio {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.founder-contact {
  margin-top: 2rem;
}

.contact-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  border: 1px solid var(--gold);
}

.contact-btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

/* ====== CTA SECTION ====== */
.about-cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(224, 196, 149, 0.1), rgba(224, 196, 149, 0.05));
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><rect fill="%230a0a0a" width="100" height="100"/><path fill="%23e0c495" fill-opacity="0.03" d="M0 0h100v100H0z"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn.primary {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.cta-btn.primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.cta-btn.secondary:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ====== LUXURY FOOTER ====== */
.luxury-footer {
  background: var(--dark);
  border-top: 1px solid var(--gold);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-logo span {
  color: var(--gold-light);
  font-weight: 300;
  font-style: italic;
}

.footer-tagline {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(224, 196, 149, 0.2);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-group h4 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.link-group a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
  .story-content,
  .founder-profile {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-image,
  .founder-image {
    order: -1;
  }
  
  .craftsmanship-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Enhanced Navbar Mobile Styles */
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo {
    font-size: 2.2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-top: 1px solid rgba(224, 196, 149, 0.2);
    display: none;
  }
  
  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    padding: 15px 20px;
    border-radius: 8px;
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  
  .nav-cta {
    margin: 20px 0 0 0;
    width: 100%;
  }
  
  .nav-cta .luxury-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .story-text h2,
  .section-header h2,
  .values-header h2,
  .team-header h2 {
    font-size: 2.5rem;
  }
  
  .craftsmanship-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 200px;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .story-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .point-icon {
    margin: 0 auto;
  }
  
  .founder-info h3 {
    font-size: 2rem;
  }
  
  .image-frame,
  .profile-frame {
    max-width: 100%;
  }
}