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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --primary-gold: #d4af37;
  --primary-gold-rgb: 212, 175, 55;
  --light-gold: #f3e5ab;
  --dark-obsidian: #0a0a0b;
  --dark-card: #121214;
  --dark-card-hover: #1a1a1d;
  --white-ivory: #faf9f6;
  --gray-text: #a0a0a5;
  --gray-muted: #505055;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  --container-max: 1320px;
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--dark-obsidian);
  color: var(--white-ivory);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--light-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

p {
  color: var(--gray-text);
  font-weight: 300;
  letter-spacing: 0.02em;
}

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

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

/* Reusable Components & Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-glow {
  text-shadow: 0 0 10px rgba(var(--primary-gold-rgb), 0.3);
}

.section-padding {
  padding: 8rem 0;
}

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

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--primary-gold);
  background: transparent;
  color: var(--white-ivory);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-gold);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-premium:hover {
  color: var(--dark-obsidian);
}

.btn-premium:hover::before {
  width: 100%;
}

.btn-premium.solid {
  background: var(--primary-gold);
  color: var(--dark-obsidian);
}

.btn-premium.solid:hover {
  background: transparent;
  color: var(--white-ivory);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 5rem 0;
  }
}

.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  margin: 1.5rem auto;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background-color: #050506;
  border-bottom: 1px solid rgba(var(--primary-gold-rgb), 0.15);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.5rem 1rem;
  color: var(--primary-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 100;
}

.announcement-bar a {
  text-decoration: underline;
  font-weight: 500;
}

/* --- STICKY NAVIGATION --- */
.header-nav {
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: var(--transition-smooth);
}

.header-nav.sticky {
  position: fixed;
  top: 0;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  animation: slideNavDown 0.5s ease forwards;
}

@keyframes slideNavDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-ivory);
}

.nav-logo-text span {
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white-ivory);
  position: relative;
  padding: 0.5rem 0;
}

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

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

.nav-link:hover {
  color: var(--primary-gold);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white-ivory);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--dark-obsidian);
    border-left: 1px solid rgba(var(--primary-gold-rgb), 0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    padding: 3rem;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-cta {
    display: none;
  }
}

/* --- HERO HERO CAROUSEL --- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,11,0.5) 0%, rgba(10,10,11,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1.2s ease 0.3s, opacity 1.2s ease 0.3s;
}

.hero.loaded .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-title {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-title span {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--primary-gold);
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.slider-controls {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  gap: 1rem;
}

.control-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white-ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

/* --- HERITAGE SECTION --- */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.heritage-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 480px;
}

.heritage-img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.1);
}

.heritage-img-2 {
  grid-column: 5 / 13;
  grid-row: 4 / 13;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.1);
}

.heritage-img-1 img, .heritage-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.heritage-images:hover .heritage-img-1 img {
  transform: scale(1.03);
}

.heritage-images:hover .heritage-img-2 img {
  transform: scale(1.03);
}

.heritage-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--primary-gold);
  padding: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.heritage-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: 700;
  line-height: 1;
}

.heritage-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-ivory);
}

.heritage-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.heritage-text p {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- THE DINING HUBS --- */
.hubs {
  background-color: #050506;
}

.hubs-carousel {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

@media (max-width: 1100px) {
  .hubs-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hubs-carousel {
    grid-template-columns: 1fr;
  }
}

.hub-card {
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hub-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-gold-rgb), 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.hub-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.hub-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hub-card:hover .hub-img-wrapper img {
  transform: scale(1.08);
}

.hub-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hub-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

.hub-card:hover .hub-card-title {
  color: var(--primary-gold);
}

.hub-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  display: block;
}

.hub-card-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.hub-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.hub-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-ivory);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hub-link span {
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.hub-card:hover .hub-link span {
  transform: translateX(5px);
  color: var(--primary-gold);
}

/* --- THE SIGNATURE MENU --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white-ivory);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background-color: rgba(var(--primary-gold-rgb), 0.03);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}

@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.menu-item {
  display: flex;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-gold-rgb), 0.2);
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.1);
}

.menu-item-details {
  flex-grow: 1;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-title {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.menu-item-line {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  margin: 0 1rem;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.menu-item-tags {
  display: flex;
  gap: 0.8rem;
}

.menu-tag {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
}

.menu-tag.chef-recommend {
  background-color: rgba(var(--primary-gold-rgb), 0.12);
  color: var(--primary-gold);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.25);
}

.menu-tag.signature {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white-ivory);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- PRIVATE DINING & EXPERIENCES --- */
.private-dining {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.private-dining::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10,10,11,0.95) 0%, rgba(10,10,11,0.7) 100%);
}

.private-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.private-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.private-content p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* --- INTERACTIVE RESERVATION SYSTEM --- */
.reservation {
  background-color: #050506;
}

.reservation-box {
  background-color: var(--dark-card);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.15);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: 1fr;
}

.res-form-wrapper {
  padding: 4.5rem;
}

@media (max-width: 768px) {
  .res-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

.res-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  position: relative;
}

.res-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.08);
  z-index: 1;
  transform: translateY(-50%);
}

.step-indicator {
  position: relative;
  z-index: 2;
  background: var(--dark-card);
  padding: 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.step-indicator span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.step-indicator.active {
  color: var(--primary-gold);
}

.step-indicator.active span {
  border-color: var(--primary-gold);
  background-color: rgba(var(--primary-gold-rgb), 0.05);
}

.res-step {
  display: none;
}

.res-step.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
}

.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  color: var(--white-ivory);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255,255,255,0.06);
}

.form-select option {
  background-color: var(--dark-card);
  color: var(--white-ivory);
}

.res-nav-btns {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
}

/* Success Confirmation Ticket */
.res-success-stub {
  background: linear-gradient(135deg, #161619 0%, #1c1c20 100%);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.2);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.res-success-stub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gold);
}

.success-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.success-ticket-details {
  background: rgba(0,0,0,0.2);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 480px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.ticket-item {
  display: flex;
  flex-direction: column;
}

.ticket-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 0.2rem;
}

.ticket-val {
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background-color: var(--dark-obsidian);
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  position: relative;
  text-align: center;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

.testimonial-rating {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--primary-gold);
  margin-top: 0.2rem;
  display: block;
  letter-spacing: 0.1em;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-muted);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.test-dot.active, .test-dot:hover {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* --- LUXURY FOOTER --- */
.footer {
  background-color: #050506;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--primary-gold);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-logo span {
  color: var(--primary-gold);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.social-link:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background-color: rgba(var(--primary-gold-rgb), 0.05);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.footer-link-item a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input-group {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  color: var(--white-ivory);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-btn {
  background: var(--primary-gold);
  border: none;
  color: var(--dark-obsidian);
  padding: 0 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
}

.newsletter-btn:hover {
  background: var(--light-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-muted);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- LUXURY CONTACT PAGE SUB-ELEMENTS --- */
.page-banner {
  height: 45vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 5rem;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.95) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-text);
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.breadcrumbs a {
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--primary-gold);
}

.breadcrumbs span.separator {
  color: var(--gray-muted);
}

.breadcrumbs span.active {
  color: var(--primary-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: rgba(var(--primary-gold-rgb), 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  font-size: 1.8rem;
  color: var(--primary-gold);
  line-height: 1;
  text-shadow: 0 0 10px rgba(var(--primary-gold-rgb), 0.25);
}

.contact-card-details h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white-ivory);
}

.contact-card-details p {
  font-size: 0.9rem;
}

.contact-form-container {
  background-color: var(--dark-card);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.15);
  padding: 4rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 2.5rem 1.5rem;
  }
}

.map-wrapper {
  border: 1px solid rgba(var(--primary-gold-rgb), 0.15);
  overflow: hidden;
  height: 450px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  background-color: var(--dark-card);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.map-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 11, 0.85);
  z-index: 1;
}

.map-placeholder-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.map-placeholder-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  animation: bounceMapPin 2s infinite ease;
}

@keyframes bounceMapPin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-placeholder-btn {
  margin-top: 1.5rem;
}

/* --- PREMIUM PAGE PRELOADER & ENTRANCE ANIMATIONS --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark-obsidian);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white-ivory);
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderLogoFade 1.6s ease forwards;
}

.preloader-logo span {
  color: var(--primary-gold);
}

.preloader-bar {
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  animation: preloaderBarLoading 1.5s infinite ease-in-out;
}

@keyframes preloaderLogoFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 20px rgba(var(--primary-gold-rgb), 0.4);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes preloaderBarLoading {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* --- SCROLL-REVEAL SYSTEM --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay Utilities */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Elegant hover transitions for other elements */
.zoom-on-hover {
  overflow: hidden;
}
.zoom-on-hover img {
  transition: var(--transition-smooth);
}
.zoom-on-hover:hover img {
  transform: scale(1.06);
}

/* --- ABOUT US PAGE STYLES --- */
.about-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-collage {
  position: relative;
  height: 500px;
  width: 100%;
}

.collage-item {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item:hover {
  transform: translateY(-10px) scale(1.02);
  z-index: 10;
  box-shadow: 0 25px 45px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

.collage-1 {
  width: 60%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
}

.collage-2 {
  width: 55%;
  height: 50%;
  top: 10%;
  right: 0;
  z-index: 1;
}

.collage-3 {
  width: 65%;
  height: 45%;
  bottom: 0;
  right: 15%;
  z-index: 3;
}

@media (max-width: 768px) {
  .about-collage {
    height: 400px;
  }
}

.testimonial-banner {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 11, 0.95), rgba(10, 10, 11, 0.7), rgba(10, 10, 11, 0.95));
  z-index: 1;
}

/* Team Grid Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem 1rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white-ivory);
  margin-bottom: 0.2rem;
}

.team-role {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.6;
}
