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

        :root {
            --primary-color: #8b5572;
            --secondary-color: #a67689;
            --accent-color: #b08a96;
            --bg-light: #f8f6f3;
            --text-dark: #4a3344;
            --text-light: #666;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

         header {
            background-color: #f8f6f3;
            color: var(--text-dark);
            padding: 2rem 0;
            position: relative;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            height: 120px;
            width: auto;
            max-width: 100%;
        }

        .contact-header {
            text-align: right;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .contact-header a {
            color: var(--text-dark);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .contact-header a:hover {
            opacity: 0.7;
        }

        nav {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: relative;
        }

        .nav-container {
            position: relative;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s;
        }

        nav a:hover:after {
            width: 100%;
        }

       .hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    color: var(--text-dark);
    overflow: hidden;
    
    background:
        linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
        url("images/marble-light.jpg");

    background-size: cover;
    background-position: center;
}


        .hero h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            color: var(--primary-color);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 1.5rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 2rem;
        }

        .services {
            padding: 5rem 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 3rem;
            color: var(--primary-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background-color: var(--bg-light);
            padding: 2.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e0e0e0;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            opacity: 0.9;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 400;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .content-section {
            padding: 5rem 0;
        }

        .content-section:nth-child(even) {
            background-color: white;
        }

        .content-box {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        .content-box h2 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .content-box p {
            margin-bottom: 1.2rem;
            color: var(--text-light);
            text-align: justify;
        }

        footer {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

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

            nav ul {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .logo-text h1 {
                font-size: 1.5rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }

/* =========================================================
   PREMIUM MOBILE MENU (ROBUST, NO LAYOUT SHIFT / NO CONFLICT)
   ========================================================= */

/* keep layout stable when body is locked */
html { scrollbar-gutter: stable; }

/* ensure nav stays above content */
nav { position: sticky; top: 0; z-index: 1000; }

.nav-container { position: relative; }

/* Hamburger button */
.hamburger{
  display:none;
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  width:46px;
  height:46px;
  border-radius:14px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor:pointer;
  z-index: 20010;
  padding:0;
  align-items:center;
  justify-content:center;
  gap:2px;
  flex-direction:column;
}

.hamburger:focus-visible{
  outline: 3px solid rgba(176, 138, 150, .35);
  outline-offset: 2px;
}

.hamburger .bar{
  width:22px;
  height:2px;
  background: var(--text-dark);
  border-radius:999px;
  transition: transform .28s ease, opacity .2s ease;
}

.hamburger.active .bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2){ opacity:0; }
.hamburger.active .bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Overlay */
.nav-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity:0;
  visibility:hidden;
  transition: opacity .25s ease, visibility .25s ease;

}
.nav-overlay.active{ opacity:1; visibility:visible; }

/* Desktop menu remains as-is (your original styles). We only enforce mobile behavior. */
@media (max-width: 992px){
  .hamburger{ display:inline-flex; }

  /* Critical: always take menu OUT of document flow so it cannot squeeze content */
  #navMenu{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;

    height: 100vh !important;
    width: min(86vw, 360px) !important;

    margin: 0 !important;
    padding: 4.5rem 2.2rem 2.2rem !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1.15rem !important;

    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;

    border-left: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: -18px 0 60px rgba(0,0,0,.12) !important;

    z-index: 20100!important;

    transform: translateX(110%) !important;
    transition: transform .38s cubic-bezier(.2,.8,.2,1) !important;

    /* make sure it renders normally */
    opacity: 1 !important;
    visibility: visible !important;
  }

  #navMenu.active{
    transform: translateX(0) !important;
  }

  #navMenu li, #navMenu a{
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }

  #navMenu a{
    color: var(--text-dark) !important;
    font-size: 1.15rem !important;
    padding: 0.5rem 0.2rem !important;
  }
}

/* Scroll lock without pushing layout */
body.menu-open{
  overflow: hidden;
  touch-action: none;
}


/* ===== FINAL2 PATCH: clickable + sharp text ===== */

/* Overlay should NOT block clicks on the menu */
.nav-overlay { pointer-events: none; }
.nav-overlay.active { pointer-events: auto; }

/* Menu must always accept clicks */
#navMenu, #navMenu * { pointer-events: auto; }

/* Make the panel text sharp: remove backdrop-filter on the panel itself */
@media (max-width: 992px){
  #navMenu{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.98) !important;
    transform: translate3d(110%, 0, 0) !important;
    will-change: transform;
  }
  #navMenu.active{
    transform: translate3d(0, 0, 0) !important;
  }
}


/* ===== FINAL3 PATCH: remove ALL blur + force crisp text ===== */

/* Remove blur on overlay (Chrome/Windows text blur culprit) */
.nav-overlay{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Ensure menu is fully opaque and crisp */
@media (max-width: 992px){
  #navMenu{
    background: #ffffff !important;
    opacity: 1 !important;
    /* use 2D transforms to avoid GPU text fuzziness on some Windows setups */
    transform: translateX(110%) !important;
  }
  #navMenu.active{
    transform: translateX(0) !important;
  }
  #navMenu, #navMenu *{
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    backface-visibility: hidden;
  }
}

/* ===== FINAL4 PATCH: click safety ===== */
@media (max-width: 992px){
  #navMenu{ z-index: 202000 !important; }
 
}
