    :root {
        --tmg-dark: #18221f;
        --tmg-dark-soft: #25342f;
        --tmg-gold: #c5a35c;
        --tmg-gold-dark: #9f7f3b;
        --tmg-cream: #f7f1e6;
        --tmg-light: #fbfaf7;
        --tmg-text: #39423e;
        --tmg-muted: #6f7975;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Open Sans", Arial, sans-serif;
        color: var(--tmg-text);
        background: var(--tmg-light);
        line-height: 1.75;
        padding-top: 86px;
    }

    /* Mobile Menu Button With MENU Text */
    .tmg-navbar .navbar-toggle.tmg-menu-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        margin-top: 25px;
        border-radius: 6px;
    }

    .tmg-navbar .tmg-menu-text {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        color: var(--tmg-dark);
        letter-spacing: 1px;
        line-height: 1;
    }

    .tmg-navbar .tmg-menu-bars {
        display: inline-block;
    }

    .tmg-navbar .navbar-toggle.tmg-menu-toggle .icon-bar {
        display: block;
        width: 24px;
        height: 3px;
        margin: 4px 0;
        background: var(--tmg-dark);
        border-radius: 2px;
    }

    /* Keep normal Bootstrap desktop behaviour */
    @media (min-width: 992px) {
        .tmg-navbar .navbar-toggle.tmg-menu-toggle {
            display: none;
        }
    }

    h1,
    h2,
    h3,
    h4,
    .navbar-brand-text {
        font-family: "Playfair Display", Georgia, serif;
        color: var(--tmg-dark);
    }

    a {
        color: var(--tmg-gold-dark);
    }

    a:hover,
    a:focus {
        color: var(--tmg-gold);
        text-decoration: none;
    }

    .tmg-navbar {
        min-height: 86px;
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        border: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    }

    .tmg-navbar .navbar-brand {
        height: 86px;
        padding: 12px 15px;
        display: block;
    }

    .tmg-logo {
        max-height: 58px;
        width: auto;
    }

    .tmg-navbar .navbar-nav>li>a {
        padding-top: 33px;
        padding-bottom: 33px;
        color: var(--tmg-dark);
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .tmg-navbar .navbar-nav>li>a:hover,
    .tmg-navbar .navbar-nav>li>a:focus {
        color: var(--tmg-gold-dark);
        background: transparent;
    }

    .tmg-navbar .navbar-toggle {
        margin-top: 25px;
        border-color: rgba(0, 0, 0, 0.18);
    }

    .tmg-navbar .navbar-toggle .icon-bar {
        background: var(--tmg-dark);
    }

    .tmg-hero {
        position: relative;
        min-height: 690px;
        margin-top: -86px;
        padding-top: 86px;
        background:
            linear-gradient(90deg, rgba(24, 34, 31, 0.92) 0%, rgba(24, 34, 31, 0.72) 42%, rgba(24, 34, 31, 0.25) 100%),
            url('/system/img/rooms/luxury-double-1.jpg') center center / cover no-repeat;
        color: #fff;
        overflow: hidden;
    }

    .tmg-hero:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 150px;
        background: linear-gradient(0deg, var(--tmg-light) 0%, rgba(247, 241, 230, 0) 100%);
        pointer-events: none;
    }

    .tmg-hero-content {
        position: relative;
        z-index: 2;
        padding-top: 150px;
        padding-bottom: 130px;
    }

    .tmg-eyebrow {
        display: inline-block;
        margin-bottom: 18px;
        padding: 8px 14px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .tmg-hero h1 {
        color: #fff;
        font-size: 62px;
        line-height: 1.05;
        margin: 0 0 20px;
        text-shadow: 0 5px 22px rgba(0, 0, 0, 0.28);
    }

    .tmg-hero .lead {
        max-width: 620px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .btn-tmg-primary,
    .btn-tmg-outline,
    .btn-tmg-dark {
        border-radius: 50px;
        padding: 13px 26px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        transition: all 0.2s ease-in-out;
    }

    .btn-tmg-primary {
        color: #fff;
        background: var(--tmg-gold);
        border-color: var(--tmg-gold);
        box-shadow: 0 12px 25px rgba(197, 163, 92, 0.28);
    }

    .btn-tmg-primary:hover,
    .btn-tmg-primary:focus {
        color: #fff;
        background: var(--tmg-gold-dark);
        border-color: var(--tmg-gold-dark);
        transform: translateY(-1px);
    }

    .btn-tmg-outline {
        color: #fff;
        background: transparent;
        border-color: rgba(255, 255, 255, 0.7);
    }

    .btn-tmg-outline:hover,
    .btn-tmg-outline:focus {
        color: var(--tmg-dark);
        background: #fff;
        border-color: #fff;
    }

    .btn-tmg-dark {
        color: #fff;
        background: var(--tmg-dark);
        border-color: var(--tmg-dark);
    }

    .btn-tmg-dark:hover,
    .btn-tmg-dark:focus {
        color: #fff;
        background: var(--tmg-dark-soft);
        border-color: var(--tmg-dark-soft);
    }

    .tmg-quick-panel {
        position: relative;
        z-index: 5;
        margin-top: -76px;
    }

    .tmg-quick-box {
        padding: 28px;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .tmg-quick-item {
        position: relative;
        padding-left: 56px;
        min-height: 48px;
        margin: 8px 0;
    }

    .tmg-quick-icon {
        position: absolute;
        top: 2px;
        left: 0;
        width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 50%;
        background: var(--tmg-cream);
        color: var(--tmg-gold-dark);
        font-size: 18px;
    }

    .tmg-quick-item strong {
        display: block;
        color: var(--tmg-dark);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .tmg-quick-item span {
        color: var(--tmg-muted);
        font-size: 13px;
    }

    .section-padding {
        padding: 90px 0;
    }

    .section-padding-sm {
        padding: 65px 0;
    }

    .section-title {
        margin-bottom: 48px;
    }

    .section-title .sub-title {
        display: block;
        color: var(--tmg-gold-dark);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 42px;
        text-align: center;
        margin: 0 0 14px;
    }

    .section-title p {
        max-width: 720px;
        margin: 0 auto;
        color: var(--tmg-muted);
        font-size: 16px;
    }

    .bg-cream {
        background: var(--tmg-cream);
    }

    .bg-dark {
        background: var(--tmg-dark);
        color: rgba(255, 255, 255, 0.82);
    }

    .bg-dark h2,
    .bg-dark h3,
    .bg-dark h4 {
        color: #fff;
    }

    .tmg-card {
        min-height: 500px;
        margin-bottom: 30px;
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

    .tmg-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }

    .tmg-card-body {
        padding: 26px;
    }

    .tmg-card h3 {
        margin-top: 0;
        font-size: 26px;
    }

    .tmg-card p {
        color: var(--tmg-muted);
    }

    .tmg-card-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .tmg-feature-list {
        margin: 25px auto 0;
        max-width: fit-content;
        padding: 0;
        list-style: none;
    }

    .tmg-feature-list li {
        position: relative;
        padding: 9px 0 9px 34px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .tmg-feature-list li:last-child {
        border-bottom: 0;
    }

    .tmg-feature-list li:before {
        content: "\f00c";
        position: absolute;
        left: 0;
        top: 9px;
        font-family: FontAwesome;
        color: var(--tmg-gold-dark);
    }

    .tmg-about-image-wrap {
        position: relative;
        padding: 20px;
    }

    .tmg-about-image-wrap:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 55px;
        bottom: 55px;
        border-radius: 28px;
        background: var(--tmg-gold);
        opacity: 0.18;
    }

    .tmg-about-image {
        position: relative;
        z-index: 2;
        width: 100%;
        border-radius: 28px;
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
    }

    .tmg-floating-note {
        position: absolute;
        z-index: 3;
        right: 0;
        bottom: 0;
        max-width: 330px;
        padding: 14px;
        text-align: center;
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    }

    .tmg-floating-note strong {
        display: block;
        color: var(--tmg-dark);
        font-size: 28px;
        font-family: "Playfair Display", Georgia, serif;
        line-height: 1;
    }

    .tmg-floating-note span {
        display: block;
        color: var(--tmg-muted);
        font-size: 13px;
        line-height: 1.5;
        margin-top: 6px;
    }

    .tmg-icon-box {
        min-height: 242px;
        padding: 32px 24px;
        margin-bottom: 30px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .tmg-icon-box .fa {
        width: 58px;
        height: 58px;
        line-height: 58px;
        margin-bottom: 15px;
        text-align: center;
        border-radius: 50%;
        background: rgba(197, 163, 92, 0.16);
        color: var(--tmg-gold);
        font-size: 23px;
    }

    .tmg-rooms .nav-pills {
        margin-bottom: 35px;
        text-align: center;
    }

    .tmg-rooms .nav-pills>li {
        float: none;
        display: inline-block;
        margin: 4px;
    }

    .tmg-rooms .nav-pills>li>a {
        border-radius: 50px;
        color: var(--tmg-dark);
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        font-weight: 700;
    }

    .tmg-rooms .nav-pills>li.active>a,
    .tmg-rooms .nav-pills>li.active>a:hover,
    .tmg-rooms .nav-pills>li.active>a:focus {
        background: var(--tmg-dark);
        color: #fff;
        border-color: var(--tmg-dark);
    }

    .room-label {
        display: inline-block;
        margin-bottom: 12px;
        padding: 5px 11px;
        border-radius: 50px;
        background: var(--tmg-cream);
        color: var(--tmg-gold-dark);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .tmg-price {
        font-family: "Playfair Display", Georgia, serif;
        color: var(--tmg-dark);
        font-size: 36px;
        font-weight: 900;
        line-height: 1;
        margin: 12px 0;
    }

    .tmg-price small {
        font-family: "Open Sans", Arial, sans-serif;
        color: var(--tmg-muted);
        font-size: 13px;
        font-weight: 600;
    }

    .tmg-rate-panel {
        padding: 34px;
        border-radius: 28px;
        background: #fff;
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
    }

    .tmg-rate-grid {
        margin-left: -10px;
        margin-right: -10px;
    }

    .tmg-rate-col {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }

    .tmg-rate-card {
        position: relative;
        min-height: 132px;
        padding: 22px 22px 22px 92px;
        border-radius: 22px;
        background: var(--tmg-light);
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: all 0.2s ease-in-out;
    }

    .tmg-rate-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

    .tmg-rate-card.featured {
        background: var(--tmg-dark);
        color: rgba(255, 255, 255, 0.84);
        border-color: var(--tmg-dark);
    }

    .tmg-rate-card.featured h3,
    .tmg-rate-card.featured .tmg-rate-price {
        color: #fff;
    }

    .tmg-rate-icon {
        position: absolute;
        top: 24px;
        left: 22px;
        width: 52px;
        height: 52px;
        line-height: 52px;
        text-align: center;
        border-radius: 50%;
        background: var(--tmg-cream);
        color: var(--tmg-gold-dark);
        font-size: 20px;
    }

    .featured .tmg-rate-icon {
        background: rgba(197, 163, 92, 0.18);
        color: var(--tmg-gold);
    }

    .tmg-rate-card h3 {
        margin: 0 0 7px;
        font-size: 22px;
    }

    .tmg-rate-price {
        margin-bottom: 7px;
        color: var(--tmg-dark);
        font-family: "Playfair Display", Georgia, serif;
        font-size: 34px;
        font-weight: 900;
        line-height: 1;
    }

    .tmg-rate-price small {
        color: inherit;
        font-family: "Open Sans", Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
        opacity: 0.72;
    }

    .tmg-rate-card p {
        margin-bottom: 0;
        color: inherit;
        font-size: 13px;
        opacity: 0.78;
    }

    .tmg-checkin-box {
        position: relative;
        margin-top: 22px;
        padding: 26px 30px;
        border-radius: 24px;
        background: linear-gradient(135deg, #fff 0%, #fbf6eb 100%);
        border: 1px solid rgba(197, 163, 92, 0.28);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    .tmg-checkin-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 7px;
        background: var(--tmg-gold);
    }

    .tmg-checkin-content {
        position: relative;
        min-height: 118px;
        padding: 10px 190px 10px 76px;
    }

    .tmg-checkin-icon {
        position: absolute;
        left: 0;
        top: 14px;
        width: 54px;
        height: 54px;
        line-height: 54px;
        text-align: center;
        border-radius: 50%;
        background: var(--tmg-dark);
        color: var(--tmg-gold);
        font-size: 22px;
        box-shadow: 0 10px 22px rgba(24, 34, 31, 0.18);
    }

    .tmg-checkin-content h3 {
        margin: 0 0 8px;
        font-size: 25px;
    }

    .tmg-checkin-content p {
        max-width: 760px;
        margin: 0;
        color: var(--tmg-muted);
        font-size: 15px;
        line-height: 1.75;
    }

    .tmg-checkin-time {
        display: inline-block;
        margin-top: 12px;
        padding: 7px 13px;
        border-radius: 50px;
        background: rgba(197, 163, 92, 0.14);
        color: var(--tmg-gold-dark);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .tmg-checkin-clock {
        position: absolute;
        right: 8px;
        top: 50%;
        width: 150px;
        height: auto;
        transform: translateY(-50%);
        filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
    }

    .price-note {
        margin-top: 22px;
        color: var(--tmg-muted);
        font-size: 13px;
    }

    .tmg-gallery-card {
        position: relative;
        display: block;
        margin-bottom: 30px;
        border-radius: 24px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    }

    .tmg-gallery-card img {
        width: 100%;
        height: 255px;
        object-fit: cover;
        transition: transform 0.25s ease-in-out;
    }

    .tmg-gallery-card:hover img {
        transform: scale(1.04);
    }

    .tmg-gallery-caption {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 11px 14px;
        border-radius: 16px;
        background: rgba(24, 34, 31, 0.82);
        color: #fff;
        font-weight: 700;
        font-size: 13px;
    }

    .tmg-feature-photo {
        width: 100%;
        max-width: 520px;
        margin: 26px auto 0;
        border-radius: 24px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    }

    .payment-card {
        margin-top: 30px;
        padding: 26px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    }

    .payment-card img {
        max-height: 42px;
        margin: 10px auto 0;
    }

    .reception-clock {
        max-width: 150px;
        margin: 15px auto 0;
    }

    @media (max-width: 767px) {
        .tmg-checkin-box {
            padding: 24px 20px;
        }

        .tmg-checkin-content {
            min-height: 0;
            padding: 0;
            text-align: center;
        }

        .tmg-checkin-icon {
            position: static;
            display: block;
            margin: 0 auto 14px;
        }

        .tmg-checkin-clock {
            position: static;
            display: block;
            width: 125px;
            margin: 20px auto 0;
            transform: none;
        }
    }

    .tmg-testimonial {
        padding: 34px 60px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid #8b908f;
    }

    .tmg-testimonial blockquote {
        padding: 0;
        margin: 0;
        border: 0;
        color: var(--tmg-text);
        font-family: "Send Flowers", cursive;
        font-weight: 400;
        font-style: normal;
        font-size: 30px;
        line-height: 1;
    }

    .tmg-testimonial .guest-name {
        margin-top: 18px;
        color: var(--tmg-gold-dark);
        font-weight: 700;
    }

    .carousel-control.left,
    .carousel-control.right {
        background-image: none;
        color: var(--tmg-dark);
        text-shadow: none;
        width: 8%;
    }

    .tmg-contact-card {
        padding: 34px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    }

    .tmg-contact-line {
        position: relative;
        padding-left: 45px;
        margin-bottom: 22px;
    }

    .tmg-contact-line .fa {
        position: absolute;
        left: 0;
        top: 4px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        border-radius: 50%;
        color: var(--tmg-gold-dark);
        background: var(--tmg-cream);
    }

    .tmg-map {
        width: 100%;
        min-height: 560px;
        border: 0;
        border-radius: 24px;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    }

    .tmg-footer {
        padding: 42px 0;
        background: #101715;
        color: rgba(255, 255, 255, 0.65);
    }

    .tmg-footer a {
        color: rgba(255, 255, 255, 0.88);
    }

    .tmg-footer-logo {
        max-height: 54px;
        margin-bottom: 15px;
        filter: brightness(1.18);
    }

    .back-to-top {
        position: fixed;
        right: 45px;
        bottom: 45px;
        z-index: 99;
        display: none;
        width: 55px;
        height: 55px;
        line-height: 50px;
        text-align: center;
        border-radius: 50%;
        background: var(--tmg-gold);
        color: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    }

    i.fa.fa-angle-up {
        font-size: 25px;
        vertical-align: middle;
    }

    .back-to-top:hover,
    .back-to-top:focus {
        color: #fff;
        background: var(--tmg-gold-dark);
    }

/* =========================================================
   TMG NAVBAR - FORCE TABLET / IPAD TO USE MOBILE MENU ONLY
   Bootstrap 3 fix
   ========================================================= */

/* Below 1200px: show mobile menu button, hide desktop nav */
@media (max-width: 1199px) {

  .tmg-navbar .navbar-header {
    float: none;
  }

  .tmg-navbar .navbar-toggle,
  .tmg-navbar .tmg-menu-toggle {
    display: block !important;
    float: right;
    margin-top: 25px;
    margin-right: 0;
  }

  .tmg-navbar #tmg-main-nav.navbar-collapse,
  .tmg-navbar #tmg-main-nav.navbar-collapse.collapse {
    display: none !important;
    height: auto !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  .tmg-navbar #tmg-main-nav.navbar-collapse.collapse.in {
    display: block !important;
    overflow: visible !important;
  }

  .tmg-navbar #tmg-main-nav {
    clear: both;
    width: 100%;
    float: none !important;
    margin-top: 15px;
  }

  .tmg-navbar #tmg-main-nav .navbar-nav {
    float: none !important;
    margin: 0;
    width: 100%;
  }

  .tmg-navbar #tmg-main-nav .navbar-nav > li {
    float: none !important;
    display: block;
    width: 100%;
    margin-bottom: 6px;
  }

  .tmg-navbar #tmg-main-nav .navbar-nav > li > a {
    display: block;
    width: 100%;
    text-align: center;
  }
}


/* 1200px and up: show desktop nav, hide mobile menu button */
@media (min-width: 1200px) {

  .tmg-navbar .navbar-toggle,
  .tmg-navbar .tmg-menu-toggle {
    display: none !important;
  }

  .tmg-navbar #tmg-main-nav.navbar-collapse,
  .tmg-navbar #tmg-main-nav.navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }

  .tmg-navbar #tmg-main-nav .navbar-nav {
    float: right;
  }

  .tmg-navbar #tmg-main-nav .navbar-nav > li {
    float: left;
  }
}

/* -------------------------------------------------------- */

    @media (max-width: 991px) {
        body {
            padding-top: 74px;
        }

        .tmg-navbar {
            min-height: 74px;
        }

        .tmg-navbar .navbar-brand {
            height: 74px;
            padding-top: 10px;
        }

        .tmg-logo {
            max-height: 50px;
        }

        .tmg-navbar .navbar-nav>li>a {
            padding-top: 14px;
            padding-bottom: 14px;
        }

        .tmg-hero {
            min-height: 610px;
            margin-top: -74px;
            padding-top: 74px;
        }

        .tmg-hero-content {
            padding-top: 110px;
        }

        .tmg-hero h1 {
            font-size: 48px;
        }

        .section-padding {
            padding: 70px 0;
        }

        .tmg-floating-note {
            position: relative;
            right: auto;
            bottom: auto;
            margin: -30px 20px 0;
        }
    }

    @media (max-width: 767px) {
        body {
            padding-top: 70px;
        }

        .tmg-navbar {
            min-height: 70px;
        }

        .tmg-navbar .navbar-brand {
            height: 70px;
            padding-top: 11px;
            max-width: 250px;
        }

        .tmg-logo {
            max-height: 44px;
        }

        .tmg-navbar .navbar-collapse {
            border: 0;
            box-shadow: none;
            background: #fff;
        }

        .tmg-navbar .navbar-nav {
            margin-top: 0;
            margin-bottom: 0;
        }

        .tmg-navbar .navbar-nav>li>a {
            padding: 12px 20px;
        }

        .tmg-hero {
            min-height: auto;
            margin-top: -70px;
            padding-top: 70px;
            background-position: center top;
        }

        .tmg-hero-content {
            padding-top: 90px;
            padding-bottom: 100px;
        }

        .tmg-hero h1 {
            font-size: 38px;
        }

        .tmg-hero .lead {
            font-size: 17px;
        }

        .tmg-hero .btn {
            display: block;
            width: 100%;
            margin-bottom: 12px;
            margin-left: 0 !important;
        }

        .tmg-quick-panel {
            margin-top: -45px;
        }

        .tmg-quick-box {
            padding: 20px;
            border-radius: 18px;
        }

        .section-padding,
        .section-padding-sm {
            padding: 55px 0;
        }

        .section-title h2 {
            font-size: 33px;
        }

        .tmg-card-img {
            height: 220px;
        }

        .tmg-rooms .nav-pills>li {
            display: block;
            margin: 7px 0;
        }

        .tmg-rooms .nav-pills>li>a {
            display: block;
        }

        .tmg-map {
            min-height: 320px;
            margin-top: 30px;
        }
    }

    @media (max-width: 420px) {
        .tmg-logo {
            max-height: 38px;
        }

        .tmg-navbar .navbar-brand {
            max-width: 215px;
        }

        .tmg-hero h1 {
            font-size: 32px;
        }
    }

    /* Intro Display Box */
    .tmg-intro-display-box {
        position: relative;
        max-width: 1100px;
        margin: 35px auto 35px auto;
        padding: 28px 35px 28px 95px;
        background: #ffffff;
        border: 1px solid #eee7dc;
        border-left: 6px solid #a17b32;
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    }

    .tmg-intro-display-box:before {
        content: "";
        position: absolute;
        top: -12px;
        right: 35px;
        width: 120px;
        height: 120px;
        background: rgba(161, 123, 50, 0.08);
        border-radius: 50%;
        z-index: 0;
    }

    .tmg-intro-icon {
        position: absolute;
        left: 30px;
        top: 30px;
        width: 42px;
        height: 42px;
        background: #a17b32;
        color: #ffffff;
        border-radius: 50%;
        text-align: center;
        line-height: 42px;
        font-size: 18px;
        box-shadow: 0 10px 25px rgba(161, 123, 50, 0.25);
        z-index: 2;
    }

    .tmg-intro-content {
        position: relative;
        z-index: 2;
    }

    .tmg-intro-content p {
        margin: 0;
        color: #263b38;
        font-size: 18px;
        line-height: 1.8;
    }

    /* Mobile */
    @media (max-width: 992px) {
        .tmg-intro-display-box {
            margin: 25px auto;
            padding: 25px 22px;
            border-radius: 14px;
        }

        .tmg-intro-icon {
            position: relative;
            left: auto;
            top: auto;
            margin-bottom: 15px;
        }

        .tmg-intro-content p {
            font-size: 16px;
            line-height: 1.7;
        }
    }

    /* Room Card Buttons */
    .tmg-room-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 22px;
        flex-wrap: wrap;
    }

    .tmg-room-actions .tmg-room-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 45px;
        padding: 0 20px;
        background: #12231f;
        color: #ffffff;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        border: none;
        transition: all 0.25s ease;
    }

    .tmg-room-actions .tmg-room-btn:hover,
    .tmg-room-actions .tmg-room-btn:focus {
        background: #a17b32;
        color: #ffffff;
        text-decoration: none;
        outline: none;
        transform: translateY(-2px);
    }

    /* Mobile */
    @media (max-width: 480px) {
        .tmg-room-actions {
            gap: 12px;
        }

        .tmg-room-actions .tmg-room-btn {
            min-width: 135px;
            height: 54px;
            padding: 0 18px;
            font-size: 14px;
        }
    }

    /* Very small screens */
    @media (max-width: 360px) {
        .tmg-room-actions .tmg-room-btn {
            width: 100%;
        }
    }

    /* Simple Gallery Lightbox - keeps gallery cards unchanged */
    .tmg-lightbox {
        position: fixed;
        z-index: 99999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        padding: 30px;
        background: rgba(10, 15, 14, 0.92);
        text-align: center;
    }

    .tmg-lightbox.is-open {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tmg-lightbox-inner {
        position: relative;
        max-width: 1100px;
        width: 100%;
        max-height: 90vh;
        margin: 0 auto;
    }

    .tmg-lightbox-img {
        display: block;
        max-width: 100%;
        max-height: 82vh;
        width: auto;
        height: auto;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
        background: #fff;
    }

    .tmg-lightbox-caption {
        display: inline-block;
        margin-top: 14px;
        padding: 9px 16px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
    }

    .tmg-lightbox-close {
        position: absolute;
        top: -18px;
        right: -18px;
        width: 44px;
        height: 44px;
        line-height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.85);
        border-radius: 50%;
        background: var(--tmg-gold);
        color: #fff;
        font-size: 30px;
        font-weight: 400;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    }

    .tmg-lightbox-close:hover,
    .tmg-lightbox-close:focus {
        background: var(--tmg-gold-dark);
        color: #fff;
        outline: none;
    }

    body.tmg-lightbox-open {
        overflow: hidden;
    }

    @media (max-width: 767px) {
        .tmg-lightbox {
            padding: 18px;
        }

        .tmg-lightbox-img {
            max-height: 78vh;
            border-radius: 12px;
        }

        .tmg-lightbox-close {
            top: -12px;
            right: -8px;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-size: 28px;
        }
    }



    /* ===== Header / Navbar Better Logo Contrast ===== */
    .tmg-navbar {
        /* background: linear-gradient(135deg, #f7f1e6 0%, #fffaf0 55%, #efe4cf 100%); */
        background: hsl(0deg 0% 55.43% / 64%);
        border-bottom: 1px solid rgba(161, 123, 50, 0.25);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    }

    /* Logo contrast improvement */
    .tmg-logo {
        filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.28));
    }

    /* Soft backing behind logo */
    .tmg-navbar .navbar-brand {
        /* background: rgba(255,255,255,0.45);
  border-radius: 0 0 18px 0; */
    }

    .tmg-navbar .navbar-nav>li>a {
        padding: 9px 15px;
        margin-right: 5px;
        color: #FFF;
        -webkit-text-stroke: 1px black;
        paint-order: stroke fill;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-size: 12px;
        background: #c5a35c;
        border: 1px solid #725d30;
        border-radius: 4px;
    }

    .tmg-navbar .navbar-nav>li>a:hover {
        background: #4f4f4e;
        color: #FFF;
    }

    /* Desktop navbar vertical middle alignment */
    @media (min-width: 992px) {
        .tmg-navbar {
            display: flex;
            align-items: center;
        }

        .tmg-navbar>.container {
            display: flex;
            align-items: center;
        }

        .tmg-navbar .navbar-header {
            float: none;
            display: flex;
            align-items: center;
        }

        .tmg-navbar .navbar-brand {
            display: flex;
            align-items: center;
            height: auto;
            padding: 12px 15px;
        }

        .tmg-navbar .navbar-collapse {
            flex: 1;
            display: flex !important;
            align-items: center;
            justify-content: flex-end;
            border: none;
            box-shadow: none;
        }

        .tmg-navbar .navbar-nav {
            float: none !important;
            margin: 0;
        }

    }

    /* MENU button */
    .tmg-navbar .navbar-toggle.tmg-menu-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        margin-top: 25px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(161, 123, 50, 0.32);
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
    }

    .tmg-navbar .tmg-menu-text {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        color: var(--tmg-dark);
        letter-spacing: 1px;
        line-height: 1;
    }

    .tmg-navbar .tmg-menu-bars {
        display: inline-block;
    }

    .tmg-navbar .navbar-toggle.tmg-menu-toggle .icon-bar {
        display: block;
        width: 24px;
        height: 3px;
        margin: 4px 0;
        background: var(--tmg-dark);
        border-radius: 2px;
    }

    /* Keep Bootstrap desktop behaviour */
    @media (min-width: 992px) {
        .tmg-navbar .navbar-toggle.tmg-menu-toggle {
            display: none;
        }
    }

    /* Mobile adjustment */
    @media (max-width: 992px) {
        .tmg-navbar .navbar-toggle.tmg-menu-toggle {
            margin-top: 17px;
        }
    }

    @media (min-width: 768px) {
        .tmg-navbar .navbar-collapse {
            display: flex !important;
        }
    }