/* ==============================================================
   MANALI HAVELI — Page-level Styles
   Covers: variables, page hero, all sections across all pages
   ============================================================== */

/* ---- Global CSS variables ---- */
:root {
    --CrTe:        #c8a96e;
    --dark:        #111010;
    --dark2:       #181612;
    --dark3:       #0e0d0b;
    --section-pad: 90px 0;
    --gold:        #c8a96e;
}

*, *::before, *::after { box-sizing: border-box; }

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

/* ================================================================
   PAGE TRANSITION CURTAIN
   ================================================================ */
.mh-curtain {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    /* Default: fully covering the page */
}
.mh-curtain-logo {
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
}
/* Page reveal: curtain slides UP and away */
.mh-curtain-revealing {
    animation: mhCurtainReveal .75s cubic-bezier(.76, 0, .24, 1) .15s forwards;
}
.mh-curtain-revealing .mh-curtain-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
/* Page cover: curtain slides DOWN to cover */
.mh-curtain-covering {
    transform: translateY(-100%);
    animation: mhCurtainCover .55s cubic-bezier(.76, 0, .24, 1) forwards;
}
/* After reveal completes, hide curtain entirely */
.mh-curtain-done {
    display: none;
}

@keyframes mhCurtainReveal {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}
@keyframes mhCurtainCover {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

/* ================================================================
   CT UTILITY CLASS OVERRIDES
   These classes are used by _NavBar.cshtml but are not defined in
   the loaded CT-Component/Color CSS, so we define them here.
   ================================================================ */

/* Display helpers */
.DyNe  { display: none   !important; }
.DyFx  { display: flex   !important; }
.DyBk  { display: block  !important; }
.DyIn  { display: inline !important; }
.DyInBk{ display: inline-block !important; }
.DyGr  { display: grid   !important; }

/* Flex helpers */
.FxDnCn  { flex-direction: column     !important; }
.FxDnRw  { flex-direction: row        !important; }
.FxAnIsCr{ align-items: center        !important; }
.FxJyCtCr{ justify-content: center    !important; }
.FxJyCtSeBn{ justify-content: space-between !important; }
.FxJyCtSeAd{ justify-content: space-around  !important; }
.FxAnSeSt{ align-self: flex-start     !important; }
.FxCr    { display: flex              !important; }
.Fx1     { flex: 1                    !important; }
.FxWp    { flex-wrap: wrap            !important; }

/* Sizing helpers */
.Wh100p { width:  100% !important; }
.Wh90p  { width:   90% !important; }
.Ht100p { height: 100% !important; }
.Ht90   { height:  90px !important; }

/* Gap helpers */
.Gp5  { gap:  5px !important; }
.Gp8  { gap:  8px !important; }
.Gp10 { gap: 10px !important; }
.Gp20 { gap: 20px !important; }

/* Positioning */
.PnRe  { position: relative !important; }
.PnAe  { position: absolute !important; }
.PnFx  { position: fixed    !important; }
.PnTp100p{ top: 100% !important; }
.PnRt0   { right:  0 !important; }
.PnLt0   { left:   0 !important; }
.PnBm0   { bottom: 0 !important; }

/* Padding helpers */
.PgTpBm20{ padding-top: 20px !important; padding-bottom: 20px !important; }
.PgTpBm10{ padding-top: 10px !important; padding-bottom: 10px !important; }
.PgTpBm30{ padding-top: 30px !important; padding-bottom: 30px !important; }
.PgBm20  { padding-bottom: 20px !important; }

/* Margin helpers */
.MnRt8   { margin-right: 8px !important; }

/* Font size helpers */
.FtSe13  { font-size: 13px !important; }
.FtSe14  { font-size: 14px !important; }
.FtSe24  { font-size: 24px !important; }
.FtSe28  { font-size: 28px !important; }

/* Font weight */
.FtWt700 { font-weight: 700 !important; }

/* Text align */
.TtAnCr  { text-align: center !important; }

/* Color helpers */
.CrWe  { color: #ffffff !important; }
.CrBk  { color: #222222 !important; }
.CrTe  { color: var(--CrTe) !important; }
.CrBdWe{ background-color: #ffffff !important; }
.CrBdTt{ background-color: rgba(0,0,0,.5) !important; }

/* ================================================================
   NAVBAR — logo + layout
   ================================================================ */

/* Force nav to stay 90px tall and not expand with large images */
nav.nav {
    height: 90px !important;
    max-height: 90px !important;
    overflow: visible;
}

/* Logo image — hard-cap at 60px regardless of site.css img rules */
.mhNavLogo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}
.mhNavLogo img {
    height: 95px !important;
    max-height: 95px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    display: block !important;
}

/* ================================================================
   NAVBAR — desktop vs mobile visibility
   ================================================================ */

/* Logo wrapper and book-button wrapper (.VwOyDp) — visible on desktop */
.VwOyDp {
    display: flex !important;
    align-items: center;
}

/* Desktop nav links: visible above 981px */
#desktopNav {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

/* Mobile hamburger button: hidden above 981px */
#mhMobNavHamburgerBtnBox {
    display: none !important;
}

/* Mobile nav panel: hidden by default, shown when .open is added by JS */
.mhMobNav {
    display: none !important;
}
.mhMobNav.open {
    display: flex !important;
}

/* ---- Responsive breakpoint ---- */
@media (max-width: 980px) {
    #desktopNav               { display: none !important; }
    .VwOyDp                   { display: none !important; }
    #mhMobNavHamburgerBtnBox { display: flex !important; }
    .nav { padding: 0 !important; }
}

@media (min-width: 981px) {
    #mhMobNavHamburgerBtnBox { display: none !important; }
    .mhMobNav                { display: none !important; }
    .mhMobNav.open           { display: none !important; }
}

/* ---- Section common ---- */
.section-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-divider {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--CrTe);
    margin: 16px 0 20px;
}
.section-divider.centered { margin: 16px auto 20px; }

.section-desc {
    color: #8a8070;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

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

/* ---- Buttons ---- */
.btn-primary-mh {
    display: inline-block;
    background: var(--CrTe);
    color: #111 !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: background .25s, color .25s;
}
.btn-primary-mh:hover { background: #e0bb7a; color: #000 !important; }

.btn-outline-mh {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 32px;
    border: 1px solid rgba(255,255,255,.4);
    text-decoration: none;
    transition: background .25s, border-color .25s;
}
.btn-outline-mh:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---- PAGE HERO (inner pages) ---- */
.mh-page-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.mh-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
    filter: brightness(.45);
}

.mh-page-hero:hover .mh-page-hero-bg { transform: scale(1); }

.mh-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 20px 60px;
}

.mh-breadcrumb {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
}
.mh-breadcrumb a { color: var(--CrTe); text-decoration: none; }
.mh-breadcrumb .sep { margin: 0 8px; }

.mh-page-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(38px, 6vw, 72px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}
.mh-page-title span { color: var(--CrTe); }

.mh-page-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

/* ---- HERO SLIDER DOTS ---- */
.mh-hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.mh-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    transition: background .3s, border-color .3s;
    padding: 0;
}
.mh-hero-dot.active {
    background: var(--CrTe);
    border-color: var(--CrTe);
}

/* ---- HERO SCROLL ARROW ---- */
.mhHeroArrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: background .3s;
}
.mhHeroArrow:hover { background: var(--CrTe); border-color: var(--CrTe); color: #000; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---- NUMBERS / STATS ---- */
.mh-num-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.mh-num-card {
    text-align: center;
    min-width: 160px;
}

.mh-num-val {
    font-family: 'Gilda Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    color: var(--CrTe);
    line-height: 1;
    margin-bottom: 6px;
}

.mh-num-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7a736a;
}

.mh-num-desc {
    font-size: 12px;
    color: #5a5450;
    margin-top: 4px;
}

/* ---- ABOUT story grid ---- */
.mh-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}
.sg-wrap { overflow: hidden; }
.sg-wrap img { width: 100%; height: 180px; object-fit: cover; transition: transform .6s ease; }
.sg-wrap:hover img { transform: scale(1.06); }
.sg-wrap.tall { grid-row: span 2; }
.sg-wrap.tall img { height: 100%; }

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.story-badge::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--CrTe);
}
.story-badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--CrTe);
}

/* ---- FEAT LIST (about page) ---- */
.mh-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mh-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #8a8070;
    border-bottom: 1px solid rgba(200,169,110,.1);
}
.mh-feat-list li:last-child { border-bottom: none; }
.mh-feat-icon { font-size: 18px; flex-shrink: 0; }

/* ---- VALUE CARDS ---- */
.mh-val-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.1);
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, background .3s;
    height: 100%;
}
.mh-val-card:hover { border-color: var(--CrTe); background: rgba(200,169,110,.04); }
.mh-val-bg {
    position: absolute;
    top: -10px; right: 16px;
    font-family: 'Gilda Display', serif;
    font-size: 80px;
    color: rgba(200,169,110,.06);
    line-height: 1;
    user-select: none;
}
.mh-val-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.mh-val-title {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 20px;
    margin-bottom: 10px;
}
.mh-val-desc { font-size: 14px; color: #7a736a; line-height: 1.75; }

/* ---- TIMELINE ---- */
.mh-timeline { position: relative; }

.mh-timeline-spine {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(200,169,110,.2);
    transform: translateX(-50%);
}

.mh-tl-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
}

.mh-tl-left, .mh-tl-right { padding: 0 30px; }

.mh-tl-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mh-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--CrTe);
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 3px rgba(200,169,110,.3);
    position: relative;
    z-index: 1;
}

.mh-tl-box {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.15);
    padding: 24px;
}

.mh-tl-year {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--CrTe);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mh-tl-heading {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 18px;
    margin-bottom: 10px;
}

.mh-tl-text { font-size: 14px; color: #7a736a; line-height: 1.75; }

.mh-tl-media { overflow: hidden; }
.mh-tl-media img { width: 100%; height: 180px; object-fit: cover; transition: transform .6s ease; }
.mh-tl-media:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
    .mh-timeline-spine { display: none; }
    .mh-tl-item { grid-template-columns: 1fr; }
    .mh-tl-left, .mh-tl-right { padding: 0; }
    .mh-tl-mid { display: none; }
    .mh-tl-media { margin-bottom: 16px; }
    .mh-tl-media img { height: 200px; }
}

/* ---- TEAM CARDS ---- */
.mh-team-card {
    border: 1px solid rgba(200,169,110,.1);
    background: rgba(255,255,255,.02);
    overflow: hidden;
    transition: border-color .3s;
}
.mh-team-card:hover { border-color: var(--CrTe); }

.mh-team-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.mh-team-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mh-team-card:hover .mh-team-img { transform: scale(1.06); }

.mh-team-socials {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity .3s;
}
.mh-team-card:hover .mh-team-socials { opacity: 1; }
.mh-team-socials a {
    width: 34px;
    height: 34px;
    background: var(--CrTe);
    color: #111 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.mh-team-body { padding: 20px; }

.mh-team-name {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 17px;
    margin-bottom: 4px;
}

.mh-team-role {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 10px;
}

.mh-team-bio { font-size: 13px; color: #6a6460; margin-bottom: 14px; }

.mh-skill-bar { margin-top: 4px; }
.mh-skill-lbl { display: flex; justify-content: space-between; font-size: 12px; color: #7a736a; margin-bottom: 4px; }
.mh-skill-track { height: 3px; background: rgba(255,255,255,.08); }
.mh-skill-fill { height: 100%; background: var(--CrTe); width: 0; transition: width 1s ease; }

/* ---- AWARD CARDS ---- */
.mh-award-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.1);
    padding: 30px 24px;
    transition: border-color .3s, background .3s;
    height: 100%;
}
.mh-award-card:hover { border-color: var(--CrTe); background: rgba(200,169,110,.04); }

.mh-award-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.mh-award-year {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--CrTe);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.mh-award-title {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 16px;
    margin-bottom: 8px;
}
.mh-award-body { font-size: 13px; color: #7a736a; line-height: 1.7; }

/* ---- IMAGE STRIP ---- */
.mh-strip {
    display: flex;
    height: 220px;
}
.mh-strip-wrap {
    flex: 1;
    overflow: hidden;
}
.mh-strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.mh-strip-wrap:hover .mh-strip-img { transform: scale(1.08); }

@media (max-width: 576px) {
    .mh-strip { height: 140px; }
}

/* ---- PARTNERS ---- */
.mh-partners {
    padding: 50px 0;
    background: var(--dark2);
    border-top: 1px solid rgba(200,169,110,.07);
}
.mh-partner-item {
    padding: 16px;
    border: 1px solid rgba(200,169,110,.1);
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5a5450;
    transition: border-color .3s, color .3s;
}
.mh-partner-item:hover { border-color: var(--CrTe); color: var(--CrTe); }

/* ---- CTA BAND ---- */
.mh-cta-band {
    padding: 80px 0;
    background: var(--dark3);
    text-align: center;
    border-top: 1px solid rgba(200,169,110,.1);
    border-bottom: 1px solid rgba(200,169,110,.1);
}
.mh-cta-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(26px, 4vw, 48px);
    color: #c8a96e;
    margin-bottom: 14px;
}
.mh-cta-title span { color: var(--CrTe); }
.mh-cta-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: #7a736a;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.75;
}
.mh-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- HOME GALLERY GRID ---- */
.mh-home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 8px;
}
.mh-hg-item { overflow: hidden; }
.mh-hg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mh-hg-item:hover img { transform: scale(1.06); }
.mh-hg-tall { grid-row: span 2; }

@media (max-width: 768px) {
    .mh-home-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .mh-hg-tall { grid-row: span 1; }
    .mh-hg-item { height: 200px; }
}
@media (max-width: 480px) {
    .mh-home-gallery-grid { grid-template-columns: 1fr; }
    .mh-hg-item { height: 180px; }
}

/* ---- MENU PAGE ---- */
.mh-menu-page {
    padding: var(--section-pad);
    background: var(--dark2);
}

.mh-menu-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 30px 0 40px;
}

.mh-filter-btn, .mh-gallery-filter-btn {
    background: transparent;
    border: 1px solid rgba(200,169,110,.3);
    color: #8a8070;
    padding: 9px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
}
.mh-filter-btn:hover, .mh-gallery-filter-btn:hover,
.mh-filter-btn.active, .mh-gallery-filter-btn.active {
    background: var(--CrTe);
    border-color: var(--CrTe);
    color: #111;
}

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

.mh-menu-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.1);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.mh-menu-card:hover { border-color: var(--CrTe); transform: translateY(-4px); }
.mh-menu-card[style*="display: none"] { display: none !important; }

.mh-menu-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .6s ease;
}
.mh-menu-card:hover .mh-menu-card-img { transform: scale(1.05); }

.mh-menu-card-body { padding: 20px; }

.mh-menu-card-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 6px;
}

.mh-menu-card-name {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 18px;
    margin-bottom: 8px;
}

.mh-menu-card-desc {
    font-size: 13px;
    color: #7a736a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.mh-menu-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(200,169,110,.1);
    padding-top: 14px;
}

.mh-menu-card-price {
    font-family: 'Gilda Display', serif;
    font-size: 20px;
    color: var(--CrTe);
}

.mh-menu-card-btn {
    background: transparent;
    border: 1px solid rgba(200,169,110,.4);
    color: #c8a96e;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .25s, color .25s;
}
.mh-menu-card-btn:hover { background: var(--CrTe); color: #111; }

/* ---- GALLERY PAGE ---- */
.mh-gallery-page {
    padding: var(--section-pad);
    background: var(--dark2);
}

.mh-gallery-masonry {
    columns: 3 280px;
    column-gap: 12px;
}

.mh-gallery-masonry-item {
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    cursor: pointer;
}
.mh-gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}
.mh-gallery-masonry-item:hover img { transform: scale(1.06); }

.mh-gallery-masonry-item[style*="display: none"] { display: none !important; }

.mh-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity .35s;
}
.mh-gallery-masonry-item:hover .mh-gallery-overlay { opacity: 1; }

.mh-gallery-overlay-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
}
.mh-gallery-overlay-plus {
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

/* ---- LIGHTBOX ---- */
.mh-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.mh-lightbox.open { display: flex; }

.mh-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mh-lb-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    width: 36px;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    transition: background .25s;
}
.mh-lb-close:hover { background: var(--CrTe); border-color: var(--CrTe); color: #111; }

.mh-lb-nav {
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 28px;
    cursor: pointer;
    transition: background .25s;
    flex-shrink: 0;
}
.mh-lb-nav:hover { background: var(--CrTe); color: #111; }

.mh-lb-img {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.mh-lb-caption {
    position: absolute;
    bottom: -36px;
    left: 0; right: 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
}

/* ---- CONTACT PAGE ---- */
.mh-contact-page {
    padding: var(--section-pad);
    background: var(--dark);
}

.mh-info-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.1);
    padding: 32px 24px;
    text-align: center;
    transition: border-color .3s;
    height: 100%;
}
.mh-info-card:hover { border-color: var(--CrTe); }

.mh-info-card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 14px;
}
.mh-info-card-title {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 17px;
    margin-bottom: 10px;
}
.mh-info-card-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #7a736a;
    line-height: 1.8;
    margin: 0;
}

.mh-contact-form-wrap {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(200,169,110,.1);
    padding: 40px;
}

.mh-cf-group { margin-bottom: 0; }

.mh-cf-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7a736a;
    margin-bottom: 6px;
}

.mh-cf-input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(200,169,110,.15);
    color: #c8a96e;
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .25s;
    appearance: none;
}
.mh-cf-input:focus { border-color: var(--CrTe); }
.mh-cf-input::placeholder { color: #4a4440; }
.mh-cf-input option { background: #1a1710; color: #c8a96e; }

.mh-map-box {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid rgba(200,169,110,.1);
}
.mh-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
    filter: grayscale(40%) brightness(.85);
}

/* ---- TESTIMONIALS ---- */
.mh-testi-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.1);
    padding: 32px;
    height: 100%;
    transition: border-color .3s;
}
.mh-testi-card:hover { border-color: var(--CrTe); }

.mh-testi-stars {
    color: var(--CrTe);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.mh-testi-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #8a8070;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.mh-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mhTestiAvatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(200,169,110,.3);
}
.mhTestiAvatar img { width: 100%; height: 100%; object-fit: cover; }
.mh-testi-author strong { color: #c8a96e; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; }
.mh-testi-author small { color: #5a5450; font-size: 12px; }

/* ---- RESERVATION FORM ---- */
.mhResFormGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 992px) { .mhResFormGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .mhResFormGrid { grid-template-columns: 1fr; } }

.mh-res-form { /* wrapper, no extra styles needed */ }

/* ---- SCROLL ANIMATION ENGINE ---- */
[data-mh-anim] {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}
[data-mh-anim="fade-up"]    { transform: translateY(40px); }
[data-mh-anim="fade-down"]  { transform: translateY(-40px); }
[data-mh-anim="fade-left"]  { transform: translateX(50px); }
[data-mh-anim="fade-right"] { transform: translateX(-50px); }
[data-mh-anim="zoom-in"]    { transform: scale(.95); }

[data-mh-anim].mh-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ---- GLOBAL page body background ---- */
body { background: var(--dark); }

/* ==============================================================
   ABOUT PAGE — section-specific styles
   ============================================================== */

/* ---- Section 1: About Restaurant ---- */
.ab-about-sect {
    padding: var(--section-pad);
    background: var(--dark2);
}
.ab-about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ab-img-grid { display: flex; flex-direction: column; gap: 12px; }
.ab-img-main { overflow: hidden; }
.ab-img-main img { width: 100%; height: 340px; object-fit: cover; transition: transform .6s ease; }
.ab-img-main:hover img { transform: scale(1.04); }
.ab-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ab-img-sm { overflow: hidden; }
.ab-img-sm img { width: 100%; height: 180px; object-fit: cover; transition: transform .6s ease; }
.ab-img-sm:hover img { transform: scale(1.06); }

.ab-about-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    color: #c8a96e;
    line-height: 1.2;
    margin-bottom: 12px;
}
.ab-about-heading span { color: var(--CrTe); }
.ab-about-desc { font-size: 15px; color: #7a736a; line-height: 1.8; margin-bottom: 16px; }

.ab-highlights { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.ab-hl-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 18px;
    border: 1px solid rgba(200,169,110,.15);
    background: rgba(200,169,110,.04);
}
.ab-hl-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.ab-hl-item strong { display: block; font-family: 'Gilda Display', serif; color: #c8a96e; font-size: 16px; margin-bottom: 4px; }
.ab-hl-item p { font-size: 13px; color: #7a736a; margin: 0; line-height: 1.6; }

@media (max-width: 992px) {
    .ab-about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .ab-img-main img { height: 280px; }
    .ab-img-sm img { height: 150px; }
}

/* ---- Section 2: Services ---- */
.ab-services-sect {
    padding: var(--section-pad);
    background: var(--dark);
    border-top: 1px solid rgba(200,169,110,.08);
    border-bottom: 1px solid rgba(200,169,110,.08);
}
.ab-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.ab-service-card {
    padding: 50px 36px;
    text-align: center;
    border-right: 1px solid rgba(200,169,110,.12);
    transition: background .3s;
}
.ab-service-card:last-child { border-right: none; }
.ab-service-card:hover { background: rgba(200,169,110,.04); }

.ab-svc-icon-wrap {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(200,169,110,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background .3s, border-color .3s;
}
.ab-service-card:hover .ab-svc-icon-wrap {
    background: var(--CrTe);
    border-color: var(--CrTe);
}
.ab-svc-icon { font-size: 30px; display: block; }
.ab-svc-title {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 19px;
    margin-bottom: 12px;
    text-transform: none;
}
.ab-svc-desc { font-size: 14px; color: #7a736a; line-height: 1.75; }

@media (max-width: 768px) {
    .ab-services-grid { grid-template-columns: 1fr; }
    .ab-service-card { border-right: none; border-bottom: 1px solid rgba(200,169,110,.12); }
    .ab-service-card:last-child { border-bottom: none; }
}

/* ---- Section 3: Statistics ---- */
.ab-stats-sect {
    padding: 70px 0;
    background: var(--CrTe);
}
.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.ab-stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}
.ab-stat-divider::before {
    content: '';
    position: absolute;
    left: 0; top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0,0,0,.15);
}
.ab-stat-val {
    font-family: 'Gilda Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    color: #111;
    line-height: 1;
    margin-bottom: 6px;
}
.ab-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,.6);
}
@media (max-width: 768px) {
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stat-divider::before { display: none; }
}
@media (max-width: 480px) {
    .ab-stats-grid { grid-template-columns: 1fr; }
}

/* ---- Section 4: Private Events ---- */
.ab-events-sect {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}
.ab-events-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.2);
}
.ab-events-inner { position: relative; z-index: 1; }
.ab-events-header { text-align: center; margin-bottom: 36px; }
.ab-events-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(26px, 4vw, 48px);
    color: #c8a96e;
    margin-bottom: 0;
}
.ab-events-heading span { color: var(--CrTe); }

/* Tab buttons */
.ab-event-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.ab-tab-btn {
    background: transparent;
    border: 1px solid rgba(200,169,110,.3);
    color: #a09880;
    padding: 12px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: -1px;
    transition: background .25s, color .25s, border-color .25s;
}
.ab-tab-btn:hover { background: rgba(200,169,110,.1); color: var(--CrTe); }
.ab-tab-btn.active {
    background: var(--CrTe);
    border-color: var(--CrTe);
    color: #111;
}

/* Tab panels */
.ab-tab-panel { display: none; }
.ab-tab-panel.active { display: block; }

.ab-event-panel-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.ab-event-panel-img { overflow: hidden; }
.ab-event-panel-img img { width: 100%; height: 380px; object-fit: cover; transition: transform .6s ease; }
.ab-event-panel-img:hover img { transform: scale(1.04); }

.ab-ep-title {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 28px;
    margin-bottom: 16px;
}
.ab-ep-desc { font-size: 14px; color: #8a8070; line-height: 1.8; margin-bottom: 20px; }
.ab-ep-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}
.ab-ep-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 14px;
    color: #8a8070;
    border-bottom: 1px solid rgba(200,169,110,.08);
}
.ab-ep-list li:last-child { border-bottom: none; }
.ab-ep-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--CrTe);
}

@media (max-width: 768px) {
    .ab-event-panel-wrap { grid-template-columns: 1fr; gap: 24px; }
    .ab-event-panel-img img { height: 240px; }
}

/* ---- Section 5: Chefs ---- */
.ab-chefs-sect {
    padding: var(--section-pad);
    background: var(--dark2);
}
.ab-chefs-header { margin-bottom: 48px; }
.ab-chefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}
.ab-chef-card { overflow: hidden; border: 1px solid rgba(200,169,110,.1); transition: border-color .3s; }
.ab-chef-card:hover { border-color: var(--CrTe); }

.ab-chef-img-wrap { position: relative; overflow: hidden; height: 380px; }
.ab-chef-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ab-chef-card:hover .ab-chef-img { transform: scale(1.05); }

.ab-chef-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity .35s;
}
.ab-chef-card:hover .ab-chef-overlay { opacity: 1; }
.ab-chef-socials { display: flex; gap: 10px; }
.ab-chef-socials a {
    width: 36px; height: 36px;
    background: var(--CrTe);
    color: #111 !important;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.ab-chef-body { padding: 22px 24px; background: var(--dark); }
.ab-chef-name {
    font-family: 'Gilda Display', serif;
    color: #c8a96e;
    font-size: 20px;
    margin-bottom: 4px;
}
.ab-chef-role {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 12px;
}
.ab-chef-bio { font-size: 13px; color: #7a736a; line-height: 1.7; margin: 0; }

@media (max-width: 640px) {
    .ab-chefs-grid { grid-template-columns: 1fr; }
    .ab-chef-img-wrap { height: 280px; }
}

/* ---- Section 6: Testimonials ---- */
.ab-testi-sect {
    padding: var(--section-pad);
    background: var(--dark);
}
.ab-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ab-testi-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,110,.1);
    padding: 36px 28px;
    position: relative;
    transition: border-color .3s;
}
.ab-testi-card:hover { border-color: var(--CrTe); }
.ab-testi-quote {
    font-size: 52px;
    color: var(--CrTe);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    opacity: .7;
}
.ab-testi-text {
    font-size: 15px;
    color: #8a8070;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.ab-testi-foot { display: flex; align-items: center; gap: 14px; }
.ab-testi-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200,169,110,.3);
    flex-shrink: 0;
}
.ab-testi-name {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    color: #c8a96e;
    font-weight: 600;
}
.ab-testi-role {
    font-size: 12px;
    color: var(--CrTe);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .ab-testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 992px) and (min-width: 769px) {
    .ab-testi-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-testi-grid > :last-child { grid-column: span 2; max-width: 460px; margin: 0 auto; }
}

/* ---- Section 7: Instagram / Gallery strip ---- */
.ab-ig-strip {
    display: flex;
    height: 260px;
}
.ab-ig-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.ab-ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ab-ig-item:hover img { transform: scale(1.1); }
.ab-ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}
.ab-ig-overlay span { font-size: 28px; color: #fff; }
.ab-ig-item:hover .ab-ig-overlay { opacity: 1; }
.ab-ig-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe) !important;
    text-decoration: none;
    transition: color .25s;
}
.ab-ig-link:hover { color: #fff !important; }

@media (max-width: 576px) {
    .ab-ig-strip { height: 160px; }
}

/* ---- Section 8: Partners ---- */
.ab-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
@media (max-width: 768px) { .ab-partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ab-partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Section 9: Newsletter ---- */
.ab-newsletter-sect {
    position: relative;
    padding: 100px 0;
    text-align: center;
}
.ab-newsletter-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.15);
}
.ab-newsletter-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.ab-newsletter-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 4vw, 52px);
    color: #c8a96e;
    margin-bottom: 14px;
}
.ab-newsletter-heading span { color: var(--CrTe); }
.ab-newsletter-sub { font-size: 15px; color: #7a736a; margin-bottom: 30px; line-height: 1.75; }
.ab-newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(200,169,110,.3);
}
.ab-newsletter-input {
    flex: 1;
    background: rgba(255,255,255,.05);
    border: none;
    color: #fff;
    padding: 14px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    outline: none;
}
.ab-newsletter-input::placeholder { color: #5a5450; }
.ab-newsletter-btn {
    background: var(--CrTe);
    border: none;
    color: #111;
    padding: 14px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s;
    white-space: nowrap;
}
.ab-newsletter-btn:hover { background: #e0bb7a; }

/* ---- RESPONSIVE TWEAKS ---- */
@media (max-width: 768px) {
    .mh-page-hero { height: 45vh; min-height: 300px; }
    .mh-contact-form-wrap { padding: 24px; }
    .mh-gallery-masonry { columns: 2 200px; }
    .mh-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .mh-gallery-masonry { columns: 1; }
    .mh-num-row { gap: 20px; }
}

/* ================================================================
   VIRTUAL TOUR PAGE  (vt-*)
   ================================================================ */

/* Hero override */
.vt-hero { height: 100vh; }
.vt-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
    text-decoration: none;
    border: 1px solid rgba(200,169,110,.4);
    padding: 12px 24px;
    transition: background .25s, color .25s;
}
.vt-scroll-cta:hover { background: var(--CrTe); color: #111; }
.vt-scroll-cta svg { transition: transform .3s; }
.vt-scroll-cta:hover svg { transform: translateY(3px); }

/* Section headings */
.vt-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(26px, 3.5vw, 46px);
    color: #c8a96e;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.vt-heading span { color: var(--CrTe); }

/* ---- Area Explorer ---- */
.vt-areas-sect {
    padding: 80px 0 70px;
    background: var(--dark2);
}
.vt-area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.vt-area-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .3s, transform .3s;
}
.vt-area-card.active { border-color: var(--CrTe); }
.vt-area-card:hover { transform: translateY(-4px); }
.vt-area-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.vt-area-card:hover .vt-area-bg { transform: scale(1.08); }
.vt-area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 16px;
    text-align: center;
}
.vt-area-icon {
    font-size: 28px;
    color: var(--CrTe);
    margin-bottom: 10px;
    opacity: .7;
    transition: opacity .3s, transform .3s;
}
.vt-area-card:hover .vt-area-icon,
.vt-area-card.active .vt-area-icon { opacity: 1; transform: scale(1.15); }
.vt-area-name {
    font-family: 'Gilda Display', serif;
    font-size: 16px;
    color: #c8a96e;
    margin: 0 0 4px;
    line-height: 1.3;
}
.vt-area-seats {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin: 0;
}
/* Active badge */
.vt-area-card.active::after {
    content: '▶ Viewing';
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--CrTe);
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 700;
}
@media (max-width: 1024px) { .vt-area-grid { grid-template-columns: repeat(3, 1fr); } .vt-area-card { height: 280px; } }
@media (max-width: 640px) { .vt-area-grid { grid-template-columns: repeat(2, 1fr); } .vt-area-card { height: 200px; } }
@media (max-width: 400px) { .vt-area-grid { grid-template-columns: 1fr; } }

/* ---- Panorama Section ---- */
.vt-pano-sect {
    padding: 70px 0 80px;
    background: var(--dark);
}
.vt-pano-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.vt-pano-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(24px, 3vw, 40px);
    color: #c8a96e;
    margin: 10px 0 12px;
}
.vt-pano-title span { color: var(--CrTe); }
.vt-pano-desc { max-width: 480px; margin: 0; }
.vt-pano-nav { display: flex; gap: 12px; flex-shrink: 0; align-items: flex-start; padding-top: 8px; }
.vt-pano-btn {
    background: transparent;
    border: 1px solid rgba(200,169,110,.3);
    color: var(--CrTe);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: background .25s, color .25s;
    white-space: nowrap;
}
.vt-pano-btn:hover { background: var(--CrTe); color: #111; }

/* The panorama viewer */
.vt-viewer-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    border: 1px solid rgba(200,169,110,.15);
    overflow: hidden;
}
.vt-panorama-el { width: 100%; height: 100%; }
.vt-viewer-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}
.vt-ctrl-btn {
    width: 40px; height: 40px;
    background: rgba(0,0,0,.6);
    border: 1px solid rgba(200,169,110,.3);
    color: var(--CrTe);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .25s;
}
.vt-ctrl-btn:hover { background: var(--CrTe); color: #111; }
.vt-drag-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,.65);
    color: #c8a96e;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 20px;
    z-index: 10;
    pointer-events: none;
    transition: opacity .6s;
}
.vt-drag-hint svg { color: var(--CrTe); flex-shrink: 0; }

/* Thumbnail strip */
.vt-thumb-strip {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.vt-thumb {
    flex: 0 0 120px;
    height: 70px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: border-color .25s;
    overflow: hidden;
}
.vt-thumb.active { border-color: var(--CrTe); }
.vt-thumb span {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: flex-end;
    padding: 6px 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}
.vt-thumb.active span { background: rgba(200,169,110,.35); color: #fff; }
@media (max-width: 768px) { .vt-viewer-wrap { height: 320px; } }

/* ---- Photo Walkthrough ---- */
.vt-walk-sect {
    padding: 70px 0 80px;
    background: var(--dark2);
}
.vt-walk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
}
.vt-walk-item.vt-walk-large {
    grid-column: span 2;
    grid-row: span 2;
}
.vt-walk-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.vt-walk-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}
.vt-walk-item:hover img { transform: scale(1.06); }
.vt-walk-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 18px;
    transform: translateY(100%);
    transition: transform .35s ease;
}
.vt-walk-item:hover .vt-walk-label { transform: translateY(0); }
.vt-walk-label span {
    display: block;
    font-family: 'Gilda Display', serif;
    font-size: 16px;
    color: #c8a96e;
    margin-bottom: 4px;
}
.vt-walk-label p { font-size: 13px; color: #a09080; margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
    .vt-walk-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .vt-walk-item.vt-walk-large { grid-column: span 2; grid-row: span 1; height: 220px; }
    .vt-walk-item { height: 180px; }
    .vt-walk-label { transform: translateY(0); }
}
@media (max-width: 480px) {
    .vt-walk-grid { grid-template-columns: 1fr; }
    .vt-walk-item.vt-walk-large { grid-column: span 1; }
}

/* ---- Stats bar ---- */
.vt-stats-sect {
    padding: 60px 0;
    background: var(--CrTe);
}
.vt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.vt-stat-num {
    display: block;
    font-family: 'Gilda Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #111;
    line-height: 1;
    margin-bottom: 8px;
}
.vt-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,.65);
}
@media (max-width: 640px) { .vt-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA section ---- */
.vt-cta-sect {
    position: relative;
    padding: 100px 0;
}
.vt-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.15);
}
.vt-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.vt-cta-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    color: #c8a96e;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.vt-cta-heading span { color: var(--CrTe); }
.vt-cta-btns {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
    align-items: center;
}
.vt-cta-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(200,169,110,.12);
}
.vt-cta-card:last-child { border-bottom: none; }
.vt-cta-card svg { color: var(--CrTe); flex-shrink: 0; margin-top: 4px; }
.vt-cta-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 6px;
}
.vt-cta-card p { font-size: 14px; color: #7a736a; margin: 0; line-height: 1.7; }
@media (max-width: 900px) {
    .vt-cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   GLOBAL OVERRIDES for site.css li rule
   site.css applies: color, padding, border-bottom to ALL li elements
   ================================================================ */
.mhWhyList li,
.mn-item-list li,
.mn-item-list .mn-list-item,
.ab-ep-list li,
.mh-feat-list li,
.ct-form-sect li,
section li {
    border-bottom: none !important;
    background: transparent !important;
}
section li:hover {
    background: transparent !important;
}
/* Fix roomsButton anchor underline */
.roomsButton,
.roomsButton:hover,
.roomsButton:focus {
    text-decoration: none !important;
}
.btn-primary-mh,
.btn-outline-mh {
    text-decoration: none !important;
}

/* ================================================================
   MENU PAGE  (mn-*)
   ================================================================ */

/* Intro section */
.mn-intro-sect {
    padding: 80px 0 40px;
    background: var(--dark2);
}
.mn-intro-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 4vw, 52px);
    color: #c8a96e;
    margin: 14px 0 16px;
    line-height: 1.2;
}
.mn-intro-heading span { color: var(--CrTe); }

/* Featured Dishes Carousel */
.mn-featured-sect {
    padding: 50px 0 70px;
    background: var(--dark2);
    overflow: hidden;
}
.mn-featured-sect .container { overflow: hidden; }
.mn-featured-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.mn-feat-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--dark);
    border: 1px solid rgba(200,169,110,.1);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.mn-feat-card:hover { border-color: var(--CrTe); transform: translateY(-4px); }

.mn-feat-img-wrap { position: relative; height: 240px; overflow: hidden; }
.mn-feat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mn-feat-card:hover .mn-feat-img-wrap img { transform: scale(1.06); }
.mn-feat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--CrTe);
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 600;
}

.mn-feat-body { padding: 22px 24px 28px; }
.mn-feat-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    color: var(--CrTe);
    font-weight: 700;
    margin-bottom: 6px;
}
.mn-feat-name {
    font-family: 'Gilda Display', serif;
    font-size: 18px;
    color: #c8a96e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mn-feat-ingr {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--CrTe);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.mn-feat-desc { font-size: 13px; color: #7a736a; line-height: 1.7; margin: 0; }

.mn-feat-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}
.mn-feat-arrow {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(200,169,110,.35);
    color: var(--CrTe);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s, color .25s;
    display: flex; align-items: center; justify-content: center;
}
.mn-feat-arrow:hover { background: var(--CrTe); color: #111; }
.mn-feat-dots { display: flex; gap: 8px; }
.mn-feat-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(200,169,110,.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
}
.mn-feat-dot.active { background: var(--CrTe); transform: scale(1.3); }

@media (max-width: 1100px) {
    .mn-feat-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
    .mn-feat-card { flex: 0 0 100%; }
}

/* Menu List Section */
.mn-list-sect {
    padding: 70px 0 80px;
    background: var(--dark);
}

.mn-list-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 60px;
}
.mn-list-btn {
    background: transparent;
    border: 1px solid rgba(200,169,110,.25);
    color: #a09080;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
}
.mn-list-btn:hover,
.mn-list-btn.active {
    background: var(--CrTe);
    border-color: var(--CrTe);
    color: #111;
}

.mn-cat-section { margin-bottom: 60px; }
.mn-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.mn-cat-title {
    font-family: 'Gilda Display', serif;
    font-size: 28px;
    color: #c8a96e;
    white-space: nowrap;
    margin: 0;
}
.mn-cat-line {
    flex: 1;
    height: 1px;
    background: rgba(200,169,110,.2);
}

.mn-item-list { display: flex; flex-direction: column; gap: 0; }
.mn-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(200,169,110,.1);
    transition: background .2s;
}
.mn-list-item:hover { background: rgba(200,169,110,.03); }

.mn-li-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}
.mn-li-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mn-list-item:hover .mn-li-img img { transform: scale(1.08); }

.mn-li-body { flex: 1; min-width: 0; }
.mn-li-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}
.mn-li-name {
    font-family: 'Gilda Display', serif;
    font-size: 17px;
    color: #c8a96e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    max-width: 55%;
}
.mn-li-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(200,169,110,.3);
    margin-bottom: 4px;
    min-width: 20px;
}
.mn-li-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--CrTe);
    white-space: nowrap;
    flex-shrink: 0;
}
.mn-li-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    background: var(--CrTe);
    padding: 2px 8px;
    margin-left: 8px;
    font-weight: 600;
    flex-shrink: 0;
    vertical-align: middle;
}
.mn-li-desc { font-size: 13px; color: #6a6258; line-height: 1.65; margin: 0; }

@media (max-width: 576px) {
    .mn-li-name { max-width: 45%; font-size: 14px; }
    .mn-li-img { width: 60px; height: 60px; }
}

/* Book a Table section */
.mn-book-sect {
    position: relative;
    padding: 100px 0;
}
.mn-book-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.18);
}
.mn-book-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.mn-book-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    color: #c8a96e;
    margin: 14px 0 16px;
    line-height: 1.2;
}
.mn-book-heading span { color: var(--CrTe); }
.mn-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}
.mn-book-field label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 8px;
}
.mhResInput {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(200,169,110,.25);
    color: #c8a96e;
    padding: 12px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .25s;
    -webkit-appearance: none;
    appearance: none;
}
.mhResInput:focus { border-color: var(--CrTe); }
.mhResInput option { background: #181612; color: #c8a96e; }

@media (max-width: 900px) {
    .mn-book-inner { grid-template-columns: 1fr; gap: 40px; }
    .mn-book-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .mn-book-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT PAGE v2  (ct2-*) — Basilico contact_01 layout
   ================================================================ */

/* Info row */
.ct2-info-sect {
    padding: 70px 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(200,169,110,.1);
}
.ct2-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.ct2-info-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 32px;
}
.ct2-info-sep {
    width: 1px;
    height: 100px;
    background: rgba(200,169,110,.2);
    flex-shrink: 0;
    align-self: center;
}
.ct2-info-icon {
    color: var(--CrTe);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct2-info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 10px;
}
.ct2-info-val {
    font-size: 14px;
    color: #7a736a;
    line-height: 1.8;
    margin: 0;
}
.ct2-info-val a { color: #7a736a; text-decoration: none; transition: color .25s; }
.ct2-info-val a:hover { color: var(--CrTe); }

@media (max-width: 768px) {
    .ct2-info-sep { display: none; }
    .ct2-info-block { flex: 0 0 50%; padding: 24px 20px; border-bottom: 1px solid rgba(200,169,110,.1); }
}
@media (max-width: 480px) {
    .ct2-info-block { flex: 0 0 100%; }
}

/* Just Drop a Line section */
.ct2-drop-sect {
    padding: 90px 0;
    background: var(--dark2);
}
.ct2-drop-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
/* Left: stacked images */
.ct2-drop-imgs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.ct2-img-top {
    overflow: hidden;
    height: 300px;
}
.ct2-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.ct2-img-top:hover img { transform: scale(1.04); }

.ct2-img-bottom {
    overflow: hidden;
    height: 220px;
    position: relative;
}
.ct2-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.ct2-img-bottom:hover img { transform: scale(1.04); }

.ct2-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--CrTe);
    color: #111;
    padding: 14px 20px;
    text-align: center;
}
.ct2-img-badge span {
    display: block;
    font-family: 'Gilda Display', serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}
.ct2-img-badge small {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* Right: form */
.ct2-drop-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: #c8a96e;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.ct2-drop-heading span { color: var(--CrTe); }

.ct2-form { width: 100%; }
.ct2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.ct2-field { display: flex; flex-direction: column; }
.ct2-field input,
.ct2-field select,
.ct2-field textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(200,169,110,.18);
    border-bottom: 2px solid rgba(200,169,110,.25);
    color: #c8a96e;
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .25s, background .25s;
    width: 100%;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 16px;
}
.ct2-field textarea { margin-bottom: 16px; }
.ct2-field input::placeholder,
.ct2-field textarea::placeholder { color: #4a4440; }
.ct2-field input:focus,
.ct2-field select:focus,
.ct2-field textarea:focus {
    border-color: var(--CrTe);
    background: rgba(200,169,110,.04);
}
.ct2-field select option { background: #181612; color: #c8a96e; }

.ct2-submit-btn { margin-top: 8px; border: none !important; cursor: pointer; }
.ct2-form-msg { margin-top: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; display: none; }
.ct2-form-msg.success { display: block; color: #7ecf7e; }
.ct2-form-msg.error { display: block; color: #e74c3c; }

@media (max-width: 900px) {
    .ct2-drop-wrap { grid-template-columns: 1fr; gap: 40px; }
    .ct2-img-top { height: 240px; }
    .ct2-img-bottom { height: 180px; }
}
@media (max-width: 576px) {
    .ct2-form-row { grid-template-columns: 1fr; }
}

/* Map + floating card */
.ct2-map-sect { position: relative; }
.ct2-map-wrap { position: relative; height: 520px; overflow: hidden; }
.ct2-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(.25) brightness(.9);
}
.ct2-map-card {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    background: var(--dark);
    border: 1px solid rgba(200,169,110,.2);
    padding: 36px 32px;
    min-width: 280px;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.ct2-map-card-title {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
    color: #c8a96e;
    margin: 0 0 4px;
}
.ct2-map-info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: #7a736a;
    font-size: 13px;
    line-height: 1.65;
}
.ct2-map-info-row svg { color: var(--CrTe); flex-shrink: 0; margin-top: 2px; }
.ct2-map-btn { font-size: 12px !important; padding: 10px 20px !important; }

@media (max-width: 768px) {
    .ct2-map-wrap { height: auto; }
    .ct2-map-iframe { height: 320px; display: block; }
    .ct2-map-card {
        position: static;
        transform: none;
        margin: 0;
        border-top: none;
        padding: 28px 24px;
    }
}

/* ================================================================
   CONTACT PAGE  (ct-*)
   ================================================================ */

/* Info cards */
.ct-info-sect {
    padding: 80px 0;
    background: var(--dark2);
}
.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ct-info-card {
    background: var(--dark);
    border: 1px solid rgba(200,169,110,.1);
    padding: 36px 28px;
    text-align: center;
    transition: border-color .3s, transform .3s;
}
.ct-info-card:hover { border-color: var(--CrTe); transform: translateY(-4px); }

.ct-info-icon-wrap {
    width: 60px; height: 60px;
    border: 1px solid rgba(200,169,110,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--CrTe);
}
.ct-info-icon-wrap svg { width: 24px; height: 24px; }
.ct-info-title {
    font-family: 'Gilda Display', serif;
    font-size: 18px;
    color: #c8a96e;
    margin-bottom: 12px;
}
.ct-info-card p { font-size: 14px; color: #7a736a; line-height: 1.75; margin: 0; }
.ct-info-card p a { color: #7a736a; text-decoration: none; transition: color .25s; }
.ct-info-card p a:hover { color: var(--CrTe); }

@media (max-width: 900px) { .ct-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ct-info-grid { grid-template-columns: 1fr; } }

/* "Just Drop a Line!" form section */
.ct-form-sect {
    padding: 90px 0;
    background: var(--dark);
}
.ct-form-layout {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 1100px) {
    .ct-form-layout { grid-template-columns: 1fr; }
    .ct-form-img-left, .ct-form-img-right { display: none; }
}

/* Decorative image blocks */
.ct-form-img-left,
.ct-form-img-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.ct-img-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.ct-img-accent {
    width: 75%;
    height: 180px;
    object-fit: cover;
}
.ct-form-img-right .ct-img-accent { align-self: flex-end; }

.ct-form-heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: #c8a96e;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.ct-form-heading span { color: var(--CrTe); }

/* Contact form inputs */
.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.ct-field { display: flex; flex-direction: column; gap: 8px; }
.ct-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--CrTe);
}
.ct-field label span { color: #e74c3c; }
.ct-field input,
.ct-field select,
.ct-field textarea {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(200,169,110,.2);
    color: #c8a96e;
    padding: 13px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .25s;
    width: 100%;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #4a4440; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus { border-color: var(--CrTe); }
.ct-field select option { background: #181612; color: #c8a96e; }
.ct-form-msg {
    margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    display: none;
}
.ct-form-msg.success { display: block; color: #7ecf7e; }
.ct-form-msg.error { display: block; color: #e74c3c; }

@media (max-width: 576px) {
    .ct-form-row { grid-template-columns: 1fr; }
}

/* Map */
.ct-map-sect { height: 480px; overflow: hidden; }
.ct-map-embed { width: 100%; height: 100%; border: none; display: block; filter: grayscale(.3) brightness(.9); }

/* Visit Us strip */
.ct-visit-strip {
    padding: 60px 0;
    background: var(--dark2);
    border-top: 1px solid rgba(200,169,110,.12);
}
.ct-visit-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
}
.ct-visit-item { text-align: center; }
.ct-visit-item h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--CrTe);
    margin-bottom: 10px;
}
.ct-visit-item p { font-size: 14px; color: #7a736a; margin: 0; line-height: 1.7; }
.ct-visit-item p a { color: #7a736a; text-decoration: none; transition: color .25s; }
.ct-visit-item p a:hover { color: var(--CrTe); }
.ct-visit-divider {
    width: 1px;
    height: 60px;
    background: rgba(200,169,110,.2);
}
@media (max-width: 768px) {
    .ct-visit-divider { display: none; }
    .ct-visit-inner { flex-direction: column; }
}
