   /* Fonts imported via HTML */

:root {
  --font-headings: 'Bodoni Moda', serif;
  --font-body: 'Work Sans', sans-serif;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-strong: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --brand-gold: #D4AF37;
  --brand-cyan: #00CED1;
  --dark-bg: #0F0F0F;
  --dark-bg-alt: #1A1A1A;
  --card-bg: #141414;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --bg-primary: #FAFAF8;
  --bg-secondary: #F5F3EF;
  --bg-card: #FFFFFF;
  --cream-bg: #FAF9F6;
  --light-cream: #F5F5DC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-bg);
  color: #111;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for keyboard and screen reader users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 3000;
  background-color: #000;
  color: #fff;
  padding: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  border-radius: 4px;
}
.bg-1 {
    background-image: url('assetts/the-legacy/hero/hero1.webp');
}
.bg-2 {
    background-image: url('assetts/the-legacy/hero/hero2.webp');
}
.bg-3 {
  background-image: url('assetts/the-legacy/hero/hero3.webp');
}
/* ... and so on for other slides */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .brand-name {
  font-family: var(--font-headings) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none;
}

.hero-title {
  font-style: italic;
}

.brand-right a {
  font-family: var(--font-body) !important;
  letter-spacing: 0.2em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.gold-text {
  color: var(--brand-gold);
}

img {
  max-width: 100%;
  height: auto;
}

.cyan-text {
  color: var(--brand-cyan) !important;
}

.split-text span {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.15em;
  padding: 0.1em 0.15em 0.1em 0;
  /* Added horizontal padding to prevent clipping */
}

.split-text span em {
  display: block;
  transform: translateY(120%);
  transition: transform 0.9s ease;
  transition-delay: inherit;
  will-change: transform;
}

.split-text span:last-child em {
  color: var(--brand-gold);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream-bg);
  z-index: 999;
  animation: fadeOut 1.2s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}


/* ==================== */
/* PREMIUM BUTTONS      */
/* ==================== */

.hero-cta-btn, .hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.5s var(--ease-soft);
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #000 !important;
  border: none;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}

.hero-cta-btn:hover::before {
  left: 100%;
}

.hero-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  letter-spacing: 0.2em;
}

.hero-secondary-btn {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--brand-gold) !important;
  border: 1px solid rgba(212, 175, 55, 0.5);
  margin-left: 20px;
}

.hero-secondary-btn:hover {
  background: var(--brand-gold);
  color: #000 !important;
  border-color: var(--brand-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Mobile Adjustments for Buttons */
@media (max-width: 768px) {
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .hero-secondary-btn {
    margin-left: 0;
  }
  
  .hero-cta-btn, .hero-secondary-btn {
    width: auto;
    max-width: 90%;
    padding: 4px 8px;
    font-size: 0.45rem;
    margin-top: 4px;
    letter-spacing: 0.02em;
  }
}

/* ==================== */
/* NAVBAR - DESKTOP     */
/* ==================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.5s var(--ease-strong);
}

@media (min-width: 1024px) {
  .navbar {
    position: absolute;
    top: 30px;
    right: 30px;
    left: auto;
    width: fit-content;
    max-width: 90%;
    padding: 0 30px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* Restore border */
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
}

/* .navbar.scrolled {
  top: 15px;
  width: 85%;
  height: 70px;
  background: rgba(15, 15, 15, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
} */

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-pop);
}

.logo:hover {
  transform: scale(1.05);
}

.brand-left {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-center {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #111;
}

.brand-tagline {
  font-size: 13px;
  color: #555;
}

.brand-sub {
  font-size: 11px;
  color: #777;
}

.brand-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand-right a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-cyan);
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-right a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-cyan));
  transition: width 0.4s var(--ease-soft);
}

.brand-right a:hover::after,
.brand-right a.active::after {
  width: 100%;
}

.brand-right a:hover,
.brand-right a.active {
  color: var(--brand-gold);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.brand-logo-fixed {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1001;
  display: block;
}

.brand-logo-fixed .logo {
  height: 60px;
  /* Increased size for better visibility */
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  display: block;
}

.hero-scroll {
  text-decoration: none;
  cursor: pointer;
}


/* ==================== */
/* SECTIONS - DESKTOP   */
/* ==================== */

.section {
  padding: 60px 20px;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 100px;
  }
}

.section-divider {
  height: 1px;
  width: 100%;
  background-color: var(--brand-cyan);
  opacity: 1;
  margin: 0;
}

.contact-footer-divider {
  height: 1px;
}

.golden-separator {
  width: 100%;
  height: 2px;
  background-color: var(--brand-cyan);
  border: none;
  margin: 0;
}

.section h2,
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.01em !important;
  /* Reduced for better serif kerning consistency */
  color: var(--brand-gold);
  line-height: 1.1;
  display: table;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-transform: none;
  /* Changed from uppercase to allow natural casing */
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  font-kerning: normal;
}

.section h2::after,
.section-title::after {
  display: none !important;
}

.section p,
.section-intro {
  margin-top: 24px;
  max-width: 720px;
  font-size: 18px;
  color: var(--brand-gold);
  line-height: 1.8;
}

#about {
  position: relative;
  background-color: #EFECE5;
}

.section.dark {
  background: var(--dark-bg);
  color: #fff;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section.dark h2 {
  color: #fff;
}

#contact .split-text span:first-child em {
  color: var(--brand-cyan);
}

/* =====================

   FOOTER (FIXED)
 ===================== */
.footer {
  background: #000;
  color: #fff;
  padding: 6rem 5% 2rem;
  border-top: 1px solid rgba(191, 149, 63, 0.3);
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #888;
  line-height: 1.6;
  max-width: 350px;
}

.footer-links h4,
.footer-social h4 {
  color: #BF953F;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 1.2rem;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.footer-links ul li a:hover {
  color: #BF953F;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  height: 30px;
  filter: invert(1);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.social-icons a:hover img {
  opacity: 1;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #555;
  font-size: 0.8rem;
}


/* ==================== */
/* LIGHTBOX             */
/* ==================== */

.service-lightbox,
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30000;
  /* Increased to stay above project-overlay (20000) */
  backdrop-filter: blur(10px);
}

.service-lightbox {
  background: radial-gradient(circle at center, rgba(5, 10, 18, 0.98) 0%, rgba(0, 0, 0, 0.98) 65%, rgba(0, 0, 0, 0.98) 100%);
}

.service-lightbox.show {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 96vw;
  max-height: 90vh;
}

.gallery-lightbox .lightbox-image {
  max-width: calc(96vw - 200px) !important;
  max-height: 90vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-soft);
}

.gallery-lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-view-project {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
  z-index: 10;
  pointer-events: none;
}

.gallery-lightbox.active .lightbox-view-project {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition-delay: 0.3s;
}

.service-lightbox button.lightbox-close,
.gallery-lightbox button.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s var(--ease-soft), color 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
  z-index: 30010;
  font-family: 'Bodoni Moda', serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.service-lightbox button.lightbox-close::before,
.gallery-lightbox button.lightbox-close::before {
  content: none;
}

.service-lightbox button.lightbox-close svg,
.gallery-lightbox button.lightbox-close svg {
  display: block;
  stroke: #D4AF37; /* Match your brand gold if desired, or keep currentColor */
}

.service-lightbox button.lightbox-close:hover,
.gallery-lightbox button.lightbox-close:hover {
  background: var(--brand-gold);
  color: #000;
  transform: scale(1.05);
}

.lightbox-nav {
  position: relative;
  transform: none;
  z-index: 30010;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: transparent;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.4s var(--ease-soft), color 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
  background: var(--brand-gold);
  color: #000;
  transform: scale(1.05);
}

/* These classes are now handled by flex order and positioning, keeping definitions for safety */
.lightbox-prev {
  order: -1;
}

.lightbox-next {
  order: 1;
}

@media (max-width: 768px) {
  .lightbox-container {
    gap: 0;
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
  }
  .lightbox-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .gallery-lightbox .lightbox-image,
  .service-lightbox .lightbox-image {
    max-width: 95vw !important;
  }
}

/* Removed conflicting legacy lightbox-close styles to ensure Velvet & Gold design applies */
/* Legacy overrides removed to support Velvet & Gold design */

.service-lightbox .lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  border-bottom: 2px solid var(--brand-cyan);
}

.service-lightbox .lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.service-lightbox .lightbox-prev {
  top: 50%;
  left: 40px;
  right: auto;
  transform: translateY(-50%);
  z-index: 30040;
}

.service-lightbox .lightbox-next {
  top: 50%;
  right: 40px;
  left: auto;
  transform: translateY(-50%);
  z-index: 30040;
}

@media (max-width: 768px) {
  .service-lightbox .lightbox-prev {
    left: calc(50% - 45vw - 24px);
  }

  .service-lightbox .lightbox-next {
    left: calc(50% + 45vw + 24px);
  }
}

/* ==================== */
/* FOOTER - DESKTOP     */

.footer-nav {
  background-color: #EAE6DA;
  padding: 100px 40px 50px;
  position: relative;
  z-index: 100;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 24px;
  display: block;
}

.footer-nav .contact-icon svg,
.footer-nav .contact-icon svg path,
.footer-nav .contact-icon svg circle,
.footer-nav .contact-icon svg polyline {
  stroke: var(--brand-cyan) !important;
}

.footer-nav .contact-item .contact-icon svg *,
.footer-nav .contact-item .contact-icon svg {
  stroke: var(--brand-cyan) !important;
  fill: none !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.5fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  color: #111;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

.footer-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brand-cyan);
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.footer-cta-btn:hover {
  background: var(--brand-gold);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
}

.footer-links {
  color: #111;
}

.footer-links h4 {
  font-family: 'Bodoni Moda', serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--brand-gold);
  position: relative;
  display: inline-block;
}

.footer-logo-text {
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(to right, var(--brand-cyan), var(--brand-gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  /* Limit width to force paragraph style */
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0;
  /* Reset to ensure centering works correctly */
  color: var(--brand-cyan);
  font-weight: bold;
  font-size: 16px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: var(--brand-cyan);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}



.footer-links a {
  font-size: 15px;
  color: #333 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-cyan) !important;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 2px solid var(--brand-cyan);
  text-align: center;
}

.copyright {
  font-size: 13px;
  letter-spacing: 1px;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-text {
  font-size: 11px;
  color: #444;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.whatsapp {
  display: none !important;
}


@media (max-width: 900px) {

  /* GLOBAL MOBILE FIXES */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* NAVBAR MOBILE */
  .navbar {
    height: auto;
    min-height: 50px;
    padding: 8px 0;
    position: fixed;
    top: 12px;
    right: 12px;
    left: auto;
    width: auto;
    max-width: calc(100% - 24px);
    z-index: 10001;
    background: transparent;
    backdrop-filter: none;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    order: 1;
    z-index: 10002;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
  }

  /* MOBILE MENU STYLES */
  .mobile-menu {
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    display: none !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 9998;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }

  .mobile-menu.active {
    display: flex !important;
  }

  .mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: #ffffff;
    color: var(--brand-gold);
  }

  /* LOGO MOBILE */
  .brand-logo-fixed {
    top: 12px;
    left: 12px;
    height: 40px;
    width: auto;
    z-index: 10001;
  }

  .brand-logo-fixed .logo {
    height: 40px;
    width: auto;
  }
}

@media (max-width: 900px) {
  /* SECTIONS MOBILE */
  .section {
    padding: 40px 16px;
    text-align: left;
  }

  .section h2,
  .section-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
    word-wrap: break-word;
  }

  .section p,
  .section-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
  }

  .section-divider {
    margin: 0 16px;
    height: 1px;
  }

  /* SERVICES GRID MOBILE */
}

@media (max-width: 900px) {
  /* FOOTER MOBILE COMPACT */
  .footer-nav {
    background-color: #EAE6DA;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    background-blend-mode: multiply;
    padding: 60px 16px;
  }

  .footer-brand .logo {
    height: 48px;
    margin-bottom: 20px;
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-logo-text {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .contact-item {
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .footer-links h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
  }

  .disclaimer-box {
    padding: 16px;
  }

  /* WHATSAPP BUTTON MOBILE */
  .whatsapp {
    display: none;
  }

  .whatsapp img {
    width: 56px;
    height: 56px;
  }

  /* ENSURE NO HORIZONTAL SCROLL */
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* TEXT READABILITY */
  body {
    font-size: 14px;
  }

  /* HIDE SEPARATORS ON MOBILE */
  .golden-separator,
  .section-divider {
    display: none !important;
  }

  /* PREVENT DOUBLE TAP ZOOM DELAYS */
  button,
  a {
    touch-action: manipulation;
  }

}

/* Fix for mobile fullscreen lightbox */
body.lightbox-open .mobile-menu-toggle {
  display: none !important;
}

@media (max-width: 900px) {
  .service-lightbox .lightbox-container {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    justify-content: center;
  }

  .service-lightbox .lightbox-image {
    width: 100vw;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    transform: none !important;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    display: block;
  }

  .service-lightbox.active .lightbox-image {
    transform: none !important;
  }
}

/* Hero Slide Titles */
.hero-slide-title {
  position: absolute;
  bottom: 120px;
  right: 5%;
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  color: var(--brand-cyan);
  text-align: right;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .hero-slide-title {
    font-size: 30px;
    bottom: 140px;
  }
}

/* --- Contact Form Styles --- */
.architectural-bg {
  background-color: #EAE6DA;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  background-attachment: fixed;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

textarea::-webkit-scrollbar {
  width: 4px;
}

textarea::-webkit-scrollbar-track {
  background: transparent;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #D4AF37;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.0) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.cyan-text {
  color: #00CED1;
}

.cyan-text.not-italic {
  font-style: normal;
}

