@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors - Noir Luxe */
  --color-bg: #151312; /* surface */
  --color-surface-lowest: #100e0d;
  --color-surface: #1d1b1a; /* surface-container-low */
  --color-surface-container: #221f1e;
  --color-surface-high: #2c2928;
  --color-surface-highest: #373433;
  --color-brand-gold: #e1c385; /* primary */
  --color-brand-gold-hover: #b99d63; /* primary-container */
  --color-brand-gold-fixed: #ffdf9f;
  --color-on-gold-fixed: #261a00;
  --color-text: #e7e1df; /* tertiary-fixed */
  --color-text-muted: #c6c6c6; /* secondary */
  --color-outline-variant: #4d463a;
  
  /* Typography */
  --font-heading-rustic: 'Playfair Display', serif;
  --font-heading-elegant: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Layout */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 8rem;
  --spacing-16: 5.5rem;
  --spacing-20: 7rem;
  --spacing-24: 8.5rem;
  --max-width: 1200px;
  
  /* Other */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
}

/* Ambient Shadows & Glassmorphism */
.glass-panel {
  background-color: rgba(21, 19, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ambient-shadow {
  box-shadow: 0 0 50px -10px rgba(16, 14, 13, 0.4);
}

.ghost-border {
  border: 1px solid rgba(77, 70, 58, 0.15);
}

.label-text {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Signature Components */
.heritage-badge {
  background-color: var(--color-brand-gold-fixed);
  color: var(--color-on-gold-fixed);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin-bottom: var(--spacing-md);
}

h1.rustic, h2.rustic, h3.rustic, .rustic-text {
  font-family: var(--font-heading-rustic);
  letter-spacing: 1px;
}

h1, h2, h3 {
  font-family: var(--font-heading-elegant);
}

a {
  color: var(--color-brand-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-brand-gold-hover);
}

ul {
  list-style: none;
}

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

/* Layout Utilities */
.staggered-grid {
  display: grid;
  gap: var(--spacing-lg);
}
.staggered-grid > *:nth-child(even) {
  margin-top: 4rem;
}

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

.section {
  padding: var(--spacing-xxl) 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading-elegant);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(45deg, var(--color-brand-gold), var(--color-brand-gold-hover));
  color: #000000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 195, 133, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-brand-gold);
  border-color: rgba(225, 195, 133, 0.4);
}

.btn-outline:hover {
  background-color: transparent;
  border-color: rgba(225, 195, 133, 1);
  box-shadow: 0 0 15px rgba(225, 195, 133, 0.2);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--color-brand-gold);
  padding: 0;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: normal;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.btn-tertiary:hover {
  text-decoration-thickness: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(21, 19, 18, 0.7); /* match glass-panel */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all var(--transition-normal);
  /* borders removed per No-Line rule */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo a {
  font-family: var(--font-heading-rustic);
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-links a {
  color: var(--color-text);
  font-family: var(--font-heading-elegant);
  font-size: 1.1rem;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-brand-gold);
  transition: width var(--transition-fast);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-surface-high);
  min-width: 200px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-sm) 0;
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--color-text);
  font-size: 1rem;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: var(--color-surface-light);
  color: var(--color-brand-gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  text-align: center;
  padding-top: 120px; /* offset navbar */
  padding-bottom: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 13, 12, 0.6), rgba(15, 13, 12, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--spacing-lg);
}

.hero-subtitle {
  color: var(--color-brand-gold);
  font-family: var(--font-heading-elegant);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.hero-title {
  font-size: 4rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
  background-color: var(--color-surface-lowest);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
  color: var(--color-brand-gold);
  margin-bottom: var(--spacing-md);
}

.footer-col p, .footer-col a, .footer-col li {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .staggered-grid > *:nth-child(even) {
    margin-top: 0;
  }
  
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .mobile-p-md {
    padding: 1.5rem !important;
  }

  .mobile-gap-md {
    gap: 1.5rem !important;
  }

  .mobile-section-p {
    padding: 3rem 1rem !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none; /* Mobile menu hidden by default */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    flex-direction: column;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background-color: transparent;
    padding: 0;
  }

  .nav-item-dropdown a i {
    float: right;
    margin-top: 5px;
  }
  
  .menu-toggle {
    display: block;
  }
}

/* --- Google Translate UI Overrides --- */
body {
    top: 0 !important;
}
.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
