html,
body {
  overflow-x: hidden !important;
}

body {
  margin: 0 !important;
}

/* =========================================================
   HEADER BASE
========================================================= */

.manda-fixed-header {
  --brown: #633400;
  --cream: #f2efe7;
  --gold: #004005;
  --gold-bright: #004005;
  --text: #241300;
  --white: #ffffff;
  --border: rgba(90, 49, 0, 0.15);
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.16);

  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 999999 !important;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
}

body.admin-bar .manda-fixed-header {
  top: 32px !important;
}

.manda-fixed-header,
.manda-fixed-header * {
  box-sizing: border-box;
}

.manda-fixed-header a {
  text-decoration: none;
}

.manda-header-spacer {
  width: 100%;
  height: 152px;
}

body.admin-bar .manda-header-spacer {
  height: 184px;
}

.manda-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.manda-menu-font {
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

/* =========================================================
   TOP HEADER
========================================================= */

.manda-top {
  width: 100%;
  min-height: 48px;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
}

.manda-top-inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.manda-top-links {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.manda-top-links a,
.manda-top-contact {
  color: var(--white);
  font-size: 14px;
  line-height: 1;
}

.manda-top-links a:hover,
.manda-top-contact:hover {
  color: var(--gold-bright);
}

.manda-top-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.manda-top-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.manda-top-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: 0 0 auto;
}

.manda-top-email {
  justify-self: end;
}

/* =========================================================
   MAIN HEADER
========================================================= */

.manda-main {
  width: 100%;
  min-height: 104px;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
}

.manda-main-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.manda-logo {
  flex: 0 0 250px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.manda-logo img {
  width: 195px;
  max-width: 100%;
  height: auto;
  display: block;
}

.manda-menu-toggle,
.manda-sub-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.manda-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.manda-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.manda-nav-item {
  list-style: none;
}

.manda-nav-link,
.manda-sub-label {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.manda-nav-link:hover,
.manda-sub-label:hover,
.manda-nav-item:hover > .manda-sub-label {
  color: var(--gold-bright);
}

.manda-sub-label::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.manda-enquire {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--white);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.manda-enquire:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-1px);
}

/* =========================================================
   DESKTOP MEGA MENU
========================================================= */

.manda-mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fffdf8;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.manda-nav-item:hover > .manda-mega,
.manda-nav-item:focus-within > .manda-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.manda-mega-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 32px;
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 22px;
}

.manda-mega-feature {
  background: linear-gradient(135deg, #5a3100, #301900);
  border-radius: 14px;
  padding: 22px;
  color: var(--white);
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manda-mega-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(198, 146, 15, 0.18);
  color: #f5d37b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.manda-mega-feature h3 {
  margin: 15px 0 10px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
}

.manda-mega-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.manda-mega-feature a {
  margin-top: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.manda-mega-feature a:hover {
  color: #f5d37b;
}

.manda-mega-col h4 {
  margin: 0 0 13px;
  color: var(--brown);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.manda-mega-col a {
  display: flex;
  align-items: center;
  color: #4c3620;
  padding: 7px 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  border-bottom: 1px solid rgba(90, 49, 0, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.manda-mega-col a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  margin-right: 9px;
  flex: 0 0 auto;
}

.manda-mega-col a:hover {
  color: var(--brown);
  padding-left: 5px;
}

/* =========================================================
   DESKTOP SCREEN FIXES
========================================================= */

@media (min-width: 1500px) {
  .manda-header-spacer {
    height: 160px;
  }

  .manda-container {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }

  .manda-main {
    min-height: 112px;
  }

  .manda-logo {
    flex-basis: 190px;
  }

  .manda-logo img {
    width: 155px;
  }

  .manda-nav-list {
    gap: 28px;
  }

  .manda-nav-link,
  .manda-sub-label {
    font-size: 21px;
  }

  .manda-enquire {
    min-height: 58px;
    padding: 0 26px;
    font-size: 23px;
  }

  .manda-top-links a,
  .manda-top-contact {
    font-size: 18px;
  }

  .manda-top-icon {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .manda-header-spacer {
    height: 140px;
  }

  .manda-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .manda-main {
    min-height: 92px;
  }

  .manda-logo {
    flex-basis: 125px;
  }

  .manda-logo img {
    width: 105px;
  }

  .manda-main-inner {
    gap: 10px;
  }

  .manda-nav-list {
    gap: 12px;
  }

  .manda-nav-link,
  .manda-sub-label {
    font-size: 14px;
    letter-spacing: 0.25px;
  }

  .manda-enquire {
    min-height: 44px;
    padding: 0 13px;
    font-size: 15px;
  }

  .manda-top-links {
    gap: 15px;
  }

  .manda-top-info {
    gap: 16px;
  }

  .manda-top-links a,
  .manda-top-contact {
    font-size: 12px;
  }

  .manda-top-icon {
    width: 13px;
    height: 13px;
  }
}

@media (min-width: 1281px) and (max-width: 1499px) {
  .manda-header-spacer {
    height: 150px;
  }

  .manda-main {
    min-height: 102px;
  }

  .manda-logo {
    flex-basis: 150px;
  }

  .manda-logo img {
    width: 125px;
  }

  .manda-nav-list {
    gap: 15px;
  }

  .manda-nav-link,
  .manda-sub-label {
    font-size: 16px;
  }

  .manda-enquire {
    min-height: 48px;
    padding: 0 16px;
    font-size: 17px;
  }

  .manda-top-links a,
  .manda-top-contact {
    font-size: 13px;
  }
}

/* =========================================================
   MOBILE BUTTON
========================================================= */

.manda-mobile-btn {
  display: none;
  width: 42px;
  height: 38px;
  border: 2px solid var(--brown);
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.manda-mobile-btn span,
.manda-mobile-btn span::before,
.manda-mobile-btn span::after {
  width: 22px;
  height: 3px;
  background: var(--brown);
  display: block;
  position: relative;
  border-radius: 20px;
}

.manda-mobile-btn span::before,
.manda-mobile-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.manda-mobile-btn span::before {
  top: -8px;
}

.manda-mobile-btn span::after {
  top: 8px;
}

/* =========================================================
   TABLET AND MOBILE
========================================================= */

@media (max-width: 1100px) {
  body.admin-bar .manda-fixed-header {
    top: 46px !important;
  }

  .manda-header-spacer {
    height: 210px;
  }

  body.admin-bar .manda-header-spacer {
    height: 250px;
  }

  .manda-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .manda-top {
    min-height: auto;
    padding: 10px 0;
  }

  .manda-top-inner {
    grid-template-columns: 1fr;
    gap: 9px;
    text-align: center;
  }

  .manda-top-links,
  .manda-top-info,
  .manda-top-email {
    justify-content: center;
    justify-self: center;
    flex-wrap: wrap;
  }

  .manda-top-links {
    gap: 15px;
  }

  .manda-top-info {
    gap: 14px;
  }

  .manda-top-links a,
  .manda-top-contact {
    font-size: 12px;
  }

  .manda-top-icon {
    width: 14px;
    height: 14px;
  }

  .manda-main {
    min-height: 88px;
  }

  .manda-main-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .manda-logo {
    flex: initial;
  }

  .manda-logo img {
    width: 92px;
  }

  .manda-mobile-btn {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .manda-enquire {
    grid-column: 2;
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
    font-size: 15px;
  }

  .manda-nav {
    display: none;
    position: absolute;
    left: -15px;
    right: -15px;
    top: 100%;
    background: var(--cream);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
    padding: 10px 15px 22px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .manda-menu-toggle:checked ~ .manda-nav {
    display: block;
  }

  .manda-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .manda-nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(90, 49, 0, 0.12);
  }

  .manda-nav-link,
  .manda-sub-label {
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 20px;
  }

  .manda-mega {
    position: static;
    display: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border-top: 0;
    background: #fffaf0;
    margin: 0 0 14px;
    border-radius: 12px;
    overflow: hidden;
  }

  .manda-sub-toggle:checked ~ .manda-mega {
    display: block;
    transform: none;
  }

  .manda-mega-inner {
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .manda-mega-feature {
    min-height: auto;
    padding: 19px;
  }

  .manda-mega-feature h3 {
    font-size: 20px;
  }

  .manda-mega-col a {
    font-size: 14px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {
  .manda-header-spacer {
    height: 218px;
  }

  .manda-logo img {
    width: 82px;
  }

  .manda-main {
    min-height: 82px;
  }

  .manda-enquire {
    min-height: 39px;
    padding: 0 11px;
    font-size: 14px;
  }

  .manda-mobile-btn {
    width: 39px;
    height: 37px;
  }

  .manda-nav-link,
  .manda-sub-label {
    font-size: 19px;
  }

  .manda-top-contact,
  .manda-top-links a {
    font-size: 11.5px;
  }
}


/* =========================================================
   2026 MOBILE HEADER RELIABILITY UPDATE
   Keeps every original menu item while making navigation usable.
========================================================= */
@media (max-width: 1100px) {
  .manda-fixed-header { position: fixed !important; }
  .manda-header-spacer { height: 132px !important; }
  body.admin-bar .manda-header-spacer { height: 178px !important; }
  .manda-top { min-height: 42px !important; padding: 6px 0 !important; }
  .manda-top-inner { grid-template-columns: 1fr auto !important; gap: 8px !important; }
  .manda-top-links { display: none !important; }
  .manda-top-info { justify-self: start !important; justify-content: flex-start !important; gap: 10px !important; }
  .manda-top-email { justify-self: end !important; }
  .manda-main { min-height: 90px !important; }
  .manda-main-inner { grid-template-columns: auto 1fr auto !important; gap: 10px !important; }
  .manda-logo { min-width: 112px !important; }
  .manda-logo img { width: 112px !important; height: auto !important; }
  .manda-enquire { min-height: 42px !important; font-size: 13px !important; padding: 0 12px !important; border-radius: 6px !important; }
  .manda-mobile-btn { width: 44px !important; height: 42px !important; background:#fff !important; }
  .manda-nav {
    left: -15px !important; right: -15px !important; top: 100% !important;
    max-height: calc(100svh - 132px) !important; padding: 8px 15px 24px !important;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  }
  .manda-nav-link,.manda-sub-label { min-height: 52px; padding: 13px 4px !important; font-size: 16px !important; }
  .manda-mega-inner { padding: 14px !important; gap: 13px !important; }
  .manda-mega-col a { min-height: 40px; display:flex; align-items:center; }
  .manda-menu-toggle:checked + .manda-mobile-btn span { background:transparent; }
  .manda-menu-toggle:checked + .manda-mobile-btn span::before { top:0; transform:rotate(45deg); }
  .manda-menu-toggle:checked + .manda-mobile-btn span::after { top:0; transform:rotate(-45deg); }
  .manda-mobile-btn span,.manda-mobile-btn span::before,.manda-mobile-btn span::after { transition:.2s ease; }
}
@media (max-width: 640px) {
  .manda-header-spacer { height: 120px !important; }
  .manda-top { min-height: 38px !important; }
  .manda-top-info .manda-top-contact:first-child { display:none !important; }
  .manda-top-email { display:none !important; }
  .manda-top-inner { display:flex !important; justify-content:center !important; }
  .manda-main { min-height:82px !important; }
  .manda-logo { min-width:96px !important; }
  .manda-logo img { width:96px !important; }
  .manda-enquire { font-size:12px !important; padding:0 9px !important; }
  .manda-nav { max-height:calc(100svh - 120px) !important; }
}

/* Unified high-resolution brand asset */
.manda-logo img{width:172px!important;max-height:84px!important;object-fit:contain!important;filter:drop-shadow(0 8px 18px rgba(3,63,3,.10))}
@media (min-width:1500px){.manda-logo img{width:190px!important;max-height:92px!important}}
@media (max-width:1100px){.manda-logo{min-width:120px!important}.manda-logo img{width:120px!important;max-height:66px!important}}
@media (max-width:640px){.manda-logo{min-width:102px!important}.manda-logo img{width:102px!important;max-height:58px!important}}
