@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=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN TOKENS & SYSTEM
   ========================================== */
:root {
  /* Premium Neutral & Luxury Warm Color Palette */
  --bg-primary: #FDFBF9;       /* Lux warm alabaster */
  --bg-secondary: #FAF6F2;     /* Warm linen */
  --bg-card: #FFFFFF;          /* Pure white card base */
  --text-primary: #1A1513;     /* Deep rich charcoal brown */
  --text-secondary: #6B6259;   /* Muted earthy gray */
  --accent-gold: #C5A880;      /* Luxury gold-bronze */
  --accent-gold-dark: #A88B63; /* Slightly darker gold */
  --accent-gold-light: #F4EFEA;/* Soft warm cream tint */
  --accent-dark: #2C221E;      /* Rich dark espresso */
  --border: #EDE6DF;           /* Soft elegant hair-thin border */
  --border-light: #F6F1EC;     /* Faintest divider */
  --success: #5D7262;          /* Muted luxury sage green */
  --error: #AC6256;            /* Soft clay red */
  --overlay-dark: rgba(26, 21, 19, 0.45);
  
  /* Typography Scale */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Animations & Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  /* Spacing System */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 3rem;     /* 48px */
  --space-xl: 5rem;     /* 80px */
  --space-xxl: 7.5rem;  /* 120px */
  
  /* Spacing rhythm */
  --container-max: 1200px;
  --header-height: 80px;
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  
  /* Shadow depth */
  --shadow-subtle: 0 4px 20px rgba(44, 34, 30, 0.02);
  --shadow-premium: 0 20px 40px rgba(44, 34, 30, 0.05);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* Custom Selection & Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

::selection {
  background-color: var(--accent-gold-light);
  color: var(--accent-dark);
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

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

ul {
  list-style: none;
}

/* ==========================================
   UTILITY CLASSES & REUSEABLES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section-padding {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
  }
}

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

.section-header {
  max-width: 600px;
  margin: 0 auto var(--space-lg) auto;
}

.section-header span {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  gap: var(--space-xs);
}

.btn-primary {
  background-color: var(--accent-dark);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold-light);
  color: var(--accent-dark);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-text {
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  color: var(--text-primary);
  border-bottom: 1px solid var(--accent-gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-dark);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(253, 251, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  height: 70px;
  background-color: rgba(253, 251, 249, 0.95);
  box-shadow: var(--shadow-subtle);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: -2px;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  border-right: 1px solid var(--border);
  padding-right: var(--space-sm);
}

.phone-link svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--accent-dark);
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .phone-link, .header-cta .btn {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.hero h1 {
  margin-bottom: var(--space-sm);
  color: var(--accent-dark);
}

.hero h1 span {
  font-family: var(--font-body);
  display: block;
  font-size: 0.35em;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

/* Hero Image Container */
.hero-image-wrapper {
  position: relative;
  height: 100%;
}

.hero-image-box {
  position: relative;
  border-radius: var(--border-radius-lg) var(--border-radius-sm) var(--border-radius-lg) var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-box:hover img {
  transform: scale(1.05);
}

/* Decorative Gold Frame */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-gold);
  border-radius: var(--border-radius-lg) var(--border-radius-sm) var(--border-radius-lg) var(--border-radius-lg);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-bottom: var(--space-lg);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image-wrapper {
    order: 1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================
   TRUST RIBBON SECTION
   ========================================== */
.trust-ribbon {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.ribbon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem;
}

.ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 0.2rem;
  border: 1px solid var(--border-light);
}

.ribbon-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ribbon-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
}

.ribbon-item p {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.about-img-box {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Experience Seal */
.experience-seal {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-dark);
  color: var(--bg-primary);
  padding: 1.5rem 1.8rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-premium);
  text-align: center;
}

.experience-seal span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-gold);
}

.experience-seal p {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-primary);
  margin-top: 2px;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.about-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 2px;
}

.about-feature-item p {
  font-size: 0.75rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .about-img-box {
    max-width: 480px;
    margin: 0 auto var(--space-md) auto;
    width: 100%;
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: var(--space-md);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--accent-gold);
  color: var(--bg-card);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  color: var(--accent-dark);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* Service tags & lists */
.service-details {
  border-top: 1px dashed var(--border);
  padding-top: var(--space-sm);
  margin-top: auto;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.service-bullet {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.service-bullet::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.service-price {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-dark);
  display: block;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Quote Graphic */
.testimonial-card::after {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--border-light);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

.client-info {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-sm);
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.client-details h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.client-details span {
  font-size: 0.7rem;
  color: var(--accent-gold-dark);
  display: block;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
  background-color: var(--bg-primary);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--accent-dark);
  color: var(--bg-primary);
  border-color: var(--accent-dark);
}

/* Gallery Carousel layout */
.gallery-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.gallery-carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: var(--space-sm);
}

.gallery-slide {
  flex: 0 0 calc(33.333% - (var(--space-sm) * 2 / 3)); /* 3 items per page on desktop */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 991px) {
  .gallery-slide {
    flex: 0 0 calc(50% - (var(--space-sm) / 2)); /* 2 items per page on tablet */
  }
}

@media (max-width: 576px) {
  .gallery-slide {
    flex: 0 0 100%; /* 1 item per page on mobile */
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border);
  cursor: pointer;
  width: 100%;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 34, 30, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}

.gallery-overlay h4 {
  color: var(--bg-primary);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Slide controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.carousel-control:hover {
  background-color: var(--accent-dark);
  color: var(--bg-primary);
  border-color: var(--accent-dark);
}

.carousel-control.prev {
  left: -24px;
}

.carousel-control.next {
  right: -24px;
}

@media (max-width: 991px) {
  .carousel-control.prev {
    left: -12px;
  }
  .carousel-control.next {
    right: -12px;
  }
}

.carousel-control svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--accent-gold);
  width: 24px;
  border-radius: 100px;
}

/* ==========================================
   FAQS SECTION
   ========================================== */
.faqs {
  background-color: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-header h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  padding-right: var(--space-sm);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--accent-gold);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-secondary);
}

.faq-content {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.faq-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.open {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-subtle);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* ==========================================
   CONTACT & BOOKING SECTION
   ========================================== */
.contact {
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

/* Embed Map styling */
.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  height: 250px;
  margin-top: auto;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Booking Form styling */
.booking-form-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-premium);
}

.booking-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  color: var(--accent-dark);
}

.booking-form-box p {
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background-color: var(--bg-card);
  border-color: var(--accent-gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  margin-top: var(--space-sm);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  display: none;
}

.form-message.success {
  background-color: var(--accent-gold-light);
  color: var(--success);
  border: 1px solid var(--success);
  display: block;
}

.form-message.error {
  background-color: #FDF3F2;
  color: var(--error);
  border: 1px solid var(--error);
  display: block;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .booking-form-box {
    padding: var(--space-md);
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: var(--accent-dark);
  color: var(--bg-primary);
  padding-top: var(--space-lg);
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: var(--space-md);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-text {
  color: var(--bg-primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  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.7);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--accent-gold);
  color: var(--accent-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links h4, .footer-hours h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ==========================================
   MOBILE STICKY CTA BAR
   ========================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-dark);
  box-shadow: 0 -5px 25px rgba(26, 21, 19, 0.15);
  z-index: 998;
  display: flex;
  border-top: 1px solid var(--accent-gold);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1.1rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-primary);
  text-align: center;
}

.cta-btn:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn-accent {
  background-color: var(--accent-gold);
  color: var(--accent-dark);
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

body.has-mobile-cta {
  padding-bottom: 50px; /* Shift content up so it's not covered by sticky bar */
}

/* ==========================================
   ENTRANCE ANMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
