    :root {
        --gold: #d4a843;
        --gold-light: #f0c060;
        --gold-glow: #e8b84b;
        --orange: #e8720c;
        --orange-light: #ff8c2a;
        --deep-black: #050505;
        --dark: #0c0c0c;
        --dark2: #111111;
        --dark3: #1a1a1a;
        --dark4: #222222;
        --white: #ffffff;
        --white-dim: rgba(255, 255, 255, 0.85);
        --white-muted: rgba(255, 255, 255, 0.55);
        --white-faint: rgba(255, 255, 255, 0.08);
        --glass: rgba(255, 255, 255, 0.06);
        --glass-border: rgba(212, 168, 67, 0.2);
        --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        --bg-page: #faf7f2;
        --crimson-deep: #3d0000;
        --crimson-mid: #6b0d0d;
        --crimson-light: #8b1a1a;
        --bg-page: #fff8f2;
        --crimson-mid: #8b0000;
        --crimson-deep: #5c0808;
        --gold: #c89b3c;
        --gold-bright: #e8a800;
        --gold-light: #f4c430;
        --bg-deep: #080610;
        --bg-card: #0e0c1c;
        --bg-card2: #12102a;
        --gold: #c9a84c;
        --gold-light: #e8c87a;
        --gold-dim: #7a6530;
        --purple: #6b3fa0;
        --purple-lite: #9b6ed0;
        --text: #e8dfc8;
        --text-muted: #9b9280;
        --border: rgba(201, 168, 76, 0.18);
        --wa-green: #25d366;
         --black:    #06060e;
      --deep:     #0b0b1a;
      --navy:     #0f0f2a;
      --gold:     #c9a84c;
      --gold-lt:  #e8cc80;
      --gold-dim: #7a5e28;
      --cream:    #f5eedc;
      --muted:    #a89a7a;
      --white:    #fff;
        --gold: #c9a84c;
    --gold-light: #e4c97a;
    --deep-black: #080808;
    --white-muted: rgba(255,255,255,0.78);
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(201,168,76,0.25);
    --transition: all 0.35s ease;
  
    }


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

    html {
        scroll-behavior: smooth;
        overflow-x: hidden
    }

    body {
        background: var(--deep-black);
        color: var(--white);
        font-family: 'Raleway', sans-serif;
        overflow-x: hidden;
        cursor: default
    }

    ::-webkit-scrollbar {
        width: 4px
    }

    ::-webkit-scrollbar-track {
        background: var(--dark)
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 2px
    }

    ::selection {
        background: var(--gold);
        color: var(--deep-black)
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s
    }

    .cursor-ring {
        width: 36px;
        height: 36px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s
    }

    #preloader {
        position: fixed;
        inset: 0;
        background: var(--deep-black);
        z-index: 999999;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px
    }

    .preloader-mandala {
        width: 80px;
        height: 80px;
        border: 2px solid transparent;
        border-top-color: var(--gold);
        border-radius: 50%;
        animation: spin 1s linear infinite
    }

    .preloader-mandala::before {
        content: '';
        position: absolute;
        inset: 6px;
        border: 2px solid transparent;
        border-top-color: var(--orange);
        border-radius: 50%;
        animation: spin 0.7s linear infinite reverse
    }

    .preloader-text {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        letter-spacing: 4px;
        font-size: 13px;
        animation: pulse-glow 1.5s ease infinite
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes pulse-glow {

        0%,
        100% {
            opacity: 0.5;
            text-shadow: none
        }

        50% {
            opacity: 1;
            text-shadow: 0 0 20px var(--gold)
        }
    }

    /* ============================================================
   HEADER — FULL FIXED CSS
   ============================================================ */

    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #000;
        padding: 0;
    }

    #header.scrolled {
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
    }

    .header-inner {
        height: 95px;
        max-width: 1400px;
        margin: auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    /* LOGO */
    .logo {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        min-width: 220px;
    }

    .logo-name {
        font-family: 'Cinzel', serif;
        color: #d4a843;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.2;
        text-transform: none;
        white-space: nowrap;
    }

    .logo-sub {
        color: #d4a843;
        font-size: 13px;
        letter-spacing: 2px;
        line-height: 1.2;
        margin-top: 2px;
        white-space: nowrap;
    }

    /* DESKTOP NAV */
    nav {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }

    nav a {
        position: relative;
        white-space: nowrap;
        font-size: 14px;
        padding: 8px 10px;
        letter-spacing: 1px;
        color: #fff;
        text-decoration: none !important;
        border-bottom: none !important;
        transition: color 0.3s;
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 14px;
        right: 14px;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    nav a:hover {
        color: var(--gold);
        text-decoration: none !important;
    }

    nav a:hover::after {
        transform: scaleX(1);
    }

    /* HEADER BUTTONS */
    .header-btns {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .btn-call {
        flex: 0 0 auto;
        display: flex;
        gap: 6px;
        align-items: center;
        padding: 9px 16px;
        color: #fff;
        border: 1px solid rgba(212, 168, 67, 0.4);
        border-radius: 3px;
        text-decoration: none;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        transition: var(--transition);
    }

    .btn-call:hover {
        background: var(--gold);
        color: var(--deep-black);
        border-color: var(--gold);
    }

    .btn-wa {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 9px 16px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
        border: none;
        border-radius: 3px;
        text-decoration: none;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        transition: var(--transition);
    }

    .btn-wa:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

    .btn-book {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 9px 18px;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        color: var(--deep-black);
        border: none;
        border-radius: 3px;
        text-decoration: none;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        transition: var(--transition);
        cursor: pointer;
    }

    .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(232, 114, 12, 0.4);
    }

    /* ============================================================
   HAMBURGER — 3 lines
   ============================================================ */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 6px;
        z-index: 1100;
        flex-shrink: 0;
    }

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #d4a843;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* X animation when open */
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ============================================================
   RESPONSIVE — show hamburger
   ============================================================ */
    @media (max-width: 1100px) {

        nav,
        .header-btns {
            display: none !important;
        }

        .hamburger {
            display: flex !important;
        }
    }

    @media (max-width: 1300px) {
        nav {
            gap: 10px;
        }

        nav a {
            font-size: 13px;
            padding: 6px 8px;
        }

        .btn-call,
        .btn-wa,
        .btn-book {
            padding: 8px 12px;
            font-size: 12px;
        }
    }

    /* ============================================================
   MOBILE NAV MENU
   ============================================================ */
    .mobile-nav {
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        background: #0a0a0a;
        z-index: 998;
        display: none;
        flex-direction: column;
        border-top: 2px solid rgba(212, 168, 67, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        max-height: calc(100vh - 95px);
        overflow-y: auto;
    }

    .mobile-nav.open {
        display: flex;
    }

    /* Nav links */
    .mobile-nav a.mnav-link {
        display: block;
        padding: 16px 24px;
        color: rgba(255, 255, 255, 0.85);
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-decoration: none;
        font-family: 'Cinzel', serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: all 0.25s;
    }

    .mobile-nav a.mnav-link:hover,
    .mobile-nav a.mnav-link:active {
        color: #d4a843;
        background: rgba(212, 168, 67, 0.05);
        padding-left: 32px;
    }

    /* ============================================================
   SERVICES DROPDOWN in mobile nav
   ============================================================ */
    .mobile-services {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-service-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        color: rgba(255, 255, 255, 0.85);
        background: transparent;
        border: none;
        font-family: 'Cinzel', serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.25s;
    }

    .mobile-service-btn:hover {
        color: #d4a843;
        background: rgba(212, 168, 67, 0.05);
    }

    .mobile-service-btn i {
        color: #d4a843;
        font-size: 11px;
        transition: transform 0.3s ease;
    }

    .mobile-service-btn.active i {
        transform: rotate(180deg);
    }

    /* Dropdown list */
    .mobile-dropdown {
        display: none;
        flex-direction: column;
        background: rgba(212, 168, 67, 0.03);
        border-top: 1px solid rgba(212, 168, 67, 0.1);
    }

    .mobile-dropdown.open {
        display: flex;
    }

    .mobile-dropdown a {
        display: block;
        padding: 13px 24px 13px 36px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.2s;
        white-space: nowrap;
    }

    .mobile-dropdown a:hover {
        color: #d4a843;
        padding-left: 44px;
        background: rgba(212, 168, 67, 0.06);
    }

    /* Bottom CTA row */
    .mobile-cta-row {
        display: flex;
        gap: 10px;
        padding: 16px 24px 20px;
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(212, 168, 67, 0.15);
    }

    .mobile-cta-row a {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    /* ============================================================
   DESKTOP MEGA MENU
   ============================================================ */
    .nav-services {
        position: relative;
    }

    .nav-services>a {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 760px;
        background: #1a1a1a;
        border-top: 2px solid var(--gold);
        padding: 25px;
        display: flex;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1000;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .nav-services:hover .mega-menu {
        opacity: 1;
        visibility: visible;
    }

    .mega-column {
        flex: 1;
        border-right: 1px solid rgba(212, 168, 67, 0.15);
        padding-right: 20px;
    }

    .mega-column:last-child {
        border-right: none;
    }

    .mega-column a {
        display: block;
        color: rgba(255, 255, 255, 0.75);
        padding: 10px 0;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 13px;
        line-height: 1.4;
        transition: all 0.2s;
    }

    .mega-column a:hover {
        color: var(--gold);
        padding-left: 8px;
    }

    /* Hide mega menu on mobile */
    @media (max-width: 991px) {
        .mega-menu {
            display: none !important;
        }

        nav {
            display: none;
        }
    }
 /* ─────────────────────────────────────────────
     DESKTOP SLIDER  (≥ 1025px)
  ───────────────────────────────────────────── */
  #hero-desktop {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #0c0c0c;
  }

  /* Slides */
  #hero-desktop .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    pointer-events: none;
  }
  #hero-desktop .slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
  }
  #hero-desktop .slide-bg {
    position: absolute;
    inset: 0;
  }
  #hero-desktop .slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.06);
    transition: transform 8s ease;
  }
  #hero-desktop .slide.active .slide-bg img {
    transform: scale(1);
  }
  #hero-desktop .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(5,5,5,0.92) 40%, rgba(5,5,5,0.15) 70%, transparent 100%);
  }

  /* Content */
  #hero-desktop .slide-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    padding: 0 8%;
    margin-top: 60px;
  }
  #hero-desktop .slide.active .slide-badge   { animation: d-slide-in 0.8s 0.2s both; }
  #hero-desktop .slide.active .slide-title   { animation: d-slide-in 0.8s 0.4s both; }
  #hero-desktop .slide.active .slide-desc    { animation: d-slide-in 0.8s 0.6s both; }
  #hero-desktop .slide.active .slide-actions { animation: d-slide-in 0.8s 0.8s both; }

  @keyframes d-slide-in {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  #hero-desktop .slide-badge {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
  }
  #hero-desktop .slide-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    opacity: 0;
  }
  #hero-desktop .slide-title span { color: var(--gold); display: block; }
  #hero-desktop .slide-desc {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0;
  }
  #hero-desktop .slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
  }

  /* Buttons */
  .btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }
  .btn-primary {
    background: var(--gold);
    color: #000;
    border: 2px solid var(--gold);
  }
  .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* Dots */
  #hero-desktop .slider-nav {
    position: absolute;
    bottom: 40px;
    left: 8%;
    z-index: 10;
    display: flex;
    gap: 10px;
  }
  #hero-desktop .dot {
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  #hero-desktop .dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  #hero-desktop .dot.active { background: rgba(255,255,255,0.08); }
  #hero-desktop .dot.active::after { transform: scaleX(1); }

  /* Arrows */
  #hero-desktop .slider-arrows {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #hero-desktop .arr-btn {
    width: 46px;
    height: 46px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }
  #hero-desktop .arr-btn:hover { background: var(--gold); color: #000; }

  /* Count */
  #hero-desktop .slide-count {
    position: absolute;
    bottom: 34px;
    right: 8%;
    z-index: 10;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
  }
  #hero-desktop .slide-count span {
    font-size: 0.78rem;
    color: var(--gold-light);
    display: block;
    text-align: right;
    letter-spacing: 2px;
    margin-top: -4px;
  }

  /* Scroll cue */
  #hero-desktop .scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: bounce-y 2s ease infinite;
  }
  #hero-desktop .scroll-cue .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
  }
  #hero-desktop .scroll-cue i { color: var(--gold); font-size: 0.7rem; }
  @keyframes bounce-y {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
  }


  /* ─────────────────────────────────────────────
     MOBILE / TABLET SLIDER  (≤ 1024px)
     
  ───────────────────────────────────────────── */
  #hero-mobile {
    display: none;
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 580px;
    overflow: hidden;
    background: #0c0c0c;
  }

  /* ── Track (horizontal swipe) ── */
  #hero-mobile .m-track-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  #hero-mobile .m-track {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* ── Each slide fills the full viewport ── */
  #hero-mobile .m-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  /* ── Background image — full cover ── */
  #hero-mobile .m-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    pointer-events: none;
    user-select: none;
  }

  /* ── Gradient overlay: transparent top → dark bottom ── */
  #hero-mobile .m-overlay {
    position: absolute;
    inset: 0;
    /* Strong at the bottom where text lives, subtle at top so face shows */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.18) 35%,
      rgba(10,5,0,0.72) 58%,
      rgba(8,3,0,0.93) 75%,
      rgba(8,3,0,0.98) 100%
    );
  }

  /* ── Text content pinned to bottom ── */
  #hero-mobile .m-content {
    position: absolute;
    bottom: 90px; /* leave room for dots bar */
    left: 0; right: 0;
    padding: 0 22px;
    z-index: 5;
  }

  /* Left-border badge like the reference */
  #hero-mobile .m-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  #hero-mobile .m-badge::before {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
  }

  #hero-mobile .m-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  #hero-mobile .m-title span {
    color: var(--gold);
    display: block;
  }

  #hero-mobile .m-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 22px;
  }

  /* ── Buttons — full width stacked, match reference ── */
  #hero-mobile .m-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #hero-mobile .m-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
  }
  /* Primary — solid gold/orange like the reference */
  #hero-mobile .m-actions .m-btn-primary {
    background: #e07b00;
    color: #fff;
    border: 2px solid #e07b00;
  }
  #hero-mobile .m-actions .m-btn-primary:hover {
    background: #f08c10;
    border-color: #f08c10;
  }
  /* Outline — dark with white border like the reference */
  #hero-mobile .m-actions .m-btn-outline {
    background: rgba(20,8,0,0.65);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
  }
  #hero-mobile .m-actions .m-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── Dots bar at very bottom ── */
  #hero-mobile .m-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  }
  #hero-mobile .m-dots {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  /* Round dots like the reference screenshot */
  #hero-mobile .m-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.35s;
    border: 1.5px solid transparent;
  }
  #hero-mobile .m-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
  }

  /* Swipe hint */
  #hero-mobile .swipe-hint {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 0.65rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    animation: hint-fade 3s 1.5s forwards;
    z-index: 30;
    white-space: nowrap;
  }
  @keyframes hint-fade { 0%,60%{opacity:1} 100%{opacity:0} }

  /* ─────────────────────────────────────────────
     BREAKPOINT SWITCHER
  ───────────────────────────────────────────── */
  @media (min-width: 1025px) {
    #hero-desktop { display: block; }
    #hero-mobile  { display: none !important; }
  }
  @media (max-width: 1024px) {
    #hero-mobile  { display: block; }
    #hero-desktop { display: none !important; }
  }

  /* Tablet tweaks */
  @media (min-width: 600px) and (max-width: 1024px) {
    #hero-mobile .m-content { padding: 0 44px; bottom: 110px; }
    #hero-mobile .m-title { font-size: clamp(1.9rem, 4vw, 2.8rem); }
    #hero-mobile .m-desc  { font-size: 0.95rem; }
    #hero-mobile .m-actions { flex-direction: row; gap: 14px; }
    #hero-mobile .m-actions a { flex: 1; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    #hero-desktop .slide-bg img,
    #hero-desktop .slide,
    #hero-mobile .m-track { transition-duration: 0.1ms !important; animation: none !important; }
  }
    /* STARS */
    .stars-canvas {
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none
    }

    /* SECTION BASE */
    section {
        padding: 100px 8%;
        position: relative
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px
    }

    .section-tag {
        display: inline-block;
        font-size: 0.7rem;
        letter-spacing: 5px;
        font-weight: 700;
        color: var(--gold);
        border: 1px solid var(--glass-border);
        padding: 5px 18px;
        margin-bottom: 18px
    }

    .section-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.8rem, 4vw, 3rem);
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 16px
    }

    .section-title span {
        color: var(--gold)
    }

    .section-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        margin: 0 auto 20px
    }

    .section-subtitle {
        font-size: 1rem;
        color: var(--white-muted);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.8
    }

    /* SERVICES */
    #services {
        background: var(--dark)
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px
    }

    .service-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        transition: var(--transition);
        cursor: pointer;
        display: flex;
        flex-direction: column
    }

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.4s
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 168, 67, 0.4);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4)
    }

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

    .service-img {
        width: 100%;
        height: 180px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease
    }

    .service-card:hover .service-img img {
        transform: scale(1.08)
    }

    .service-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.6))
    }

    .service-num {
        position: absolute;
        top: 10px;
        right: 14px;
        font-family: 'Cinzel', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8)
    }

    .service-body {
        padding: 24px 22px;
        flex: 1;
        display: flex;
        flex-direction: column
    }

    .service-name {
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 10px;
        line-height: 1.4
    }

    .service-desc {
        font-size: 0.82rem;
        color: var(--white-muted);
        line-height: 1.8;
        margin-bottom: 18px;
        flex: 1
    }

    .btn-read {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--gold);
        text-decoration: none;
        transition: var(--transition)
    }

    .btn-read i {
        font-size: 0.7rem;
        transition: transform 0.3s
    }

    .btn-read:hover {
        color: var(--orange)
    }

    .btn-read:hover i {
        transform: translateX(4px)
    }


    /* TESTIMONIALS */
    #testimonials {
        background: var(--dark);
        overflow: hidden
    }

    .test-slider {
        overflow: hidden;
        position: relative
    }

    .test-track {
        display: flex;
        transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1)
    }

    .test-card {
        min-width: 380px;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        padding: 36px 32px;
        margin: 0 12px;
        position: relative;
        flex-shrink: 0
    }

    .test-card::before {
        content: '"';
        font-family: 'Cinzel Decorative', serif;
        font-size: 5rem;
        color: var(--gold);
        opacity: 0.08;
        position: absolute;
        top: 10px;
        left: 20px;
        line-height: 1
    }

    .test-stars {
        color: var(--gold);
        font-size: 0.85rem;
        margin-bottom: 16px;
        letter-spacing: 2px
    }

    .test-text {
        font-size: 0.9rem;
        color: var(--white-muted);
        line-height: 1.9;
        margin-bottom: 24px;
        font-style: italic
    }

    .test-author {
        display: flex;
        align-items: center;
        gap: 12px
    }

    .test-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--deep-black);
        flex-shrink: 0
    }

    .test-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--white)
    }

    .test-loc {
        font-size: 0.75rem;
        color: var(--white-muted)
    }

    .test-controls {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px
    }

    .tc-btn {
        width: 44px;
        height: 44px;
        border: 1px solid var(--glass-border);
        background: transparent;
        color: var(--gold);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition)
    }

    .tc-btn:hover {
        background: var(--gold);
        color: var(--deep-black)
    }

    /* BLOG */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 28px
    }

    .blog-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        overflow: hidden;
        transition: var(--transition)
    }

    .blog-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 168, 67, 0.4);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4)
    }

    .blog-thumb {
        height: 200px;
        overflow: hidden;
        position: relative
    }

    .blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: block
    }

    .blog-card:hover .blog-thumb img {
        transform: scale(1.08)
    }

    .blog-thumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.5))
    }

    .blog-cat {
        position: absolute;
        top: 14px;
        left: 14px;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        color: var(--deep-black);
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 2px;
        padding: 4px 10px;
        z-index: 2
    }

    .blog-body {
        padding: 24px
    }

    .blog-meta {
        display: flex;
        gap: 16px;
        margin-bottom: 12px
    }

    .blog-meta span {
        font-size: 0.72rem;
        color: var(--white-muted);
        display: flex;
        align-items: center;
        gap: 5px
    }

    .blog-meta i {
        color: var(--gold);
        font-size: 0.65rem
    }

    .blog-title {
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        color: var(--white);
        line-height: 1.5;
        margin-bottom: 12px
    }

    .blog-excerpt {
        font-size: 0.82rem;
        color: var(--white-muted);
        line-height: 1.8;
        margin-bottom: 20px
    }

    /* FAQ */
    #faq {
        background: var(--dark)
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 1000px;
        margin: 0 auto
    }

    .faq-item {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        overflow: hidden;
        transition: var(--transition)
    }

    .faq-item.open {
        border-color: rgba(212, 168, 67, 0.4)
    }

    .faq-q {
        padding: 20px 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

    .faq-q-text {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--white-dim);
        line-height: 1.5
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        border: 1px solid var(--glass-border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 0.7rem;
        flex-shrink: 0;
        transition: var(--transition)
    }

    .faq-item.open .faq-icon {
        background: var(--gold);
        color: var(--deep-black);
        transform: rotate(45deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s
    }

    .faq-a-inner {
        padding: 0 24px 20px;
        font-size: 0.84rem;
        color: var(--white-muted);
        line-height: 1.9
    }

    .faq-item.open .faq-a {
        max-height: 200px
    }

    /* CONTACT 
    #contact {
        background: var(--dark3)
    }*/

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 24px
    }

    .contact-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        padding: 24px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: var(--transition)
    }

    .contact-card:hover {
        border-color: rgba(212, 168, 67, 0.4);
        transform: translateX(6px)
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--deep-black);
        font-size: 1.1rem;
        flex-shrink: 0
    }

    .contact-detail .label {
        font-size: 0.7rem;
        letter-spacing: 3px;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 4px
    }

    .contact-detail .val {
        font-size: 0.9rem;
        color: var(--white);
        font-weight: 500
    }

    .contact-form {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        padding: 40px
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px
    }

    .form-group label {
        font-size: 0.72rem;
        letter-spacing: 2px;
        color: var(--gold);
        font-weight: 700
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--glass-border);
        color: var(--white);
        padding: 14px 16px;
        font-size: 0.88rem;
        font-family: 'Raleway', sans-serif;
        border-radius: 3px;
        outline: none;
        transition: var(--transition);
        width: 100%
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--gold);
        background: rgba(212, 168, 67, 0.05)
    }

    .form-group textarea {
        height: 120px;
        resize: vertical
    }

    .form-group select option {
        background: var(--dark2);
        color: var(--white)
    }

    .map-embed {
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
        height: 280px;
        margin-top: 24px
    }

    .map-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(100%) invert(1) hue-rotate(200deg)
    }

    /* CTA BANNER */
    .cta-banner {
        background: linear-gradient(135deg, var(--dark3), var(--dark2));
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        padding: 70px;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin: 0 8% 80px
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 50%, rgba(212, 168, 67, 0.08), transparent 70%)
    }

    .cta-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        color: var(--white);
        margin-bottom: 14px
    }

    .cta-sub {
        font-size: 1rem;
        color: var(--white-muted);
        margin-bottom: 36px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }

    .cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap
    }

    /* FOOTER */
    footer {
        background: var(--deep-black);
        border-top: 1px solid var(--glass-border);
        padding: 70px 8% 30px
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 50px;
        margin-bottom: 50px
    }

    .footer-brand .logo-name {
        font-family: 'Cinzel Decorative', serif;
        font-size: 1.1rem;
        color: var(--gold);
        margin-bottom: 6px
    }

    .footer-brand .logo-sub {
        font-size: 0.6rem;
        color: var(--gold-light);
        letter-spacing: 4px;
        opacity: 0.7;
        margin-bottom: 16px
    }

    .footer-brand p {
        font-size: 0.83rem;
        color: var(--white-muted);
        line-height: 1.9;
        margin-bottom: 20px;
        max-width: 300px
    }

    .footer-socials {
        display: flex;
        gap: 10px
    }

    .social-btn {
        width: 36px;
        height: 36px;
        border: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 0.85rem;
        text-decoration: none;
        transition: var(--transition)
    }

    .social-btn:hover {
        background: var(--gold);
        color: var(--deep-black);
        border-color: var(--gold)
    }

    .footer-col h4 {
        font-family: 'Cinzel', serif;
        font-size: 0.85rem;
        letter-spacing: 3px;
        color: var(--gold);
        margin-bottom: 20px
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .footer-col ul li a {
        font-size: 0.82rem;
        color: var(--white-muted);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px
    }

    .footer-col ul li a:hover {
        color: var(--gold);
        padding-left: 4px
    }

    .newsletter-form {
        display: flex;
        gap: 0;
        margin-top: 16px
    }

    .newsletter-form input {
        flex: 1;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-right: none;
        color: var(--white);
        padding: 12px 16px;
        font-size: 0.82rem;
        font-family: 'Raleway', sans-serif;
        outline: none;
        border-radius: 3px 0 0 3px
    }

    .newsletter-form input::placeholder {
        color: var(--white-muted)
    }

    .newsletter-form button {
        padding: 12px 18px;
        background: var(--gold);
        color: var(--deep-black);
        border: none;
        cursor: pointer;
        font-size: 0.8rem;
        font-weight: 800;
        border-radius: 0 3px 3px 0;
        transition: var(--transition)
    }

    .newsletter-form button:hover {
        background: var(--orange)
    }

    .footer-bottom {
        border-top: 1px solid var(--glass-border);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px
    }

    .footer-bottom p {
        font-size: 0.78rem;
        color: var(--white-muted)
    }

    .footer-bottom a {
        color: var(--gold);
        text-decoration: none
    }

    /* FLOATING ACTIONS */
    .float-actions {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 500;
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .fa-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.2rem;
        transition: var(--transition);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4)
    }

    .fa-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5)
    }

    .fa-wa {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff
    }

    .fa-call {
        background: linear-gradient(135deg, var(--gold), var(--orange));
        color: var(--deep-black)
    }

    .fa-top {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        color: var(--gold);
        backdrop-filter: blur(10px)
    }

    /* MISC */
    .divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--glass-border), transparent)
    }

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease
    }

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

    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.8s ease, transform 0.8s ease
    }

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s ease, transform 0.8s ease
    }

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .stagger>* {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease
    }

    .stagger.visible>*:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0s
    }

    .stagger.visible>*:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.1s
    }

    .stagger.visible>*:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.2s
    }

    .stagger.visible>*:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.3s
    }

    .stagger.visible>*:nth-child(5) {
        opacity: 1;
        transform: none;
        transition-delay: 0.4s
    }

    .stagger.visible>*:nth-child(6) {
        opacity: 1;
        transform: none;
        transition-delay: 0.5s
    }

    .stagger.visible>*:nth-child(7) {
        opacity: 1;
        transform: none;
        transition-delay: 0.6s
    }

    .stagger.visible>*:nth-child(8) {
        opacity: 1;
        transform: none;
        transition-delay: 0.7s
    }

    .stagger.visible>*:nth-child(9) {
        opacity: 1;
        transform: none;
        transition-delay: 0.8s
    }

    .stagger.visible>*:nth-child(n+10) {
        opacity: 1;
        transform: none;
        transition-delay: 0.9s
    }

    .particle {
        position: fixed;
        pointer-events: none;
        z-index: 0;
        border-radius: 50%;
        background: var(--gold);
        animation: float-particle linear infinite
    }

    @keyframes float-particle {
        0% {
            transform: translateY(110vh) scale(0);
            opacity: 0
        }

        10% {
            opacity: 0.6
        }

        90% {
            opacity: 0.2
        }

        100% {
            transform: translateY(-10vh) scale(1);
            opacity: 0
        }
    }

    .sym-bg {
        position: absolute;
        font-size: 20vw;
        color: rgba(212, 168, 67, 0.03);
        font-family: 'Cinzel Decorative', serif;
        pointer-events: none;
        user-select: none;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        line-height: 1
    }

    .section-pattern {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(212, 168, 67, 0.04) 1px, transparent 0);
        background-size: 40px 40px;
        pointer-events: none
    }

    .trust-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        padding: 50px 8%;
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        background: var(--dark)
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 12px
    }

    .trust-item i {
        font-size: 1.5rem;
        color: var(--gold)
    }

    .trust-item .trust-text .t {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        color: var(--white);
        font-weight: 700
    }

    .trust-item .trust-text .s {
        font-size: 0.7rem;
        color: var(--white-muted);
        letter-spacing: 2px
    }

    .marquee-section {
        overflow: hidden;
        padding: 20px 0;
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        background: linear-gradient(90deg, var(--deep-black), var(--dark2), var(--deep-black))
    }

    .marquee-track {
        display: flex;
        gap: 60px;
        animation: marquee 25s linear infinite;
        white-space: nowrap
    }

    .marquee-item {
        font-family: 'Cinzel', serif;
        font-size: 0.8rem;
        letter-spacing: 4px;
        color: var(--white-muted);
        display: flex;
        align-items: center;
        gap: 20px
    }

    .marquee-item span {
        color: var(--gold)
    }

    @keyframes marquee {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    .toast {
        position: fixed;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: linear-gradient(135deg, var(--gold), var(--orange));
        color: var(--deep-black);
        padding: 14px 28px;
        border-radius: 4px;
        font-weight: 700;
        font-size: 0.85rem;
        z-index: 9999;
        opacity: 0;
        transition: all 0.4s;
        pointer-events: none
    }

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
        #about {
            grid-template-columns: 1fr;
            padding: 80px 6%;
            gap: 50px
        }

        .about-frame {
            max-width: 340px
        }

        .about-stats-mini {
            right: 0
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr
        }

        .faq-grid {
            grid-template-columns: 1fr
        }
    }

    @media(max-width:768px) {

        nav,
        .header-btns {
            display: none
        }

        .hamburger {
            display: flex
        }

        section {
            padding: 70px 5%
        }

        .contact-grid {
            grid-template-columns: 1fr
        }

        .form-row {
            grid-template-columns: 1fr
        }

        .cta-banner {
            padding: 40px 30px;
            margin: 0 5% 60px
        }

        .footer-grid {
            grid-template-columns: 1fr
        }

        .test-card {
            min-width: calc(100vw - 40px)
        }

        .about-stats-mini {
            display: none
        }

        .slide-content {
            padding: 0 5%;
            margin-top: 80px
        }

        .blog-grid {
            grid-template-columns: 1fr
        }

        .trust-row {
            gap: 20px
        }

        .slider-arrows {
            display: none
        }
    }

    @media(max-width:480px) {
        .services-grid {
            grid-template-columns: 1fr
        }

        .about-features {
            grid-template-columns: 1fr
        }

        .test-card {
            min-width: calc(100vw - 30px)
        }
    }

    /* ── hero-page BANNER ── */
    .hero-page {
        position: relative;
        background:var(--gold);
        min-height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 6.5rem 1.5rem 0rem;
        overflow: hidden;
    }

    /* Texture overlay mimicking bark/tree pattern */
    .hero-page::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            repeating-linear-gradient(87deg, rgba(0, 0, 0, 0.06) 0px, transparent 1px, transparent 40px),
            repeating-linear-gradient(3deg, rgba(0, 0, 0, 0.04) 0px, transparent 1px, transparent 60px);
        pointer-events: none;
    }

    /* Dark vignette sides */
    .hero-page::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
        pointer-events: none;
    }

    .hero-page-inner {
        position: relative;
        z-index: 2
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.78rem;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        justify-content: center
    }

    .breadcrumb a {
        color: var(--crimson-deep);
        text-decoration: none;
        font-weight: 600
    }

    .breadcrumb a:hover {
        color: var(--deep-black)
    }

    .breadcrumb span {
        color: rgba(0, 0, 0, 0.5);
        font-size: 0.7rem
    }

    .breadcrumb .current {
        color:var(--deep-black)
    }

    /* hero-page title */
    .hero-page h1 {
        font-family: 'Cinzel', serif;
        font-size: clamp(2.2rem, 6vw, 4rem);
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1.15;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .hero-page h1 .white-part {
        color: #ffffff;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5)
    }

    .hero-page h1 .gold-part {
        color: var(--deep-black);
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4)
    }

    /* OM divider */
    .om-divider {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .om-divider::before,
    .om-divider::after {
        content: '';
        display: block;
        height: 1px;
        width: 60px;
        background: linear-gradient(90deg, transparent, var(--deep-black));
    }

    .om-divider::after {
        background: linear-gradient(90deg, var(--deep-black), transparent)
    }

    .om-symbol {
        color: var(--deep-black);
        font-size: 1.4rem;
        font-family: 'EB Garamond', serif
    }

    /* hero-page subtitle */
    .hero-page-sub {
        font-family: 'EB Garamond', serif;
        font-style: italic;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.88);
        max-width: 560px;
        margin: 0 auto 2rem;
        line-height: 1.65;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    }

    /* ── INTRO SPLIT ── */
    .intro-section {
        background: var(--deep-black);
        padding-top: 3.5rem
    }

    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto
    }

    @media(max-width:768px) {
        .intro-grid {
            grid-template-columns: 1fr;
            gap: 2rem
        }
    }

    .intro-text h2 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: clamp(1.25rem, 2.8vw, 1.75rem);
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3
    }

    .intro-text p {
        color:var(--muted);
        margin-bottom: 1rem;
        font-size: 0.96rem;
        line-height: 1.8
    }

    .intro-text p:last-child {
        margin-bottom: 0
    }

    .intro-image-wrap {
        border-radius: 4px;
        overflow: hidden;
        border: 2px solid var(--border-gold);
        box-shadow: 0 8px 32px rgba(80, 10, 10, 0.18)
    }

    .intro-image-wrap img {
        width: 100%;
        height: auto;
        display: block
    }

    /* ── STATS BAND ── */
    .stats-band {
        background: linear-gradient(135deg, var(--crimson-deep), var(--gold));
        padding: 2.75rem 1.25rem;
        border-top: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold)
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
        max-width: 900px;
        margin: 0 auto;
        text-align: center
    }

    .stat-item {
        padding: 0.5rem
    }

    .stat-num {
        font-family: 'Cinzel', serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--gold-bright);
        line-height: 1;
        margin-bottom: 0.3rem
    }

    .stat-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 0.1em;
        text-transform: uppercase
    }

    :root {
        --bg-page: #fff8f2;
        --crimson-mid: #8b0000;
        --crimson-deep: #5c0808;
        --gold: #c89b3c;
        --gold-bright: #e8a800;
        --gold-light: #f4c430;
    }

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

    /* CONTACT */
    .contact-section {
        background: var(--deep-black);
        padding: 80px 0;
    }

    .contact-wrap {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 3.5rem;
        max-width: 1100px;
        margin: 0 auto;
        align-items: start;
    }

    @media(max-width:900px) {
        .contact-wrap {
            grid-template-columns: 1fr;
        }
    }

    .contact-infopage h2 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .contact-infopage>p {
        color: var(--muted);
        margin-bottom: 1.5rem;
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color:var(--muted);
        font-size: 0.94rem;
    }

    .contact-item svg {
        width: 18px;
        height: 18px;
        stroke: var(--muted);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

    .contact-item a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 700;
    }

    .contact-item a:hover {
        color: var(--muted);
    }

    .wa-block {
        margin-top: 1.75rem;
        background: #0b2a1a;
        border: 1.5px solid rgba(37, 211, 102, 0.4);
        border-radius: 4px;
        padding: 1.2rem 1.4rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        transition: border-color .2s, background .2s;
    }

    .wa-block:hover {
        border-color: #25d366;
        background: #0e3520;
    }

    .wa-block svg {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .wa-block-text strong {
        display: block;
        color: #25d366;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .wa-name {
        display: block;
        color: #fff;
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 700;
    }

    .wa-num {
        color: var(--gold-bright);
        font-size: .88rem;
        font-weight: 600;
    }

    /* FORM */
    .form-card {
        background: linear-gradient(135deg, var(--gold), #5c0808);
        border: 1px solid rgba(200, 134, 10, .45);
        border-radius: 6px;
        padding: 2rem 1.75rem;
        box-shadow: 0 8px 32px rgba(60, 0, 0, .25);
    }

    .form-card h3 {
        font-family: 'Cinzel', serif;
        color: var(--deep-black);
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: .3rem;
    }

    .form-sub {
        text-align: center;
        color: rgba(255, 255, 255, .6);
        font-size: .85rem;
        margin-bottom: 1.5rem;
    }

    .form-grouppage {
        margin-bottom: .95rem;
        position: relative;
    }

    .form-grouppage input,
    .form-grouppage select,
    .form-grouppage textarea {
        width: 100%;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(200, 134, 10, .35);
        border-radius: 3px;
        color: #fff;
        font-size: .92rem;
        padding: .65rem 2.5rem .65rem .9rem;
        outline: none;
        transition: border-color .2s;
        appearance: none;
    }

    .form-grouppage select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8a800' stroke-width='1.8' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right .9rem center;
    }

    .form-grouppage input::placeholder,
    .form-grouppage textarea::placeholder {
        color: rgba(255, 255, 255, .35);
    }

    .form-grouppage input:focus,
    .form-grouppage select:focus,
    .form-grouppage textarea:focus {
        border-color: var(--gold-bright);
    }

    .form-grouppage textarea {
        resize: vertical;
        min-height: 95px;
        padding-right: .9rem;
    }

    .form-grouppage select option {
        background: #3d0000;
        color: #fff;
    }

    .field-icon {
        position: absolute;
        right: .75rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(200, 134, 10, .6);
        font-size: .9rem;
        pointer-events: none;
    }

    .btn-submit {
        width: 100%;
        background: var(--gold-bright);
        color: #000;
        border: none;
        font-weight: 700;
        font-size: .92rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: .9rem 1rem;
        border-radius: 3px;
        cursor: pointer;
        margin-top: .4rem;
        transition: background .2s;
    }

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

    .form-note {
        text-align: center;
        color: rgba(255, 255, 255, .45);
        font-size: .76rem;
        margin-top: .75rem;
    }



    /* ── Layout ── */
    .cx-page {
         max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    }

    /* ── Section label ── */
    .eyebrow {
        font-family: 'Cinzel', serif;
        font-size: 11px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-bottom: 10px;
    }

    /* ── Page title block ── */
    .page-title-block {
        text-align: center;
        padding: 64px 0 52px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 56px;
    }

    .page-title-block h1 {
        font-family: 'Cinzel Decorative', serif;
        font-size: clamp(26px, 5vw, 48px);
        font-weight: 700;
        color: var(--gold-light);
        line-height: 1.2;
        text-shadow: 0 0 40px rgba(201, 168, 76, 0.35);
        margin-bottom: 14px;
    }

    .page-title-block p {
        color: var(--text-muted);
        font-size: 16px;
        max-width: 520px;
        margin: 0 auto;
        font-style: italic;
    }

    .crescent {
        font-size: 32px;
        display: block;
        margin-bottom: 12px;
        color: var(--gold);
    }

    

 

    /* ── LAYOUT ── */
    .ab-page { position: relative; z-index: 1; }

    section { position: relative; }

    .ab-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ── GOLD DIVIDER ── */
    .ab-gold-line {
      display: flex; align-items: center; gap: 1rem;
      margin: 0 auto 1.6rem;
      max-width: 340px;
    }
    .ab-gold-line span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .ab-gold-line i { color: var(--gold); font-style: normal; font-size: 1.1rem; }

    /* ── SECTION LABEL ── */
    .ab-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .25em;
      color: var(--gold);
      text-transform: uppercase;
      text-align: center;
      margin-bottom: .6rem;
    }


    
    /* ── STORY ── */
    .ab-story { padding: 7rem 2rem; }
    .ab-story-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 760px) { .ab-story-inner { grid-template-columns: 1fr; gap: 3rem; } }

    .ab-story-image-wrap {
      position: relative;
    }
    .ab-story-image-wrap img {
      width: 100%;
      display: block;
      filter: sepia(.15) brightness(.88);
    }
    .ab-story-image-frame {
      position: absolute;
      inset: -12px;
      border: 1px solid rgba(201,168,76,.35);
      pointer-events: none;
    }
    .ab-story-image-frame::before, .ab-story-image-frame::after {
      content: '✦';
      position: absolute;
      color: var(--gold);
      font-size: .8rem;
    }
    .ab-story-image-frame::before { top: -8px; left: -8px; }
    .ab-story-image-frame::after  { bottom: -8px; right: -8px; }
    .ab-story-badge {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      width: 88px; height: 88px;
      background: var(--gold);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: var(--black);
    }
    .ab-story-badge strong {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.6rem;
      line-height: 1;
    }
    .ab-story-badge span {
      font-family: 'Cinzel', serif;
      font-size: .5rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .ab-story-text h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1.4rem;
      line-height: 1.25;
    }
    .ab-story-text h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .ab-story-text p {
      color: var(--muted);
      margin-bottom: 1.3rem;
      font-size: 1.08rem;
    }
    .ab-story-text p:first-of-type {
      color: var(--cream);
      font-size: 1.15rem;
    }

    /* ── LINEAGE QUOTE ── */
    .ab-lineage-quote {
      border-left: 2px solid var(--gold);
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--gold-lt);
      background: rgba(201,168,76,.04);
    }

    /* ── EXPERTISE GRID ── */
    .ab-expertise { padding: 6rem 2rem; background: linear-gradient(180deg, transparent, rgba(15,15,42,.6), transparent); }
    .ab-section-header { text-align: center; margin-bottom: 4rem; }
    .ab-section-header h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: var(--white);
      margin-bottom: .5rem;
    }
    .ab-section-header p {
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
      font-size: 1.05rem;
      font-style: italic;
    }

    .ab-expertise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .ab-exp-card {
      border: 1px solid rgba(201,168,76,.18);
      padding: 2rem 1.8rem;
      background: rgba(255,255,255,.02);
      transition: border-color .25s, background .25s;
    }
    .ab-exp-card:hover {
      border-color: rgba(201,168,76,.55);
      background: rgba(201,168,76,.04);
    }
    .ab-exp-icon {
      font-size: 1.8rem;
      margin-bottom: .8rem;
      filter: drop-shadow(0 0 8px rgba(201,168,76,.4));
    }
    .ab-exp-card h3 {
      font-family: 'Cinzel', serif;
      font-size: .9rem;
      letter-spacing: .08em;
      color: var(--gold-lt);
      margin-bottom: .5rem;
    }
    .ab-exp-card p {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.65;
    }

    
    /* ── CTA BAND ── */
    .ab-cta-band {
      padding: 5rem 2rem;
      background: linear-gradient(135deg, rgba(140,90,10,.16), rgba(80,40,160,.12));
      border-top: 1px solid rgba(201,168,76,.2);
      border-bottom: 1px solid rgba(201,168,76,.2);
      text-align: center;
    }
    .ab-cta-band h2 {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      color: var(--gold-lt);
      margin-bottom: 1rem;
    }
    .ab-cta-band p {
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 2.4rem;
      font-style: italic;
      font-size: 1.1rem;
    }
    .ab-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .ab-btn-primary {
      display: inline-block;
      padding: .9rem 2.6rem;
      background: var(--gold);
      color: var(--black);
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 700;
      transition: background .2s;
    }
    .ab-btn-primary:hover { background: var(--gold-lt); }
    .ab-btn-outline {
      display: inline-block;
      padding: .9rem 2.6rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .ab-btn-outline:hover { background: var(--gold); color: var(--black); }



     /* === MV-CONTACT: all classes prefixed mv-ct__ to avoid conflicts === */

  .mv-ct__wrap {
    font-family: 'Raleway', sans-serif;
    background: #0e0e0e;
    color: #f0e6d3;
    padding: 60px 40px 72px;
  }

  /* ── Info Cards ── */
  .mv-ct__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto 52px;
  }

  .mv-ct__card {
    background: #1a1a1a;
    border: 1px solid #3a2e1a;
    border-radius: 12px;
    padding: 26px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .25s, box-shadow .25s;
  }

  .mv-ct__card:hover {
    border-color: #c8860a;
    box-shadow: 0 4px 24px rgba(200,134,10,0.14);
  }

  .mv-ct__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #c8860a, #e6a820);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 6px;
    flex-shrink: 0;
  }

  .mv-ct__card-title {
    font-family: 'Cinzel', serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #c8860a;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .mv-ct__card-text,
  .mv-ct__card-text a {
    font-size: 13.5px;
    color: #c2a97a;
    line-height: 1.55;
    text-decoration: none;
    text-align: center;
  }

  .mv-ct__card-text a:hover { color: #e6a820; }

  /* ── Main Row ── */
  .mv-ct__main {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: start;
  }

  /* Map */
  .mv-ct__map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #3a2e1a;
    box-shadow: 0 6px 32px rgba(0,0,0,0.55);
    height: 430px;
  }

  .mv-ct__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(30%) brightness(0.85);
  }

  /* Form Side */
  .mv-ct__heading {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .mv-ct__heading span {
    color: #c8860a;
  }

  .mv-ct__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mv-ct__full { grid-column: 1 / -1; }

  .mv-ct__grid input,
  .mv-ct__grid textarea,
  .mv-ct__grid select {
    width: 100%;
    background: #1a1a1a;
    border: 1.5px solid #3a2e1a;
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #f0e6d3;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }

  .mv-ct__grid input::placeholder,
  .mv-ct__grid textarea::placeholder {
    color: #6b5535;
  }

  .mv-ct__grid input:focus,
  .mv-ct__grid textarea:focus,
  .mv-ct__grid select:focus {
    border-color: #c8860a;
    box-shadow: 0 0 0 3px rgba(200,134,10,0.13);
  }

  .mv-ct__grid select {
    color: #6b5535;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8860a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }

  .mv-ct__grid select option {
    background: #1a1a1a;
    color: #f0e6d3;
  }

  .mv-ct__grid textarea {
    height: 130px;
    resize: vertical;
  }

  .mv-ct__btn {
    grid-column: 1 / -1;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    margin-top: 4px;
  }

  .mv-ct__btn:hover {
    background: var(--muted);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
  }

  .mv-ct__note {
    grid-column: 1 / -1;
    font-size: 11.5px;
    color: #6b5535;
    text-align: center;
    margin-top: -4px;
    letter-spacing: 0.03em;
  }

  .mv-ct__toast {
    display: none;
    background: #1a3a1a;
    border: 1px solid #2d6b2d;
    color: #7ecc7e;
    border-radius: 8px;
    padding: 13px 18px;
    font-size: 13.5px;
    grid-column: 1 / -1;
    text-align: center;
  }

  /* Divider line under heading */
  .mv-ct__divider {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, #c8860a, transparent);
    margin-bottom: 22px;
    margin-top: -18px;
  }

  /* ── Responsive ── */
  @media (max-width: 920px) {
    .mv-ct__cards { grid-template-columns: 1fr 1fr; }
    .mv-ct__main  { grid-template-columns: 1fr; }
    .mv-ct__map   { height: 300px; }
  }

  @media (max-width: 560px) {
    .mv-ct__wrap  { padding: 36px 18px 52px; }
    .mv-ct__cards { grid-template-columns: 1fr; }
    .mv-ct__grid  { grid-template-columns: 1fr; }
    .mv-ct__full, .mv-ct__btn, .mv-ct__note, .mv-ct__toast { grid-column: 1; }
    .mv-ct__heading { font-size: 21px; }
  }.mv-ct__icon {
    width: 60px;
    height: 60px;
    background:var(--gold); 
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: 0.3s ease;
}

.mv-ct__card:hover .mv-ct__icon {
    transform: translateY(-5px);
}