/*HEADER SECTION STYLE CODE*/

:root {
  --mshd-mobile-header-height: 64px;
  --mshd-gold-dark: #8d642d;
  --mshd-white: #f8f1e8;
  --mshd-muted: #b49a78;
  --mshd-border: rgba(195, 148, 75, 0.18);
  --mas-font-display: "Antic Didone", serif;
  --mas-font-heading: "Cinzel", serif;
  --mas-font-script: "Dancing Script", cursive;
  --mas-font-body: "Hedvig Letters Serif", serif;
  --mas-font-ui: "Inter", sans-serif;

  /* Exact verified live colours */
  --mas-darkest: #110a07;
  --mas-dark-section: #1c110a;
  --mas-footer-dark: #190c06;

  --mas-gold: #c9a96e;
  --mas-gold-light: #e8caa2;

  --mas-cream: #f5f0e8;
  --mas-cream-dark: #eae4d9;
  --mas-cream-gold: #e8ded0;
  --mas-cream-soft: #f7efe8;

  --mas-heading: #402717;
  --mas-body-text: #4c382b;
  --mas-hero-heading: #e5ddc9;
  --mas-white: #ffffff;
}

.mshd-header,
.mshd-header * {
  box-sizing: border-box;
}

body.mshd-menu-open {
  overflow: hidden;
}

/* MAIN STICKY HEADER */
/* MAIN HEADER */

.mshd-header {
  width: 100%;
  min-height: 66px;
  position: sticky;
  top: 0;
  z-index: 1055;
  background: var(--mas-darkest);
  border-bottom: 0;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mshd-header-container {
  width: 100%;
  min-height: 66px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5.1vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Desktop header only */
@media (min-width: 1024px) {

  .mshd-header {
    height: 96px;
    min-height: 96px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--mas-darkest);
  }

  /* Homepage header at the top */
  .mshd-header--home {
    background: transparent;
  }

  /* Homepage header after scrolling */
  .mshd-header--home.mshd-scrolled {
    background: var(--mas-darkest);
  }

  .mshd-header.mshd-scrolled {  
    box-shadow: none;
  }

  .mshd-header-container {
    height: 96px;
    min-height: 96px;
  }
}

/* Exact large-desktop measurements */
@media (min-width: 1200px) {

  .mshd-header-container {
    max-width: 1600px;
    padding-right: 64px;
    padding-left: 64px;
    gap: 0;
  }
}

/* LOGO */

.mshd-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.mshd-logo img {
  width: auto;
  height: 48px;
  max-width: none;
  display: block;
  object-fit: contain;
}

/* DESKTOP NAVIGATION */

.mshd-desktop-nav {
  margin-left: auto;
}

.mshd-desktop-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
}

.mshd-desktop-item {
  position: relative;
}

.mshd-desktop-link {
  min-height: 0;
  padding: 0;
  color: var(--mshd-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-family: var(--mas-font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 31.4286px;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.mshd-link-plus {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transform: none;
}

.mshd-desktop-link::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: auto;
  bottom: -4px;
  left: 0;
  background: var(--mshd-gold);
  transform: none;
  transition: width 0.3s ease;
}

.mshd-desktop-link:hover {
  color: var(--mshd-gold);
  transform: scale(1.05);
}

.mshd-desktop-link:hover::after {
  width: 100%;
}

.mshd-desktop-link.active {
  color: var(--mshd-white);
}

.mshd-desktop-link.active::after {
  width: 100%;
}

/* MOBILE TOGGLE */

.mshd-mobile-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(189, 142, 72, 0.55);
  border-radius: 50%;
  outline: none;
  background: rgba(189, 142, 72, 0.05);
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.mshd-mobile-toggle:hover {
  border-color: var(--mshd-gold-light);
  background: rgba(189, 142, 72, 0.13);
}

.mshd-mobile-toggle:active {
  transform: scale(0.96);
}

.mshd-toggle-lines {
  width: 24px;
  height: 18px;
  display: block;
  position: relative;
}

.mshd-toggle-lines span {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--mshd-gold);
  position: absolute;
  left: 0;

  transition:
    top 0.25s ease,
    bottom 0.25s ease,
    opacity 0.2s ease,
    transform 0.25s ease;
}

.mshd-toggle-lines span:nth-child(1) {
  top: 1px;
}

.mshd-toggle-lines span:nth-child(2) {
  top: 8px;
}

.mshd-toggle-lines span:nth-child(3) {
  bottom: 1px;
}

body.mshd-menu-open .mshd-toggle-lines span:nth-child(1) {
  top: 8px;

  transform: rotate(45deg);
}

body.mshd-menu-open .mshd-toggle-lines span:nth-child(2) {
  opacity: 0;
}

body.mshd-menu-open .mshd-toggle-lines span:nth-child(3) {
  bottom: 8px;

  transform: rotate(-45deg);
}

/* MOBILE AND TABLET DRAWER */

.offcanvas.offcanvas-start.mshd-offcanvas {
  width: 85% !important;
  max-width: 384px;

  height:
    calc(100dvh - var(--mshd-mobile-header-height)) !important;

  top: var(--mshd-mobile-header-height) !important;
  bottom: auto !important;

  color: var(--mshd-white);
  background: var(--mas-darkest);
  border-right: 1px solid var(--mas-darkest) !important;

  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, .25);

  transition: transform .3s ease-out;
}

.mshd-offcanvas-body {
  padding: 0 !important;
  overflow-y: auto;
}

body.mshd-menu-open .mshd-header,
body.mshd-menu-open .mshd-header--home {
  background: var(--mas-darkest);
}

.mshd-mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mshd-mobile-item {
  position: relative;

  border: 0;
}

.mshd-mobile-item:not(:last-child)::after {
  content: "";
  height: 1px;

  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;

  background: rgba(61, 49, 40, 0.3);
}

.mshd-mobile-link {
  width: 100%;
  min-height: 0;
  padding: 16px 24px;
  color: var(--mshd-gold);

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: var(--mas-font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: normal;

  text-decoration: none;
  text-transform: uppercase;

  transition: color 0.2s ease;
}

.mshd-mobile-link:hover {
  color: var(--mshd-white);
}

.mshd-mobile-link.active,
.mshd-mobile-link[aria-current="page"] {
  color: var(--mshd-white);
}

/* Mobile contact block */
.mshd-mobile-contact {
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid var(--mshd-border);
}

.mshd-mobile-contact-title {
  margin: 0 0 16px;
  color: var(--mshd-gold);
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mshd-mobile-contact-link {
  margin-bottom: 13px;
  color: #cfbda7;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mshd-mobile-contact-link:hover {
  color: var(--mshd-white);
}

.mshd-mobile-contact-link i {
  margin-top: 3px;
  color: var(--mshd-gold);
  font-size: 13px;
}

.offcanvas-backdrop {
  background-color: #000000;
}

.offcanvas-backdrop.show {
  opacity: 0.6;
}

/* IPAD PRO 1024px and similar screens retain desktop navigation */

@media (min-width: 1024px) and (max-width: 1199.98px) {
  .mshd-header-container {
    padding-right: 27px;
    padding-left: 27px;
    gap: 20px;
  }

  .mshd-logo img {
    width: 150px;
  }

  .mshd-desktop-menu {
    gap: 16px;
  }

  .mshd-desktop-link {
    gap: 6px;
    font-size: 11.5px;
    letter-spacing: 0;
  }

  .mshd-link-plus {
    font-size: 14px;
  }
}

/* =========================================================
   MOBILE AND TABLET: BELOW 1024PX
========================================================= */

@media (max-width: 1023.98px) {

  .mshd-header {
    height: var(--mshd-mobile-header-height);
    min-height: var(--mshd-mobile-header-height);

    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }

  .mshd-header--home {
    background: transparent;
  }

  .mshd-header--home.mshd-scrolled {
    background: var(--mas-darkest);
  }

  .mshd-header-container {
    height: var(--mshd-mobile-header-height);
    min-height: var(--mshd-mobile-header-height);
  }

  .mshd-desktop-nav {
    display: none;
  }

  .mshd-mobile-toggle {
    width: 40px;
    height: 40px;

    padding: 8px;

    border: 0;
    border-radius: 0;
    background: transparent;

    display: inline-flex;
  }

  .mshd-mobile-toggle:hover {
    border: 0;

    background: transparent;
  }
}

/* Phones below 640px */
@media (max-width: 639.98px) {

  :root {
    --mshd-mobile-header-height: 64px;
  }

  .mshd-header-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mshd-logo img {
    width: auto;

    height: 32px;
  }
}

/* Devices from 640px to 767px */
@media (min-width: 640px) and (max-width: 767.98px) {

  :root {
    --mshd-mobile-header-height: 88px;
  }

  .mshd-header-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mshd-logo img {
    width: auto;

    height: 40px;
  }
}

/* Tablets from 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023.98px) {

  :root {
    --mshd-mobile-header-height: 96px;
  }

  .mshd-header-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mshd-logo img {
    width: auto;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mshd-header *,
  .mshd-offcanvas * {
    transition: none !important;
  }
}
.mshome-hero-title span {
  display: block;
}
/*FOOTER SECTION STYLE CODE*/
:root {
  --masalo-footer-bg: #190c06;
  --masalo-footer-gold: #c9a96e;
  --masalo-footer-gold-light: #e8caa2;
  --masalo-footer-white: #ffffff;
  --masalo-footer-text: #d1d5dc;
}

/* =========================================================
   STAGE 7 — LIVE MASALO FOOTER
========================================================= */

.masaloFooter,
.masaloFooter *,
.masaloFooterTop,
.masaloFooterTop * {
  box-sizing: border-box;
}

.masaloFooter {
  width: 100%;
  overflow: hidden;
  position: relative;
  color: var(--masalo-footer-white);
  background: var(--masalo-footer-bg);
  font-family: var(--mas-font-ui, "Inter", sans-serif);
}

.masaloFooter__container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding: 64px 16px;
}

/* =========================================================
   BRAND AREA
========================================================= */

.masaloFooter__brand {
  margin-bottom: 64px;
  text-align: left;
}

.masaloFooter__logoLink {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.masaloFooter__logoLink:hover {
  opacity: 0.8;
}

.masaloFooter__logo {
  width: auto;
  height: 40px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.masaloFooter__logoLink:hover .masaloFooter__logo {
  transform: scale(1.05);
}

.masaloFooter__description {
  max-width: 448px;
  margin: 0;
  color: var(--masalo-footer-text);
  background: transparent;
  --mas-font-display: "Antic Didone", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0;
}

/* =========================================================
   FOOTER COLUMNS
========================================================= */

.masaloFooter__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 48px;
  align-items: start;
}

.masaloFooter__column {
  min-width: 0;
  text-align: left;
}

.masaloFooter__heading {
  margin: 0 0 24px;
  color: #e5ddc9;
  font-family: var(--mas-font-heading, "Cinzel", serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.masaloFooter__contactList,
.masaloFooter__linkList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.masaloFooter__contactList li,
.masaloFooter__linkList li {
  margin: 0;
}

.masaloFooter__contactList li+li {
  margin-top: 16px;
}

.masaloFooter__linkList li+li {
  margin-top: 12px;
}

/* =========================================================
   CONTACT DETAILS
========================================================= */

.masaloFooter__contactLink {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--masalo-footer-text);
  background: transparent;
  font-family: var(--mas-font-display, "Antic Didone", serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

.masaloFooter__contactList li:first-child .masaloFooter__contactLink {
  align-items: flex-start;
}

.masaloFooter__contactList li:first-child .masaloFooter__contactLink span {
  line-height: 26px;
  text-transform: uppercase;
}

.masaloFooter__contactList li:nth-child(3) span {
  text-transform: uppercase;
}

.masaloFooter__contactLink i,
.masaloFooter__contactLink svg {
  width: 20px;
  height: 20px;
  margin: 0;
  color: var(--masalo-footer-gold);
  display: block;
  flex: 0 0 20px;
  font-size: 20px;
  line-height: 20px;
}

.masaloFooter__contactList li:first-child i,
.masaloFooter__contactList li:first-child svg {
  margin-top: 2px;
}

.masaloFooter__contactLink:hover {
  color: var(--masalo-footer-gold-light);
  transform: none;
}

/* =========================================================
   LINKS AND SERVICES
========================================================= */

.masaloFooter__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: var(--masalo-footer-white);
  background: transparent;
  font-family: var(--mas-font-display, "Antic Didone", serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.masaloFooter__plus {
  color: var(--masalo-footer-gold);
  background: transparent;
  font-family: var(--mas-font-display, "Antic Didone", serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.masaloFooter__link::after {
  content: none;
  display: none;
}

.masaloFooter__link:hover {
  color: var(--masalo-footer-gold);
  transform: none;
}

.masaloFooter__serviceList .masaloFooter__link {
  width: 100%;
  display: block;
  gap: 0;
  line-height: 24px;
  letter-spacing: 0.35px;
}

/* =========================================================
   BACK-TO-TOP BUTTON
========================================================= */

.masaloFooterTop {
  width: 56px;
  height: 56px;
  padding: 16px;
  border: 0;
  border-radius: 50%;
  outline: 0;
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: var(--masalo-footer-gold);
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(15px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.masaloFooterTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.masaloFooterTop:hover {
  color: #000000;
  background: var(--masalo-footer-gold-light);
  transform: scale(1.1);
}

.masaloFooterTop:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media (min-width: 640px) {
  .masaloFooter__container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .masaloFooter__logo {
    height: 48px;
  }
}

@media (min-width: 768px) {
  .masaloFooter__logo {
    width: 219px;
    height: 56px;
  }

  .masaloFooter__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 48px;
  }

  .masaloFooter__contactColumn {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .masaloFooter__container {
    padding: 80px 64px;
  }

  .masaloFooter__grid {
    column-gap: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .masaloFooter *,
  .masaloFooterTop {
    transition: none !important;
  }
}
  .masaloFooter__legal {
    width: 100%;
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .masaloFooter__legalLink {
    color: rgba(229, 221, 201, 0.75);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }

  .masaloFooter__legalLink:hover,
  .masaloFooter__legalLink:focus-visible {
    color: #c9a96e;
    text-decoration: none;
    transform: translateY(-1px);
  }

  .masaloFooter__legalLink:focus-visible {
    outline: 1px solid #c9a96e;
    outline-offset: 5px;
  }

  .masaloFooter__legalDivider {
    color: rgba(201, 169, 110, 0.4);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 20px;
  }

  @media (max-width: 767.98px) {
    .masaloFooter__legal {
      margin-top: 48px;
      padding-top: 24px;
      gap: 14px;
    }

    .masaloFooter__legalLink {
      font-size: 13px;
      line-height: 20px;
    }
  }

  @media (max-width: 479.98px) {
    .masaloFooter__legal {
      align-items: center;
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .masaloFooter__legalDivider {
      display: none;
    }
  }


/*INDEX SECTION STYLE CODE*/
:root {
  --mshome-dark: #130a06;
  --mshome-dark-soft: #24130c;
  --mshome-cream: #f4eee5;
  --mshome-cream-deep: #ddd0bf;
  --mshome-brown: #432a1d;
  --mshome-text: #665143;
  --mshome-gold: #cba35f;
  --mshome-gold-light: #e4c58c;
  --mshome-gold-dark: #98703a;
  --mshome-white: #fffaf3;
  --mshome-border: rgba(137, 101, 63, 0.19);
  --mshome-shadow: 0 22px 50px rgba(62, 39, 24, 0.10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--mshome-text);
  background: var(--mshome-cream);
  font-family: "Cormorant Garamond", serif;
}

img,
video {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.mshome-main {
  overflow: hidden;
}

.mshome-container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}


/* ==================================================
       SHARED TYPOGRAPHY AND BUTTONS
    ================================================== */

.mshome-title {
  margin: 0;
  color: var(--mshome-brown);
  font-family: var(--mas-font-heading);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mshome-script {
  color: #ad8149;
  font-family: var(--mas-font-script);
  font-size: 1.18em;
  font-weight: 400;
  text-transform: none;
}

.mshome-eyebrow {
  margin: 0 0 22px;
  color: #b17f3d;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mshome-button {
  min-height: 49px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.mshome-button i {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.mshome-button:hover i {
  transform: translateX(5px);
}

.mshome-button-light {
  min-width: 180px;
  color: #24150d;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(249, 239, 225, 0.93);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.mshome-button-light:hover {
  color: #ffffff;
  border-color: var(--mshome-gold-dark);
  background: var(--mshome-gold-dark);
  transform: translateY(-3px);
}

.mshome-button-gold {
  color: #27180f;
  border-color: #dfba80;
  background: #e5c18a;
}

.mshome-button-gold:hover {
  color: #ffffff;
  border-color: var(--mshome-gold-dark);
  background: var(--mshome-gold-dark);
  box-shadow: 0 14px 30px rgba(65, 42, 27, 0.16);
  transform: translateY(-3px);
}


/* ==================================================
       VIDEO HERO
    ================================================== */

.mshome-hero {
  min-height: 640px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: var(--mshome-white);
  background: var(--mshome-dark);
}

.mshome-hero-media,
.mshome-hero-shade {
  position: absolute;
  inset: 0;
}

.mshome-hero-media {
  z-index: -4;
  background: var(--mshome-dark);
}

.mshome-hero-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: center 52%;
  pointer-events: none;
  filter:
    saturate(0.78) contrast(1.08) brightness(0.82);
}

.mshome-hero-shade {
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(12, 6, 3, 0.80) 0%,
      rgba(21, 12, 7, 0.55) 48%,
      rgba(10, 5, 3, 0.77) 100%),
    linear-gradient(180deg,
      rgba(7, 3, 2, 0.22) 0%,
      rgba(11, 6, 3, 0.30) 45%,
      rgba(8, 4, 2, 0.86) 100%);
}

.mshome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.43) 100%);
}

.mshome-hero-inner {
  min-height: 640px;
  padding: 64px 0 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mshome-hero-content {
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.mshome-hero-title {
  font-family: var(--mas-font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 110px;
  letter-spacing: 0;
  color: var(--mas-hero-heading);
}

.mshome-hero-script {
  font-family: var(--mas-font-script);
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0;
  color: var(--mas-gold);
}

.mshome-hero-description {
  font-family: var(--mas-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: 0;
}

.mshome-hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
}

.mshome-hero-contact {
  width: calc(100% - 64px);
  position: absolute;
  right: 32px;
  bottom: 24px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.mshome-hero-contact-item {
  color: rgba(255, 250, 244, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: auto;
  transition: color 0.25s ease;
}

.mshome-hero-contact-item i {
  color: var(--mshome-gold-light);
  font-size: 15px;
}

.mshome-hero-contact-item:hover {
  color: var(--mshome-gold-light);
}


/* HOMEPAGE LOWER SECTIONS */
.mshome-feature-strip .mshome-container,
.mshome-discover .mshome-container,
.mshome-signature .mshome-container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 64px;
}

/* FEATURE STRIP */
.mshome-feature-strip {
  padding: 64px 0;
  border-top: 1px solid rgba(17, 10, 7, 0.1);
  border-bottom: 0;
  background: #e8ded0;
}

.mshome-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.mshome-feature-item {
  min-width: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.mshome-feature-item:first-child {
  padding-left: 0;
}

.mshome-feature-item:last-child {
  padding-right: 0;
}

/* Vertical separator line */
.mshome-feature-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 80px;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: rgba(64, 39, 23, 0.35);
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .mshome-feature-grid {
    grid-template-columns: 1fr;
  }

  .mshome-feature-item,
  .mshome-feature-item:first-child,
  .mshome-feature-item:last-child {
    padding: 28px 0;
  }

  .mshome-feature-item:not(:last-child)::after {
    width: 100%;
    height: 1px;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    transform: none;
  }
}
.mshome-feature-icon {
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 96px;
}

.mshome-feature-icon-image {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.mshome-feature-item:hover .mshome-feature-icon-image {
  transform: scale(1.1);
}

.mshome-feature-copy,
.mshome-feature-item>div:last-child {
  min-width: 0;
  flex: 1;
}

.mshome-feature-title {
  margin: 0 0 12px;
  color: #402717;
  font-family: var(--mas-font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: normal;
}

.mshome-feature-text {
  margin: 0;
  color: #4c382b;
  font-family: var(--mas-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: normal;
}


/* DISCOVER SECTION */

.mshome-discover {
  padding: 80px 0;
  background: #eae4d9;
}

.mshome-discover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 576px);
  align-items: center;
  gap: 80px;
}

.mshome-discover-cards {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 32px;
}

.mshome-discover-copy {
  max-width: 576px;
}

.mshome-discover-title {
  margin: 0;
  color: #3d3128;
  font-family: var(--mas-font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: normal;
  text-transform: uppercase;
}

.mshome-discover-title .mshome-script {
  margin-left: 8px;
  color: #a8814d;
  display: inline-block;
  font-family: var(--mas-font-script);
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  line-height: 72px;
  text-transform: none;
}

.mshome-discover-description {
  max-width: 576px;
  margin: 24px 0 0;
  color: #5c4a3a;
  font-family: var(--mas-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

/* COMMON FOOD CARDS */

.mshome-food-card,
.mshome-menu-card {
  width: 279px;
  height: 394px;
  min-width: 279px;
  overflow: hidden;
  border: 1px solid #c2b4a3;
  border-radius: 40px;
  background: #d6c7b6;
  display: flex;
  flex: 0 0 279px;
  flex-direction: column;
  box-shadow: none;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.mshome-food-card:hover,
.mshome-menu-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.mshome-food-card-image,
.mshome-menu-card-image {
  width: 100%;
  height: 237px;
  overflow: hidden;
  position: relative;
  flex-shrink: 1;
  background: #23140d;
}

.mshome-food-card-image img,
.mshome-menu-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mshome-food-card:hover .mshome-food-card-image img,
.mshome-menu-card:hover .mshome-menu-card-image img {
  transform: scale(1.1);
}

.mshome-food-card-body,
.mshome-menu-card-body {
  min-height: 0;
  padding: 20px 24px 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.mshome-food-card-title,
.mshome-menu-card-title {
  max-width: none;
  margin: 0 0 12px;
  color: #402717;
  font-family: var(--mas-font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.mshome-food-card-text,
.mshome-menu-card-text {
  max-width: none;
  margin: 0;
  color: #4c382b;
  font-family: var(--mas-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
}

/* SIGNATURE MENU */

.mshome-signature {
  padding: 80px 0;
  background: #f7efe8;
}

.mshome-signature-head {
  margin-bottom: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.mshome-signature-head>div:first-child {
  width: 100%;
  max-width: 768px;
}

.mshome-signature-title {
  margin: 0;
  color: #402717;
  font-family: var(--mas-font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: -2.5px;
  text-transform: uppercase;
}

.mshome-signature-description {
  max-width: 672px;
  margin: 16px 0 0;
  color: #4c382b;
  font-family: var(--mas-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

.mshome-signature-head .mshome-button {
  width: 232px;
  height: 44px;
  min-height: 44px;
  margin-top: 8px;
  padding: 12px 32px;
  border: 0;
  border-radius: 4px;
  color: #402717;
  background: #e8caa2;
  gap: 12px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.4px;
}

.mshome-signature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
}


/* ==================================================
       LARGE LAPTOP
    ================================================== */

@media (max-width: 1399.98px) {

  .mshome-container {
    width: min(100% - 54px, 1220px);
  }

}


/* ==================================================
       IPAD PRO
    ================================================== */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .mshome-container {
    width: min(100% - 48px, 1040px);
  }

  .mshome-hero,
  .mshome-hero-inner {
    min-height: 610px;
  }

  .mshome-hero-title {
    font-size: 76px;
  }

}


/* ==================================================
       IPAD MINI / TABLET
    ================================================== */

@media (max-width: 991.98px) {

  .mshome-container {
    width: min(100% - 42px, 780px);
  }

  .mshome-hero,
  .mshome-hero-inner {
    min-height: 650px;
  }

  .mshome-hero-inner {
    padding-top: 70px;
    padding-bottom: 104px;
  }

  .mshome-hero-title {
    font-size: clamp(60px, 10vw, 82px);
  }

  .mshome-hero-contact {
    width: calc(100% - 42px);
    right: 21px;
    bottom: 22px;
    left: 21px;
  }

}


/* ==================================================
       MOBILE
    ================================================== */

@media (max-width: 767.98px) {

  .mshome-container {
    width: min(100% - 28px, 540px);
  }

  .mshome-hero,
  .mshome-hero-inner {
    min-height: 700px;
  }

  .mshome-hero-video {
    object-position: 57% center;
  }

  .mshome-hero-inner {
    padding: 65px 0 138px;
  }

  .mshome-hero-title {
    font-size: clamp(47px, 13.5vw, 65px);
    line-height: 1;
  }

  .mshome-hero-script {
    margin-top: 25px;
    font-size: clamp(55px, 18vw, 76px);
  }

  .mshome-hero-description {
    margin-top: 20px;
    font-size: 19px;
  }

  .mshome-hero-actions {
    margin-top: 27px;
    gap: 13px;
  }

  .mshome-button-light {
    width: min(100%, 260px);
    min-width: 0;
  }

  .mshome-hero-contact {
    width: calc(100% - 28px);
    right: 14px;
    bottom: 18px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .mshome-hero-contact-item {
    font-size: 9px;
  }

}


/* ==================================================
       SMALL MOBILE
    ================================================== */

@media (max-width: 380px) {

  .mshome-container {
    width: min(100% - 22px, 350px);
  }

  .mshome-hero,
  .mshome-hero-inner {
    min-height: 740px;
  }

  .mshome-hero-title {
    font-size: 44px;
  }

  .mshome-hero-description {
    font-size: 18px;
  }

}


/* Laptops: 1024px to 1279px */
@media (min-width: 1024px) and (max-width: 1279.98px) {
  .mshome-discover-grid {
    grid-template-columns:
      minmax(0, 1fr) minmax(0, 512px);
    gap: 64px;
  }

  .mshome-discover-copy {
    max-width: 512px;
  }

  .mshome-signature-grid {
    gap: 32px;
  }
}

/* Tablets below 1024px */
@media (max-width: 1023.98px) {

  .mshome-feature-strip .mshome-container,
  .mshome-discover .mshome-container,
  .mshome-signature .mshome-container {
    padding-inline: 24px;
  }

  .mshome-feature-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .mshome-feature-item,
  .mshome-feature-item:not(:last-child) {
    width: 100%;
    padding: 0;
  }

  .mshome-feature-item:not(:last-child)::after {
    display: none;
  }

  .mshome-discover-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mshome-discover-copy {
    max-width: 768px;
    margin-inline: auto;
    order: 1;
    text-align: center;
  }

  .mshome-discover-description {
    max-width: 768px;
    margin-right: auto;
    margin-left: auto;
  }

  .mshome-discover-cards {
    width: 100%;
    justify-content: center;
    order: 2;
  }

  .mshome-signature-head {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .mshome-signature-description {
    margin-right: auto;
    margin-left: auto;
  }

  .mshome-signature-head .mshome-button {
    display: none;
  }

  .mshome-signature-grid {
    justify-content: center;
    column-gap: 24px;
    row-gap: 32px;
  }
}

/* Tablets from 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023.98px) {

  .mshome-feature-strip,
  .mshome-discover,
  .mshome-signature {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mshome-discover-title,
  .mshome-signature-title {
    font-size: 48px;
    line-height: 60px;
  }

  .mshome-discover-title .mshome-script {
    font-size: 60px;
    line-height: 60px;
  }

  .mshome-discover-description,
  .mshome-signature-description {
    font-size: 18px;
    line-height: 29.25px;
  }
}

/* Devices from 640px to 767px */
@media (min-width: 640px) and (max-width: 767.98px) {

  .mshome-feature-strip,
  .mshome-discover,
  .mshome-signature {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mshome-signature-head {
    margin-bottom: 80px;
  }

  .mshome-discover-title,
  .mshome-signature-title {
    font-size: 36px;
    line-height: 45px;
  }

  .mshome-discover-title .mshome-script {
    font-size: 48px;
    line-height: 48px;
  }

  .mshome-discover-description {
    font-size: 18px;
    line-height: 29.25px;
  }

  .mshome-signature-description {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Phones below 640px */
@media (max-width: 639.98px) {

  .mshome-feature-strip .mshome-container,
  .mshome-discover .mshome-container,
  .mshome-signature .mshome-container {
    padding-inline: 16px;
  }

  .mshome-feature-strip,
  .mshome-discover,
  .mshome-signature {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .mshome-feature-item {
    gap: 24px;
  }

  .mshome-discover-cards {
    gap: 24px;
  }

  .mshome-signature-head {
    margin-bottom: 64px;
  }

  .mshome-discover-title,
  .mshome-signature-title {
    font-size: 30px;
    line-height: 37.5px;
  }

  .mshome-discover-title .mshome-script {
    font-size: 36px;
    line-height: 36px;
  }

  .mshome-discover-description {
    font-size: 16px;
    line-height: 26px;
  }

  .mshome-signature-description {
    font-size: 14px;
    line-height: 22.75px;
  }

  .mshome-food-card-title,
  .mshome-menu-card-title {
    font-size: 14px;
    line-height: 21px;
  }

  .mshome-food-card-text,
  .mshome-menu-card-text {
    font-size: 12px;
    line-height: 19.5px;
  }
}

/* ==================================================
       REDUCED MOTION
    ================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .mshome-menu-card,
  .mshome-food-card,
  .mshome-button,
  .mshome-menu-card img,
  .mshome-food-card img {
    transition: none !important;
  }

  .mshome-hero-video {
    animation: none !important;
  }

}


/*ABOUT-US SECTION STYLE CODE*/
:root {
  --masabout-dark: #160b06;
  --masabout-dark-soft: #24130c;
  --masabout-dark-panel: #32180f;
  --masabout-dark-panel-2: #3a1c11;
  --masabout-cream: #f4eee5;
  --masabout-cream-soft: #ebe2d6;
  --masabout-brown: #432a1d;
  --masabout-text: #685448;
  --masabout-gold: #cba35f;
  --masabout-gold-light: #edd1a0;
  --masabout-gold-dark: #98703a;
  --masabout-white: #fff8ee;
  --masabout-line: rgba(203, 163, 95, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--masabout-text);
  background: var(--masabout-cream);
  font-family: "Cormorant Garamond", serif;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.masabout-page {
  overflow: hidden;
}

.masabout-container {
  width: min(100% - 48px, 1260px);
  margin-inline: auto;
}


/* ==================================================
           HERO
        ================================================== */

.masabout-hero {
  min-height: 610px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: var(--masabout-white);
  background: var(--masabout-dark);
}

.masabout-hero-media,
.masabout-hero-shade {
  position: absolute;
  inset: 0;
}

.masabout-hero-media {
  z-index: -3;
}

.masabout-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.masabout-hero-shade {
  z-index: -2;
}

.masabout-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.42) 100%);
}

.masabout-hero-inner {
  min-height: 610px;
  padding: 78px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masabout-hero-content {
  width: min(100%, 800px);
  margin-inline: auto;
  text-align: center;
}

.masabout-hero-title {
  font-family: var(--mas-font-script);
  font-size: 128px;
  font-weight: 400;
  line-height: 160px;
  letter-spacing: 0;
}

.masabout-hero-description {
  font-family: var(--mas-font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0.6px;
}


/* ==================================================
           OUR STORY — MATCHES THE SECOND REFERENCE
        ================================================== */

.masabout-story-overlay-section {
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #1b0d07;
}


/* =========================================================
   FULL BACKGROUND IMAGE
========================================================= */

.masabout-story-overlay-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.masabout-story-overlay-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  /*
     * Keeps the spice design visible on the left.
     * Change this value when required.
     */
  object-position: center center;
}


/* =========================================================
   IMAGE SHADE

   Left side remains clear.
   Right side becomes darker for readable text.
========================================================= */

.masabout-story-overlay-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    linear-gradient(90deg,
      rgba(20, 9, 4, 0.05) 0%,
      rgba(20, 9, 4, 0.15) 28%,
      rgba(20, 9, 4, 0.60) 50%,
      rgba(20, 9, 4, 0.88) 70%,
      rgba(20, 9, 4, 0.94) 100%),
    linear-gradient(180deg,
      rgba(12, 5, 2, 0.16) 0%,
      rgba(12, 5, 2, 0.20) 50%,
      rgba(12, 5, 2, 0.36) 100%);
}


/* Subtle vignette */

.masabout-story-overlay-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(circle at 30% 50%,
      transparent 0%,
      transparent 35%,
      rgba(8, 3, 1, 0.25) 100%);
}


/* =========================================================
   SECTION INNER LAYOUT
========================================================= */

.masabout-story-overlay-inner {
  width: min(100% - 60px, 1400px);
  min-height: 680px;
  margin-inline: auto;
  padding: 75px 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}


/* =========================================================
   TEXT CONTENT
========================================================= */

.masabout-story-overlay-content {
  width: min(100%, 610px);
  margin-left: auto;
  padding-right: 25px;
  color: #fff8ef;
}

.masabout-hero-title {
  font-family: var(--mas-font-script);
  font-size: 128px;
  font-weight: 400;
  line-height: 160px;
  letter-spacing: 0;
}

.masabout-hero-description {
  font-family: var(--mas-font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0.6px;
}

.masabout-story-overlay-title {
  font-family: var(--mas-font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 1.5px;
}

.masabout-story-overlay-text {
  font-family: var(--mas-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
}

.masabout-story-overlay-text+.masabout-story-overlay-text {
  margin-top: 27px;
}


/* =========================================================
   STORY POINTS
========================================================= */

.masabout-story-overlay-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 18px;
}

.masabout-story-overlay-list li {
  color: #e7be78;
  display: flex;
  align-items: center;
  gap: 18px;

  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masabout-story-overlay-list i {
  width: 25px;
  color: #d8a958;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  font-size: 21px;
}


/* =========================================================
   IPAD PRO
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .masabout-story-overlay-section,
  .masabout-story-overlay-inner {
    min-height: 650px;
  }

  .masabout-story-overlay-inner {
    width: min(100% - 50px, 1100px);
  }

  .masabout-story-overlay-content {
    width: min(100%, 530px);
    padding-right: 0;
  }

  .masabout-story-overlay-title {
    font-size: 66px;
    margin-bottom: 30px;
  }

  .masabout-story-overlay-text {
    font-size: 21px;
  }

}


/* =========================================================
   IPAD MINI / TABLET
========================================================= */

@media (max-width: 991.98px) {

  .masabout-story-overlay-section,
  .masabout-story-overlay-inner {
    min-height: 650px;
  }

  .masabout-story-overlay-media img {
    object-position: 35% center;
  }

  .masabout-story-overlay-shade {
    background:
      linear-gradient(90deg,
        rgba(15, 7, 3, 0.18) 0%,
        rgba(15, 7, 3, 0.48) 35%,
        rgba(15, 7, 3, 0.88) 70%,
        rgba(15, 7, 3, 0.94) 100%);
  }

  .masabout-story-overlay-inner {
    width: min(100% - 42px, 820px);
    padding: 65px 0;
  }

  .masabout-story-overlay-content {
    width: min(100%, 500px);
    padding-right: 0;
  }

  .masabout-story-overlay-title {
    font-size: 62px;
  }

  .masabout-story-overlay-text {
    font-size: 20px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .masabout-story-overlay-section,
  .masabout-story-overlay-inner {
    min-height: 720px;
  }

  .masabout-story-overlay-media img {
    object-position: 32% center;
  }

  /*
     * On mobile the complete image becomes darker because
     * the text uses most of the screen width.
     */
  .masabout-story-overlay-shade {
    background:
      linear-gradient(180deg,
        rgba(14, 6, 3, 0.55) 0%,
        rgba(14, 6, 3, 0.72) 38%,
        rgba(14, 6, 3, 0.92) 100%),
      linear-gradient(90deg,
        rgba(14, 6, 3, 0.35),
        rgba(14, 6, 3, 0.76));
  }

  .masabout-story-overlay-inner {
    width: min(100% - 30px, 540px);
    padding: 65px 0;
    align-items: flex-end;
    justify-content: center;
  }

  .masabout-story-overlay-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .masabout-story-overlay-title {
    margin-bottom: 27px;
    font-size: clamp(48px, 15vw, 62px);
    text-align: center;
  }

  .masabout-story-overlay-text {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.45;
    text-align: center;
  }

  .masabout-story-overlay-list {
    width: fit-content;
    margin: 31px auto 0;
  }

  .masabout-story-overlay-list li {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .masabout-story-overlay-section,
  .masabout-story-overlay-inner {
    min-height: 760px;
  }

  .masabout-story-overlay-inner {
    width: min(100% - 22px, 350px);
  }

  .masabout-story-overlay-title {
    font-size: 46px;
  }

  .masabout-story-overlay-text {
    font-size: 18px;
  }

}

/* ==================================================
           PURPOSE AND FOUNDERS
        ================================================== */

.masabout-purpose {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 83% 8%,
      rgba(255, 255, 255, 0.64),
      transparent 30%),
    var(--masabout-cream);
}

.masabout-purpose-block {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.masabout-purpose-block+.masabout-purpose-block {
  margin-top: 86px;
}

.masabout-purpose-title {
  font-family: var(--mas-font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 1.2px;
}

.masabout-script-word {
  font-family: var(--mas-font-script);
}

.masabout-purpose-description {
  max-width: 790px;
  margin: 25px auto 0;
  color: var(--masabout-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(21px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.42;
}

.masabout-founder-description {
  max-width: 690px;
}


/* ==================================================
           CHEFS
        ================================================== */

.masabout-chefs {
  padding: 108px 0;
  color: var(--masabout-white);
  background:
    radial-gradient(circle at 50% 0%,
      rgba(105, 57, 31, 0.18),
      transparent 48%),
    var(--masabout-dark);
}

.masabout-chefs-content {
  max-width: 1160px;
  margin-inline: auto;
  text-align: center;
}

.masabout-chefs-title {
  margin: 0;
  color: var(--masabout-white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4.7vw, 55px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masabout-chefs-description {
  max-width: 850px;
  margin: 28px auto 0;
  color: rgba(255, 248, 238, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(21px, 1.6vw, 25px);
  font-weight: 500;
  line-height: 1.42;
}

.masabout-chefs-highlight {
  max-width: 1040px;
  margin: 60px auto 0;
  color: rgba(255, 248, 238, 0.94);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(21px, 1.7vw, 27px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}


/* ==================================================
           VALUES INTRODUCTION
        ================================================== */

.masabout-values-intro {
  padding: 82px 0 74px;
  text-align: center;
  background: var(--masabout-cream);
}

.masabout-values-intro-title {
  margin: 0;
  color: var(--masabout-brown);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4.7vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masabout-values-intro-text {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--masabout-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 500;
  line-height: 1.42;
}


/* ==================================================
           VALUES GRID
        ================================================== */

.masabout-values {
  padding: 88px 0 96px;
  color: var(--masabout-white);
  background:
    radial-gradient(circle at 50% 0%,
      rgba(101, 55, 30, 0.18),
      transparent 50%),
    var(--masabout-dark);
}

.masabout-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px;
}

.masabout-value-card {
  min-width: 0;
  text-align: center;
}

.masabout-value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;

  border: none;
  border-radius: 0;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
}

.masabout-value-title {
  margin: 0;
  color: var(--masabout-white);
  font-family: "Cinzel", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.masabout-value-description {
  max-width: 370px;
  margin: 23px auto 0;
  color: rgba(255, 248, 238, 0.75);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
}


/* ==================================================
           BACK TO TOP
        ================================================== */

.masabout-backtop {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--masabout-gold);
  color: #1d1009;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 27px;
  bottom: 27px;
  z-index: 1040;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(36, 20, 12, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.masabout-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.masabout-backtop:hover {
  color: #ffffff;
  background: var(--masabout-gold-dark);
}


/* ==================================================
           LARGE LAPTOP
        ================================================== */

@media (max-width: 1399.98px) {

  .masabout-container {
    width: min(100% - 54px, 1160px);
  }

  .masabout-story-content {
    padding-right: 60px;
    padding-left: 48px;
  }

  .masabout-story-title {
    font-size: 68px;
  }

  .masabout-story-text {
    font-size: 21px;
  }

}


/* ==================================================
           IPAD PRO
        ================================================== */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .masabout-container {
    width: min(100% - 46px, 1020px);
  }

  .masabout-hero,
  .masabout-hero-inner {
    min-height: 570px;
  }

  .masabout-story,
  .masabout-story-grid,
  .masabout-story-media,
  .masabout-spice-map,
  .masabout-story-content {
    min-height: 620px;
  }

  .masabout-story-grid {
    grid-template-columns: 49% 51%;
  }

  .masabout-story-content {
    padding: 56px 40px;
  }

  .masabout-story-title {
    margin-bottom: 27px;
    font-size: 59px;
  }

  .masabout-story-text {
    margin-bottom: 22px;
    font-size: 19px;
  }

  .masabout-story-list {
    margin-top: 28px;
    gap: 16px;
  }

  .masabout-values-grid {
    gap: 35px;
  }

}


/* ==================================================
           IPAD MINI / TABLET
        ================================================== */

@media (max-width: 991.98px) {

  .masabout-container {
    width: min(100% - 40px, 780px);
  }

  .masabout-hero,
  .masabout-hero-inner {
    min-height: 540px;
  }

  .masabout-story,
  .masabout-story-grid {
    min-height: 0;
  }

  .masabout-story-grid {
    grid-template-columns: 1fr;
  }

  .masabout-story-media,
  .masabout-spice-map {
    min-height: 560px;
  }

  .masabout-story-media::after {
    width: 100%;
    height: 32%;
    top: auto;
    right: 0;
    bottom: -1px;
    background:
      linear-gradient(180deg,
        transparent,
        var(--masabout-dark-panel));
  }

  .masabout-story-content {
    min-height: 0;
    padding: 68px 9vw 76px;
  }

  .masabout-story-copy {
    max-width: 720px;
  }

  .masabout-story-title {
    font-size: 66px;
  }

  .masabout-story-text {
    max-width: 690px;
    font-size: 22px;
  }

  .masabout-values-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .masabout-value-description {
    max-width: 560px;
  }

}


/* ==================================================
           MOBILE
        ================================================== */

@media (max-width: 767.98px) {

  .masabout-container {
    width: min(100% - 28px, 540px);
  }

  .masabout-hero,
  .masabout-hero-inner {
    min-height: 490px;
  }

  .masabout-hero-inner {
    padding: 65px 0;
  }

  .masabout-hero-title {
    font-size: clamp(76px, 26vw, 108px);
  }

  .masabout-hero-description {
    margin-top: 28px;
    font-size: 20px;
  }

  .masabout-story-media,
  .masabout-spice-map {
    min-height: 390px;
  }

  .masabout-spice-map img {
    object-position: center;
  }

  .masabout-story-content {
    padding: 54px 25px 61px;
  }

  .masabout-story-title {
    margin-bottom: 26px;
    font-size: clamp(49px, 15vw, 64px);
  }

  .masabout-story-text {
    margin-bottom: 21px;
    font-size: 19px;
  }

  .masabout-story-list {
    margin-top: 29px;
    gap: 17px;
  }

  .masabout-story-list-item {
    font-size: 11px;
    letter-spacing: 1.3px;
  }

  .masabout-purpose {
    padding: 65px 0 72px;
  }

  .masabout-purpose-block+.masabout-purpose-block {
    margin-top: 62px;
  }

  .masabout-chefs-title,
  .masabout-values-intro-title {
    font-family: var(--mas-font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
  }

  .masabout-chefs-description,
  .masabout-chefs-highlight,
  .masabout-purpose-description,
  .masabout-values-intro-text,
  .masabout-value-description {
    font-family: var(--mas-font-body);
  }

  .masabout-chefs {
    padding: 75px 0;
  }

  .masabout-chefs-highlight {
    margin-top: 42px;
    font-size: 20px;
  }

  .masabout-values-intro {
    padding: 64px 0 59px;
  }

  .masabout-values {
    padding: 70px 0 78px;
  }

  .masabout-value-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 25px;
    font-size: 37px;
  }

  .masabout-value-title {
    font-size: 20px;
  }

  .masabout-value-description {
    font-size: 18px;
  }

  .masabout-backtop {
    width: 52px;
    height: 52px;
    right: 17px;
    bottom: 17px;
    font-size: 22px;
  }

}


/* ==================================================
           SMALL MOBILE
        ================================================== */

@media (max-width: 380px) {

  .masabout-container {
    width: min(100% - 22px, 350px);
  }

  .masabout-story-media,
  .masabout-spice-map {
    min-height: 330px;
  }

  .masabout-story-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .masabout-story-title {
    font-size: 46px;
  }

  .masabout-story-text {
    font-size: 18px;
  }

}


/* ==================================================
           REDUCED MOTION
        ================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .masabout-backtop {
    transition: none;
  }

}

.masabout-story-overlay-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.masabout-story-overlay-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  color: #e7b968;
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masabout-story-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
}

.masabout-story-icon-image {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .masabout-story-overlay-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 15px;
    font-size: 12px;
  }

  .masabout-story-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .masabout-story-icon-image {
    width: 47px !important;
    height: 47px !important;
    max-width: 47px !important;
    max-height: 47px !important;
  }
}

@media (max-width: 991.98px) {
  .masabout-story-overlay-list {
    gap: 15px;
  }

  .masabout-story-overlay-list li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    font-size: 11.5px;
    letter-spacing: 1.6px;
  }

  .masabout-story-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .masabout-story-icon-image {
    width: 43px !important;
    height: 43px !important;
    max-width: 43px !important;
    max-height: 43px !important;
  }
}

@media (max-width: 767.98px) {
  .masabout-story-overlay-list {
    width: min(100%, 320px);
    margin: 30px auto 0;
  }

  .masabout-story-overlay-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    text-align: left;
  }

  .masabout-story-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .masabout-story-icon-image {
    width: 39px !important;
    height: 39px !important;
    max-width: 39px !important;
    max-height: 39px !important;
  }
}

@media (max-width: 380px) {
  .masabout-story-overlay-list li {
    font-size: 10.5px;
    letter-spacing: 1.25px;
  }
}

/* =========================================================
   MASALO VALUES SECTION
========================================================= */

.masabout-values {
  width: 100%;
  padding: 85px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%,
      rgba(88, 48, 28, 0.12),
      transparent 42%),
    #190b06;
}

.masabout-values .masabout-container {
  width: min(100% - 60px, 1400px);
  margin-inline: auto;
}


/* =========================================================
   VALUES GRID
========================================================= */

.masabout-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}


/* =========================================================
   VALUE CARD
========================================================= */

.masabout-value-card {
  min-width: 0;
  padding: 20px 55px 25px;
  position: relative;
  text-align: center;
}

.masabout-value-card:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 72%;
  position: absolute;
  top: 50%;
  right: 0;
  background:
    linear-gradient(180deg,
      transparent,
      rgba(214, 173, 105, 0.32),
      transparent);
  transform: translateY(-50%);
}


/* =========================================================
   NORMAL SVG ICON
========================================================= */

.masabout-value-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 30px;
  /* border: 1px solid rgba(235, 205, 159, 0.70); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.015);
}

.masabout-value-icon-image {
  width: 58px;
  height: 58px;
  max-width: 58px;
  display: block;
  object-fit: contain;
  object-position: center;
}


/* Prevent other image styles from affecting these icons */

.masabout-value-icon img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  min-width: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  box-shadow: none !important;
  transform: none;
}


/* =========================================================
   VALUE CONTENT
========================================================= */

.masabout-value-title {
  margin: 0;
  color: #f4e6d4;
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masabout-value-description {
  max-width: 340px;
  margin: 21px auto 0;
  color: rgba(255, 247, 237, 0.75);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}


/* =========================================================
   IPAD PRO
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .masabout-values {
    padding: 75px 0 82px;
  }

  .masabout-values .masabout-container {
    width: min(100% - 48px, 1080px);
  }

  .masabout-value-card {
    padding-inline: 32px;
  }

  .masabout-value-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 26px;
  }

  .masabout-value-icon-image,
  .masabout-value-icon img {
    width: 51px !important;
    height: 51px !important;
    max-width: 51px !important;
  }

  .masabout-value-title {
    font-size: 19px;
  }

  .masabout-value-description {
    font-size: 17px;
  }

}


/* =========================================================
   IPAD MINI / TABLET
========================================================= */

@media (max-width: 991.98px) {

  .masabout-values {
    padding: 68px 0 75px;
  }

  .masabout-values .masabout-container {
    width: min(100% - 42px, 800px);
  }

  .masabout-values-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .masabout-value-card {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
    padding: 46px 25px;
  }

  .masabout-value-card:first-child {
    padding-top: 10px;
  }

  .masabout-value-card:last-child {
    padding-bottom: 10px;
  }

  .masabout-value-card:not(:last-child)::after {
    width: 80%;
    height: 1px;
    top: auto;
    right: 10%;
    bottom: 0;
    background:
      linear-gradient(90deg,
        transparent,
        rgba(214, 173, 105, 0.35),
        transparent);
    transform: none;
  }

  .masabout-value-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
  }

  .masabout-value-icon-image,
  .masabout-value-icon img {
    width: 47px !important;
    height: 47px !important;
    max-width: 47px !important;
  }

  .masabout-value-title {
    font-size: 19px;
  }

  .masabout-value-description {
    max-width: 500px;
    font-size: 18px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .masabout-values {
    padding: 58px 0 65px;
  }

  .masabout-values .masabout-container {
    width: min(100% - 28px, 520px);
  }

  .masabout-value-card {
    padding: 40px 10px;
  }

  .masabout-value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 22px;
  }

  .masabout-value-icon-image,
  .masabout-value-icon img {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
  }

  .masabout-value-title {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .masabout-value-description {
    max-width: 390px;
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.45;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .masabout-values .masabout-container {
    width: min(100% - 22px, 350px);
  }

  .masabout-value-icon {
    width: 74px;
    height: 74px;
  }

  .masabout-value-icon-image,
  .masabout-value-icon img {
    width: 39px !important;
    height: 39px !important;
    max-width: 39px !important;
  }

  .masabout-value-title {
    font-size: 17px;
  }

  .masabout-value-description {
    font-size: 16px;
  }

}

/* ==================================================
   STAGE 8: ABOUT PAGE — FINAL CORRECTION OVERRIDES
   Only .masabout-* selectors are updated below.
================================================== */

/* About hero */
.masabout-hero {
  width: 100%;
  height: 80vh;
  min-height: 0;
  margin-top: 96px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #110a07;
}

.masabout-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.masabout-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.masabout-hero-shade,
.masabout-hero::after {
  display: none;
}

.masabout-hero-inner {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 48px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.masabout-hero-content {
  width: min(100%, 768px);
  margin-inline: auto;
  text-align: center;
}

.masabout-hero-title {
  margin: 0 0 24px;
  color: #e8caa2;
  font-family: var(--mas-font-script);
  font-size: 128px;
  font-weight: 400;
  line-height: 160px;
  letter-spacing: 0;
}

.masabout-hero-description {
  margin: 0;
  color: #e7e7e7;
  font-family: var(--mas-font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: .6px;
}

/* Our story */
.masabout-story-overlay-section {
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #1c110a;
}

.masabout-story-overlay-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #2c1a11;
}

.masabout-story-overlay-media img {
  width: 70%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}

.masabout-story-overlay-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(44, 26, 17, .6) 40%,
      #2c1a11 70%,
      #2c1a11 100%);
}

.masabout-story-overlay-section::after {
  content: none;
  display: none;
}

.masabout-story-overlay-inner {
  width: 100%;
  max-width: 1280px;
  min-height: 80vh;
  margin-inline: auto;
  padding: 128px 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.masabout-story-overlay-content {
  width: 50%;
  margin-left: auto;
  padding-left: 48px;
  padding-right: 0;
  color: #e7e7e7;
}

.masabout-story-overlay-title {
  margin: 0 0 32px;
  color: #e8caa2;
  font-family: var(--mas-font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.masabout-story-overlay-text {
  margin: 0;
  color: #e7e7e7;
  font-family: var(--mas-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
}

.masabout-story-overlay-text+.masabout-story-overlay-text {
  margin-top: 24px;
}

.masabout-story-overlay-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.masabout-story-overlay-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e8caa2;
  font-family: var(--mas-font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.masabout-story-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}

.masabout-story-icon-image {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  display: block;
  object-fit: contain;
}

/* Purpose and founders */
.masabout-purpose {
  min-height: 80vh;
  padding: 112px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eae4d9;
}

.masabout-purpose .masabout-container {
  width: 100%;
  max-width: 1280px;
  padding: 0 32px;
}

.masabout-purpose-block {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.masabout-purpose-block+.masabout-purpose-block {
  margin-top: 80px;
}

.masabout-purpose-title {
  margin: 0;
  color: #402717;
  font-family: var(--mas-font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.masabout-script-word {
  margin-inline: 8px;
  color: #9c784d;
  font-family: var(--mas-font-script);
  font-size: 72px;
  font-weight: 400;
  line-height: 72px;
  text-transform: none;
}

.masabout-purpose-description {
  max-width: 672px;
  margin: 24px auto 0;
  color: #4c382b;
  font-family: var(--mas-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

.masabout-purpose-block:nth-child(2) .masabout-purpose-title {
  font-size: 60px;
  line-height: 75px;
  letter-spacing: -1.5px;
}

.masabout-purpose-block:nth-child(2) .masabout-script-word {
  margin-right: 0;
  margin-left: 8px;
  font-size: 96px;
  line-height: 96px;
}

.masabout-founder-description {
  max-width: 512px;
  margin-top: 24px;
  color: #5c4a3a;
  font-size: 18px;
  line-height: 29.25px;
}

/* Chefs */
.masabout-chefs {
  padding: 128px 0;
  color: #fff;
  background: #1c110a;
}

.masabout-chefs-content {
  max-width: 1152px;
  margin-inline: auto;
  text-align: center;
}

.masabout-chefs-title {
  margin: 0;
  color: #f4ece3;
  font-family: var(--mas-font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 4.8px;
  text-transform: uppercase;
}

.masabout-chefs-description {
  max-width: 768px;
  margin: 24px auto 0;
  color: #bebebe;
  font-family: var(--mas-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  letter-spacing: .45px;
}

.masabout-chefs-highlight {
  max-width: 896px;
  margin: 64px auto 0;
  color: #f4ece3;
  font-family: var(--mas-font-body);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 29.25px;
  letter-spacing: .45px;
}

/* Values introduction */
.masabout-values-intro {
  padding: 80px 0 64px;
  text-align: center;
  background: #f5f0e8;
}

.masabout-values-intro-title {
  margin: 0 0 24px;
  color: #402717;
  font-family: var(--mas-font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.masabout-values-intro-text {
  max-width: 672px;
  margin: 0 auto;
  padding-inline: 24px;
  color: #4c382b;
  font-family: var(--mas-font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

/* Values cards */
.masabout-values {
  width: 100%;
  padding: 96px 0;
  color: #fff;
  background: #1c110a;
}

.masabout-values .masabout-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}

.masabout-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 80px;
  align-items: start;
}

.masabout-value-card {
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.masabout-value-card::after {
  content: none !important;
  display: none !important;
}

.masabout-value-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  border: 0;
  border-radius: 0;
  display: block;
  background: transparent;
}

.masabout-value-icon-image,
.masabout-value-icon img {
  width: 96px !important;
  height: 96px !important;
  max-width: 96px !important;
  display: block;
  object-fit: contain !important;
}

.masabout-value-title {
  margin: 0 0 16px;
  color: #f4ece3;
  font-family: var(--mas-font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masabout-value-description {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 16px;
  color: #bebebe;
  font-family: var(--mas-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
}

/* Stage 8 responsive corrections */
@media (max-width: 639.98px) {
  .masabout-hero {
    margin-top: 64px;
  }

  .masabout-hero-inner {
    margin-top: 64px;
  }

  .masabout-hero-title {
    font-size: 36px;
    line-height: 45px;
  }

  .masabout-hero-description {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .4px;
  }
}

@media (min-width: 640px) and (max-width: 767.98px) {
  .masabout-hero {
    margin-top: 88px;
  }

  .masabout-hero-inner {
    margin-top: 48px;
  }

  .masabout-hero-title {
    font-size: 72px;
    line-height: 90px;
  }

  .masabout-hero-description {
    font-size: 20px;
    line-height: 32.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .masabout-hero {
    margin-top: 96px;
  }

  .masabout-hero-title {
    font-size: 96px;
    line-height: 120px;
  }

  .masabout-hero-description {
    font-size: 24px;
    line-height: 39px;
  }
}

@media (max-width: 1023.98px) {
  .masabout-story-overlay-media img {
    width: 100%;
    object-position: center;
  }

  .masabout-story-overlay-shade {
    background: rgba(28, 17, 10, .78);
  }

  .masabout-story-overlay-inner {
    padding: 96px 32px;
    justify-content: center;
  }

  .masabout-story-overlay-content {
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
    padding: 0;
  }

  .masabout-purpose .masabout-container,
  .masabout-values .masabout-container {
    padding-inline: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .masabout-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
  }
}

@media (max-width: 767.98px) {

  .masabout-story-overlay-section,
  .masabout-story-overlay-inner {
    min-height: 80vh;
  }

  .masabout-story-overlay-inner {
    padding: 96px 24px;
  }

  .masabout-story-overlay-title {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 40px;
  }

  .masabout-story-overlay-text {
    font-size: 16px;
    line-height: 26px;
  }

  .masabout-story-overlay-list {
    margin-top: 40px;
  }

  .masabout-purpose {
    padding: 80px 0;
  }

  .masabout-purpose .masabout-container {
    padding-inline: 24px;
  }

  .masabout-purpose-title {
    font-size: 36px;
    line-height: 40px;
  }

  .masabout-script-word {
    font-size: 54px;
    line-height: 54px;
  }

  .masabout-purpose-description {
    font-size: 18px;
    line-height: 29.25px;
  }

  .masabout-purpose-block:nth-child(2) .masabout-purpose-title {
    font-size: 42px;
    line-height: 52px;
  }

  .masabout-purpose-block:nth-child(2) .masabout-script-word {
    font-size: 66px;
    line-height: 66px;
  }

  .masabout-chefs {
    padding: 96px 0;
  }

  .masabout-chefs-title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 3.6px;
  }

  .masabout-chefs-description,
  .masabout-chefs-highlight {
    font-size: 16px;
    line-height: 26px;
  }

  .masabout-values-intro {
    padding: 64px 0 48px;
  }

  .masabout-values-intro-title {
    font-size: 36px;
    line-height: 40px;
  }

  .masabout-values-intro-text {
    font-size: 14px;
    line-height: 22.75px;
  }

  .masabout-values {
    padding: 64px 0;
  }

  .masabout-values .masabout-container {
    padding-inline: 24px;
  }

  .masabout-values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 639.98px) {
  .masabout-story-overlay-title {
    font-size: 30px;
    line-height: 36px;
  }

  .masabout-purpose-title {
    font-size: 30px;
    line-height: 36px;
  }

  .masabout-script-word {
    font-size: 48px;
    line-height: 48px;
  }

  .masabout-purpose-block:nth-child(2) .masabout-purpose-title {
    font-size: 36px;
    line-height: 45px;
  }

  .masabout-purpose-block:nth-child(2) .masabout-script-word {
    font-size: 60px;
    line-height: 60px;
  }

  .masabout-chefs-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 3px;
  }
}

/*contact SECTION STYLE CODE*/
:root {
  --mscontact-header-offset: 72px;

  --mscontact-bg: #efe8de;
  --mscontact-bg-light: #f5efe7;
  --mscontact-white: #ffffff;

  --mscontact-brown: #59483c;
  --mscontact-brown-dark: #392c24;
  --mscontact-text: #6e5c4f;
  --mscontact-muted: #98a2b1;

  --mscontact-gold: #c9a160;
  --mscontact-gold-dark: #9e7742;

  --mscontact-dark: #352920;
  --mscontact-dark-soft: #4a403a;

  --mscontact-border: #ced3db;
  --mscontact-red: #ee3e49;
  --mscontact-green: #37875c;

  --mscontact-shadow:
    0 15px 35px rgba(67, 47, 32, 0.055);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--mscontact-text);
  background: var(--mscontact-bg);
  font-family: "Poppins", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}


/* ==================================================
           MAIN SECTION
        ================================================== */

.mscontact-section {
  width: 100%;
  min-height: 100vh;
  padding: 112px 32px 64px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg,
      #f5f0e8 0%,
      #efe7dc 55%,
      #ead8bb 100%);
}

.mscontact-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}


/* ==================================================
           PAGE HEADING
        ================================================== */

.mscontact-page-header {
  max-width: 1280px;
  margin: 0 auto 64px;
  text-align: center;
}

.mscontact-page-title {
  margin: 0 0 16px;
  color: #5c4a3a;
  font-family: "Cinzel", serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: normal;
  text-transform: none;
}

.mscontact-page-script {
  margin-left: 6px;
  color: var(--mscontact-gold);
  font-family: "Allura", cursive;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: none;
}

.mscontact-page-description {
  max-width: 672px;
  margin: 0 auto;
  padding-inline: 16px;
  color: #6b5a4a;
  font-family: "Hedvig Letters Serif", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}


/* ==================================================
           TWO-COLUMN LAYOUT
        ================================================== */

.mscontact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 40px;
}


/* ==================================================
           LEFT COLUMN
        ================================================== */

.mscontact-info-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mscontact-info-card {
  min-height: 98px;
  padding: 24px;
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(67, 47, 32, .08);
}

.mscontact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg,
      #c9a96e,
      #765c44);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.mscontact-info-icon-dark {
  background:
    linear-gradient(135deg,
      #7a6048,
      #574237);
}

.mscontact-info-title {
  margin: 0 0 8px;
  color: #3d3128;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.mscontact-info-link,
.mscontact-info-text {
  margin: 0;
  color: #5c4a3a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  text-decoration: none;
}

.mscontact-info-link {
  display: inline-block;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mscontact-info-link:hover {
  color: var(--mscontact-gold-dark);
  transform: translateX(3px);
}


/* ==================================================
           OPENING HOURS CARD
        ================================================== */

.mscontact-hours-card {
  min-height: 210px;
  padding: 24px;
  align-items: flex-start;
}

.mscontact-hours-card .mscontact-info-icon {
  margin-top: 1px;
}

.mscontact-hours-content {
  min-width: 0;
  padding-top: 3px;
}

.mscontact-hours-header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mscontact-hours-header .mscontact-info-title {
  margin: 0;
}

.mscontact-status {
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mscontact-status-open {
  color: var(--mscontact-green);
}

.mscontact-status-closed {
  color: var(--mscontact-red);
}

.mscontact-hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mscontact-hours-row {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns:
    minmax(80px, 1fr) minmax(180px, auto);
  align-items: start;
  gap: 18px;
  color: #68564a;
  font-size: 12px;
  line-height: 1.45;
}

.mscontact-hours-row:last-child {
  margin-bottom: 0;
}

.mscontact-hours-day {
  font-weight: 500;
}

.mscontact-hours-time {
  text-align: right;
}


/* ==================================================
           SOCIAL PANEL
        ================================================== */

.mscontact-social-panel {
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 16px;
  background:
    linear-gradient(135deg,
      #3d3128,
      #241b16);
  box-shadow: 0 15px 35px rgba(26, 17, 13, .16);
}

.mscontact-social-title {
  margin: 0 0 16px;
  color: #c9a96e;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.mscontact-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mscontact-social-link {
  min-height: 44px;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.mscontact-social-link:hover {
  color: #402717;
  background: #c9a96e;
  transform: scale(1.05);
}


/* ==================================================
           FORM CARD
        ================================================== */

.mscontact-form-card {
  min-height: 756px;
  height: 100%;
  padding: 40px;
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 24px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 50px rgba(67, 47, 32, .12);
}

.mscontact-form-title {
  margin: 0 0 12px;
  color: #5c4a3a;
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: normal;
  text-transform: none;
}

.mscontact-form-description {
  margin: 0 0 32px;
  color: #6b5a4a;
  font-family: "Hedvig Letters Serif", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.mscontact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mscontact-form-group {
  min-width: 0;
}

.mscontact-form-group-full {
  grid-column: 1 / -1;
}

.mscontact-label {
  margin: 0 0 8px;
  color: #5c4a3a;
  display: block;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: .35px;
  text-transform: none;
}

.mscontact-required {
  color: #ed5057;
}

.mscontact-input,
.mscontact-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 0;
  outline: none;
  color: #5c4a3a;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mscontact-input {
  height: 50px;
}

.mscontact-textarea {
  min-height: 170px;
  resize: none;
}

.mscontact-input::placeholder,
.mscontact-textarea::placeholder {
  color: var(--mscontact-muted);
  opacity: 1;
}

.mscontact-input:focus,
.mscontact-textarea:focus {
  border-color: var(--mscontact-gold);
  box-shadow:
    0 0 0 3px rgba(201, 161, 96, 0.12);
}


/* ==================================================
           SUBMIT BUTTON
        ================================================== */

.mscontact-submit {
  min-width: 180px;
  min-height: 56px;
  margin-top: 24px;
  padding: 16px 32px;
  border: 0;
  border-radius: 4px;
  outline: none;
  color: #402717;
  background: #e8caa2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.mscontact-submit:hover {
  color: #402717;
  background: #c9a96e;
  box-shadow: 0 15px 30px rgba(64, 39, 23, .2);
  transform: scale(1.05);
}


/* ==================================================
           FORM MESSAGES
        ================================================== */

.mscontact-alert {
  margin-bottom: 21px;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.5;
}

.mscontact-alert-success {
  border: 1px solid rgba(55, 135, 92, 0.24);
  background: rgba(55, 135, 92, 0.08);
  color: #2f744e;
}

.mscontact-alert-error {
  border: 1px solid rgba(238, 62, 73, 0.22);
  background: rgba(238, 62, 73, 0.07);
  color: #a8323a;
}

.mscontact-error-list {
  margin: 0;
  padding-left: 18px;
}

.mscontact-honeypot {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ==================================================
           TABLETS
        ================================================== */

@media (max-width: 1023.98px) {

  .mscontact-section {
    padding: 112px 24px 64px;
  }

  .mscontact-page-header {
    margin-bottom: 40px;
  }

  .mscontact-page-title {
    font-size: 58px;
  }

  .mscontact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mscontact-info-column {
    gap: 24px;
  }

  .mscontact-form-card {
    min-height: auto;
    padding: 32px;
  }
}


/* ==================================================
           MOBILE
        ================================================== */

@media (max-width: 639.98px) {

  .mscontact-section {
    padding: 96px 16px 48px;
  }

  .mscontact-page-header {
    margin-bottom: 40px;
  }

  .mscontact-page-title {
    font-size: clamp(45px, 14vw, 57px);
  }

  .mscontact-page-script {
    display: block;
    margin: 4px 0 0;
  }

  .mscontact-page-description {
    font-size: 18px;
  }

  .mscontact-layout {
    gap: 24px;
  }

  .mscontact-info-column {
    display: flex;
    gap: 16px;
  }

  .mscontact-info-card,
  .mscontact-hours-card,
  .mscontact-social-panel {
    padding: 20px;
  }

  .mscontact-info-card {
    grid-template-columns:
      47px minmax(0, 1fr);
    gap: 15px;
  }

  .mscontact-info-icon {
    width: 47px;
    height: 47px;
    font-size: 19px;
  }

  .mscontact-hours-card {
    min-height: 245px;
  }

  .mscontact-hours-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .mscontact-hours-row {
    grid-template-columns: 1fr;
    gap: 3px;
    margin-bottom: 13px;
  }

  .mscontact-hours-time {
    text-align: left;
  }

  .mscontact-form-card {
    padding: 20px;
    border-radius: 16px;
  }

  .mscontact-form-title {
    font-size: clamp(32px, 10vw, 39px);
  }

  .mscontact-form-description {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .mscontact-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mscontact-form-group-full {
    grid-column: auto;
  }

  .mscontact-submit {
    width: 100%;
  }
}


@media (max-width: 380px) {

  .mscontact-container {
    width: min(100% - 22px, 350px);
  }

  .mscontact-info-card {
    padding-right: 15px;
    padding-left: 15px;
  }

  .mscontact-form-card {
    padding-right: 16px;
    padding-left: 16px;
  }
}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .mscontact-section * {
    transition: none !important;
  }
}

/*PRIVATE-DINING SECTION STYLE CODE*/
:root {
  --mas-private-bg: #120906;
  --mas-private-bg-soft: #1a0d08;
  --mas-private-bg-deep: #0b0402;
  --mas-private-white: #fffaf5;
  --mas-private-text: #b6aaa1;
  --mas-private-gold: #cca45e;
  --mas-private-gold-light: #dfbd79;
  --mas-private-gold-dark: #9d7337;
  --mas-private-border: rgba(204, 164, 94, 0.42);
  --mas-private-white-border: rgba(255, 250, 245, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--mas-private-bg);
}


/* ================================================
           MAIN PRIVATE DINING SECTION
        ================================================= */

.mas-private-section {
  width: 100%;
  min-height: 850px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 52%,
      rgba(92, 54, 31, 0.16) 0%,
      rgba(48, 26, 16, 0.09) 35%,
      transparent 68%),
    linear-gradient(115deg,
      #130906 0%,
      #0d0503 48%,
      #160b07 100%);
}

.mas-private-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at center,
      transparent 0%,
      transparent 29%,
      rgba(0, 0, 0, 0.22) 100%);
}

.mas-private-section::after {
  content: "";
  width: 760px;
  height: 760px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle,
      rgba(145, 91, 49, 0.045) 0%,
      transparent 68%);
  transform: translate(-50%, -50%);
}

/* =========================================================
   PRIVATE DINING BOTTOM MASALO SIGNATURE
========================================================= */

/*
 * This creates enough space below the buttons and allows
 * the Masalo signature to stay inside the bordered container.
 */

.mas-private-container {
  position: relative;
  padding-bottom: 100px;
}


/* =========================================================
   COMPLETE SIGNATURE WRAPPER
========================================================= */

.mas-private-bottom-brand {
  width: min(360px, calc(100% - 40px));
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  transform: translateX(-50%);
}


/* =========================================================
   LEFT AND RIGHT DECORATIVE LINES
========================================================= */

.mas-private-bottom-line {
  width: 72px;
  height: 1px;
  display: block;
  flex: 0 0 72px;
}

.mas-private-bottom-line-left {
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(200, 153, 78, 0.55) 100%);
}

.mas-private-bottom-line-right {
  background:
    linear-gradient(90deg,
      rgba(200, 153, 78, 0.55) 0%,
      transparent 100%);
}


/* =========================================================
   MASALO TEXT
========================================================= */

.mas-private-bottom-name {
  color: rgba(200, 153, 78, 0.48);
  display: inline-block;

  font-family: "Cinzel", serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 8px;
  text-indent: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   IPAD PRO
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .mas-private-container {
    padding-bottom: 92px;
  }

  .mas-private-bottom-brand {
    width: min(330px, calc(100% - 40px));
    bottom: 19px;
    gap: 22px;
  }

  .mas-private-bottom-line {
    width: 62px;
    flex-basis: 62px;
  }

  .mas-private-bottom-name {
    font-size: 8px;
    letter-spacing: 7px;
    text-indent: 7px;
  }

}


/* =========================================================
   IPAD MINI / TABLET
========================================================= */

@media (max-width: 991.98px) {

  .mas-private-container {
    padding-bottom: 86px;
  }

  .mas-private-bottom-brand {
    width: min(300px, calc(100% - 36px));
    bottom: 18px;
    gap: 19px;
  }

  .mas-private-bottom-line {
    width: 54px;
    flex-basis: 54px;
  }

  .mas-private-bottom-name {
    font-size: 8px;
    letter-spacing: 6px;
    text-indent: 6px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .mas-private-container {
    padding-bottom: 78px;
  }

  .mas-private-bottom-brand {
    width: min(250px, calc(100% - 28px));
    bottom: 16px;
    gap: 14px;
  }

  .mas-private-bottom-line {
    width: 40px;
    flex-basis: 40px;
  }

  .mas-private-bottom-name {
    font-size: 7px;
    letter-spacing: 5px;
    text-indent: 5px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .mas-private-container {
    padding-bottom: 72px;
  }

  .mas-private-bottom-brand {
    width: min(220px, calc(100% - 22px));
    bottom: 15px;
    gap: 11px;
  }

  .mas-private-bottom-line {
    width: 34px;
    flex-basis: 34px;
  }

  .mas-private-bottom-name {
    font-size: 6.5px;
    letter-spacing: 4px;
    text-indent: 4px;
  }

}

/* ================================================
           CENTRED CONTENT
        ================================================= */

.mas-private-content {
  width: min(100%, 1000px);
  margin-inline: auto;
  text-align: center;
}


/* Small Label */

.mas-private-label {
  min-height: 28px;
  margin: 0 auto 30px;
  padding: 7px 22px 6px;
  border: 1px solid var(--mas-private-border);
  border-radius: 50px;
  color: var(--mas-private-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}


/* Main Heading */

.mas-private-title {
  margin: 0;
  color: var(--mas-private-white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(90px, 7.5vw, 130px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.mas-private-script {
  margin: 43px 0 0;
  color: var(--mas-private-gold);
  display: block;
  font-family: "Allura", cursive;
  font-size: clamp(90px, 8vw, 130px);
  font-weight: 400;
  line-height: 0.66;
  letter-spacing: 0;
  text-transform: none;
}


/* Decorative Divider */

.mas-private-divider {
  width: 95px;
  height: 1px;
  margin: 41px auto 28px;
  position: relative;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(204, 164, 94, 0.22),
      transparent);
}

.mas-private-divider::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 1px solid rgba(204, 164, 94, 0.38);
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%) rotate(45deg);
}


/* Coming Soon */

.mas-private-coming {
  margin: 0 0 13px;
  color: var(--mas-private-gold);
  font-family: "Allura", cursive;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.mas-private-description {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(221, 213, 206, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
}


/* ================================================
           ACTION BUTTONS
        ================================================= */

.mas-private-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.mas-private-button {
  min-width: 330px;
  min-height: 72px;
  padding: 19px 42px;
  border: 1px solid transparent;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.mas-private-button-primary {
  color: #160b06;
  border-color: var(--mas-private-gold);
  background:
    linear-gradient(135deg,
      #dfbd79 0%,
      #c7974f 100%);
  box-shadow:
    0 12px 30px rgba(204, 164, 94, 0.16);
}

.mas-private-button-primary:hover {
  color: #ffffff;
  border-color: var(--mas-private-gold-dark);
  background: var(--mas-private-gold-dark);
  box-shadow:
    0 16px 36px rgba(204, 164, 94, 0.23);
  transform: translateY(-4px);
}

.mas-private-button-outline {
  color: rgba(255, 250, 245, 0.92);
  border-color: var(--mas-private-white-border);
  background: rgba(255, 255, 255, 0.012);
}

.mas-private-button-outline:hover {
  color: #170b06;
  border-color: var(--mas-private-gold);
  background: var(--mas-private-gold);
  transform: translateY(-4px);
}

.mas-private-button:focus-visible {
  outline: 2px solid var(--mas-private-gold-light);
  outline-offset: 4px;
}


/* ================================================
           LARGE DESKTOP
        ================================================= */

@media (min-width: 1400px) {

  .mas-private-content {
    max-width: 900px;
  }

  .mas-private-description {
    max-width: 640px;
    font-size: 19px;
  }
}


/* ================================================
           IPAD PRO
        ================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .mas-private-section,
  .mas-private-container {
    min-height: 680px;
  }

  .mas-private-container {
    width: min(100% - 50px, 1080px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .mas-private-title {
    font-size: 87px;
  }

  .mas-private-script {
    margin-top: 40px;
    font-size: 91px;
  }

  .mas-private-description {
    max-width: 570px;
    font-size: 18px;
  }

  .mas-private-button {
    min-width: 250px;
    min-height: 58px;
    font-size: 13px;
  }
}


/* ================================================
           IPAD MINI AND TABLETS
        ================================================= */

@media (max-width: 991.98px) {

  .mas-private-section,
  .mas-private-container {
    min-height: 680px;
  }

  .mas-private-container {
    width: min(100% - 44px, 850px);
    padding: 72px 20px;
  }

  .mas-private-content {
    max-width: 690px;
  }

  .mas-private-label {
    margin-bottom: 30px;
  }

  .mas-private-title {
    font-size: clamp(70px, 11vw, 88px);
  }

  .mas-private-script {
    margin-top: 39px;
    font-size: clamp(76px, 12vw, 94px);
  }

  .mas-private-divider {
    margin-top: 39px;
  }

  .mas-private-description {
    max-width: 560px;
    font-size: 18px;
  }

  .mas-private-actions {
    gap: 20px;
  }

  .mas-private-button {
    min-width: 235px;
    min-height: 56px;
    padding-inline: 30px;
    font-size: 12px;
    letter-spacing: 4px;
  }
}


/* ================================================
           MOBILE
        ================================================= */

@media (max-width: 767.98px) {

  .mas-private-section,
  .mas-private-container {
    min-height: 650px;
  }

  .mas-private-container {
    width: min(100% - 28px, 560px);
    padding: 62px 14px;
  }

  .mas-private-label {
    min-height: 29px;
    margin-bottom: 30px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 7px;
    letter-spacing: 3px;
  }

  .mas-private-title {
    font-size: clamp(57px, 18vw, 76px);
    line-height: 0.84;
    letter-spacing: -2px;
  }

  .mas-private-script {
    margin-top: 37px;
    font-size: clamp(65px, 21vw, 86px);
  }

  .mas-private-divider {
    width: 80px;
    margin-top: 37px;
    margin-bottom: 26px;
  }

  .mas-private-coming {
    font-size: 37px;
  }

  .mas-private-description {
    max-width: 430px;
    font-size: 17px;
    line-height: 1.42;
  }

  .mas-private-actions {
    margin-top: 34px;
    flex-direction: column;
    gap: 14px;
  }

  .mas-private-button {
    width: min(100%, 285px);
    min-width: 0;
    min-height: 55px;
    padding: 15px 23px;
    font-size: 11px;
    letter-spacing: 3.5px;
  }
}


/* ================================================
           SMALL MOBILE
        ================================================= */

@media (max-width: 380px) {

  .mas-private-container {
    width: min(100% - 20px, 350px);
    padding-right: 7px;
    padding-left: 7px;
  }

  .mas-private-title {
    font-size: 52px;
  }

  .mas-private-script {
    margin-top: 34px;
    font-size: 64px;
  }

  .mas-private-description {
    font-size: 16px;
  }

  .mas-private-button {
    width: min(100%, 265px);
    font-size: 10px;
    letter-spacing: 3px;
  }
}


/* ================================================
           LANDSCAPE MOBILE
        ================================================= */

@media (max-height: 600px) and (orientation: landscape) {

  .mas-private-section,
  .mas-private-container {
    min-height: 540px;
  }

  .mas-private-container {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .mas-private-label {
    margin-bottom: 20px;
  }

  .mas-private-title {
    font-size: 59px;
  }

  .mas-private-script {
    margin-top: 28px;
    font-size: 64px;
  }

  .mas-private-divider {
    margin-top: 27px;
    margin-bottom: 18px;
  }

  .mas-private-coming {
    font-size: 31px;
  }

  .mas-private-description {
    font-size: 15px;
  }

  .mas-private-actions {
    margin-top: 23px;
    flex-direction: row;
  }

  .mas-private-button {
    width: auto;
    min-width: 205px;
    min-height: 48px;
  }
}


/* ================================================
           REDUCED MOTION
        ================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .mas-private-section * {
    transition: none !important;
  }
}

/* ================================================
   STAGE 10 — PRIVATE DINING FINAL CORRECTIONS
================================================ */

/* Complete 1021px desktop area */

.mas-private-section {
  width: 100%;
  min-height: 1021px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #110a07;
}

.mas-private-section::before,
.mas-private-section::after {
  display: none;
}

/* Main content positioning */

.mas-private-container {
  width: 100%;
  min-height: 1021px;
  margin: 0 auto;
  padding: 192px 0 128px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mas-private-content {
  width: min(100%, 720px);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

/* Exclusive Experience label */

.mas-private-label {
  width: auto;
  min-height: 42px;
  margin: 0 auto 32px;
  padding: 8px 24px;
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 999px;
  color: #c9a96e;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* Private title */

.mas-private-title {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 128px;
  font-weight: 400;
  line-height: 160px;
  letter-spacing: -6.4px;
  text-transform: uppercase;
}

/* Dining script word */

.mas-private-script {
  margin: 0;
  color: #c9a96e;
  display: block;
  font-family: "Dancing Script", cursive;
  font-size: 128px;
  font-style: italic;
  font-weight: 400;
  line-height: 160px;
  letter-spacing: normal;
  text-transform: none;
}

/* Divider below title */

.mas-private-divider {
  width: 128px;
  height: 1px;
  margin: 0 auto 48px;
  position: relative;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(201, 169, 110, .4),
      transparent);
}

.mas-private-divider::before {
  display: none;
}

/* Coming Soon heading */

.mas-private-coming {
  margin: 0 0 24px;
  color: #c9a96e;
  font-family: "Dancing Script", cursive;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 48px;
}

/* Description */

.mas-private-description {
  width: 100%;
  max-width: 672px;
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, .6);
  font-family: "Hedvig Letters Serif", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: normal;
}

/* Action buttons wrapper */

.mas-private-actions {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

/* Common button dimensions */

.mas-private-button {
  width: auto;
  min-width: 240px;
  min-height: 0;
  padding: 16px 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 4.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color .5s ease,
    background-color .5s ease,
    border-color .5s ease,
    box-shadow .5s ease,
    transform .5s ease;
}

/* Get In Touch button */

.mas-private-button-primary {
  color: #110a07;
  border: 0;
  background: #c9a96e;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(201, 169, 110, .2);
}

.mas-private-button-primary:hover {
  color: #110a07;
  border-color: #fff;
  background: #fff;
  transform: scale(1.05);
}

/* Back To Home button */

.mas-private-button-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .03);
  font-weight: 400;
}

.mas-private-button-outline:hover {
  color: #110a07;
  border-color: #fff;
  background: #fff;
  transform: scale(1.05);
}

/* Bottom Masalo signature */

.mas-private-bottom-brand {
  width: auto;
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: .2;
  transform: translateX(-50%);
}

.mas-private-bottom-line {
  width: 64px;
  height: 1px;
  display: block;
  flex: 0 0 64px;
  background: #c9a96e;
}

.mas-private-bottom-line-left,
.mas-private-bottom-line-right {
  background: #c9a96e;
}

.mas-private-bottom-name {
  color: #c9a96e;
  display: block;
  font-family: "Cinzel", serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 6.4px;
  text-indent: 6.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ================================================
   TABLET
================================================ */

@media (min-width: 768px) and (max-width: 991.98px) {

  .mas-private-section,
  .mas-private-container {
    min-height: 100vh;
  }

  .mas-private-container {
    padding: 192px 0 128px;
  }

  .mas-private-title,
  .mas-private-script {
    font-size: 128px;
    line-height: 160px;
  }
}

/* ================================================
   MOBILE
================================================ */

@media (max-width: 767.98px) {

  .mas-private-section,
  .mas-private-container {
    min-height: 100vh;
  }

  .mas-private-container {
    width: 100%;
    padding: 128px 0;
  }

  .mas-private-content {
    width: 100%;
    max-width: 540px;
    padding-inline: 24px;
  }

  .mas-private-label {
    min-height: 42px;
    margin-bottom: 32px;
    padding: 8px 18px;
    font-size: 9px;
    line-height: 14px;
    letter-spacing: 4px;
  }

  .mas-private-title {
    margin-bottom: 16px;
    font-size: 60px;
    line-height: 75px;
    letter-spacing: -3px;
  }

  .mas-private-script {
    margin: 0;
    font-size: 60px;
    line-height: 75px;
  }

  .mas-private-divider {
    width: 128px;
    margin-bottom: 48px;
  }

  .mas-private-coming {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 36px;
  }

  .mas-private-description {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 29.25px;
  }

  .mas-private-actions {
    flex-direction: column;
    gap: 24px;
  }

  .mas-private-button {
    width: auto;
    min-width: 240px;
    padding: 16px 40px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 4.2px;
  }

  .mas-private-bottom-brand {
    bottom: 48px;
    gap: 20px;
  }

  .mas-private-bottom-line {
    width: 44px;
    flex-basis: 44px;
  }
}

/* ================================================
   640PX–767PX
================================================ */

@media (min-width: 640px) and (max-width: 767.98px) {
  .mas-private-container {
    padding-top: 160px;
    padding-bottom: 128px;
  }

  .mas-private-title,
  .mas-private-script {
    font-size: 96px;
    line-height: 120px;
  }

  .mas-private-coming {
    font-size: 48px;
    line-height: 48px;
  }

  .mas-private-description {
    font-size: 20px;
    line-height: 32.5px;
  }

  .mas-private-actions {
    flex-direction: row;
  }
}

/*MENU SECTION STYLE CODE */
:root {
  --msmnu-bg: #f4eee5;
  --msmnu-bg-soft: #faf6f0;
  --msmnu-dark: #140a06;
  --msmnu-brown: #402b20;
  --msmnu-text: #675448;
  --msmnu-gold: #c79b52;
  --msmnu-gold-light: #e8cc9c;
  --msmnu-gold-dark: #987038;
  --msmnu-white: #fffaf3;
  --msmnu-shadow: 0 26px 62px rgba(58, 39, 24, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--msmnu-text);
  background: var(--msmnu-bg);
  font-family: "Cormorant Garamond", serif;
}

body.msmnu-modal-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.msmnu-main {
  width: 100%;
  overflow: hidden;
}

.msmnu-container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}


/* =========================================================
           HERO
        ========================================================= */

.msmnu-hero {
  min-height: 670px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: var(--msmnu-white);
  background: var(--msmnu-dark);
}

.msmnu-hero-media,
.msmnu-hero-shade {
  position: absolute;
  inset: 0;
}

.msmnu-hero-media {
  z-index: -3;
}

.msmnu-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.05) brightness(0.84);
}

.msmnu-hero-shade {
  z-index: -2;
  pointer-events: none;
  /* background:
    linear-gradient(90deg,
      rgba(18, 8, 4, 0.76) 0%,
      rgba(24, 13, 7, 0.51) 48%,
      rgba(13, 6, 3, 0.75) 100%),
    linear-gradient(180deg,
      rgba(8, 4, 2, 0.18) 0%,
      rgba(8, 4, 2, 0.31) 50%,
      rgba(8, 4, 2, 0.88) 100%); */
}

.msmnu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* background:
    radial-gradient(circle at 50% 42%,
      transparent 0%,
      transparent 31%,
      rgba(0, 0, 0, 0.42) 100%); */
}

.msmnu-hero-inner {
  min-height: 670px;
  padding: 70px 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msmnu-hero-content {
  width: min(100%, 1060px);
  margin-inline: auto;
  text-align: center;
}

.msmnu-hero-title {
  margin: 0;
  color: var(--msmnu-gold-light);
  font-family: "Allura", cursive;
  font-size: clamp(96px, 9vw, 145px);
  font-weight: 400;
  line-height: 0.82;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.msmnu-hero-description {
  max-width: 740px;
  margin: 28px auto 0;
  color: rgba(255, 250, 244, 0.94);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.32;
}

.msmnu-pdf-button {
  min-width: 290px;
  min-height: 62px;
  margin-top: 33px;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 4px;
  color: #21150e;
  background: rgba(246, 230, 208, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.msmnu-pdf-button i {
  font-size: 20px;
}

.msmnu-pdf-button:hover {
  color: #ffffff;
  border-color: var(--msmnu-gold-dark);
  background: var(--msmnu-gold-dark);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.23);
  transform: translateY(-3px);
}

.msmnu-category-wrap {
  margin-top: 47px;
}

.msmnu-category-label {
  margin: 0 0 22px;
  color: rgba(255, 250, 244, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.msmnu-category-label::before,
.msmnu-category-label::after {
  content: "";
  width: 46px;
  height: 1px;
}

.msmnu-category-label::before {
  background: linear-gradient(90deg, transparent, var(--msmnu-gold));
}

.msmnu-category-label::after {
  background: linear-gradient(90deg, var(--msmnu-gold), transparent);
}

.msmnu-tabs {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.msmnu-tab {
  min-height: 45px;
  padding: 11px 20px;
  border: 1px solid rgba(229, 198, 147, 0.48);
  border-radius: 0;
  outline: 0;
  color: #e6cfac;
  background: rgba(27, 14, 8, 0.27);
  font-family: "Cinzel", serif;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.msmnu-tab:hover,
.msmnu-tab.is-active {
  color: #2b1b11;
  border-color: #ead1a7;
  background: #ead1a7;
  transform: translateY(-2px);
}

.msmnu-tab:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}


/* =========================================================
           MENU SLIDER SECTION
        ========================================================= */

.msmnu-display {
  padding: 34px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 3%,
      rgba(255, 255, 255, 0.72),
      transparent 30%),
    linear-gradient(110deg,
      #f7f1e8 0%,
      #eee5d9 52%,
      #f7f1e8 100%);
}

.msmnu-display-header {
  margin-bottom: 22px;
  padding-inline: 20px;
  text-align: center;
}

.msmnu-display-title {
  margin: 0;
  color: var(--msmnu-brown);
  font-family: "Cinzel", serif;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.msmnu-display-line {
  width: 105px;
  height: 2px;
  margin: 19px auto 0;
  background:
    linear-gradient(90deg,
      transparent,
      var(--msmnu-gold),
      transparent);
}

.msmnu-slider {
  width: 100%;
  position: relative;
}

/*
         * Original uploaded menu image size: 1364 × 2048 px.
         * Display size on desktop: approximately 340–460 px wide,
         * preserving the original 1364:2048 portrait ratio.
         */
.msmnu-slider-stage {
  width: 100%;
  height: clamp(560px, 48vw, 735px);
  min-height: 560px;
  overflow: hidden;
  position: relative;
  perspective: 1500px;
  touch-action: pan-y;
  user-select: none;
}

.msmnu-card {
  width: clamp(340px, 29vw, 460px);
  height: auto;
  aspect-ratio: 1364 / 2048;
  padding: 0;
  border: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  cursor: pointer;
  transform:
    translate(-50%, -50%) scale(0.70);
  transform-origin: center;
  transition:
    opacity 0.58s ease,
    visibility 0.58s ease,
    filter 0.58s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.msmnu-card[data-position="0"] {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  filter: none;
  cursor: zoom-in;
  transform:
    translate(-50%, -50%) scale(1);
}

.msmnu-card[data-position="-1"],
.msmnu-card[data-position="1"] {
  z-index: 3;
  opacity: 0.42;
  visibility: visible;
  filter: grayscale(0.12) saturate(0.70);
}

.msmnu-card[data-position="-1"] {
  transform:
    translate(calc(-50% - min(38vw, 590px)), -50%) scale(0.84) rotateY(7deg);
}

.msmnu-card[data-position="1"] {
  transform:
    translate(calc(-50% + min(38vw, 590px)), -50%) scale(0.84) rotateY(-7deg);
}

.msmnu-card[data-position="-2"],
.msmnu-card[data-position="2"] {
  z-index: 1;
  opacity: 0.12;
  visibility: visible;
  filter: grayscale(0.45);
}

.msmnu-card[data-position="-2"] {
  transform:
    translate(calc(-50% - min(65vw, 980px)), -50%) scale(0.69);
}

.msmnu-card[data-position="2"] {
  transform:
    translate(calc(-50% + min(65vw, 980px)), -50%) scale(0.69);
}

.msmnu-card-frame {
  width: 100%;
  height: 100%;
  aspect-ratio: 1364 / 2048;
  overflow: hidden;
  display: block;
  position: relative;
  border: 4px solid #b58a47;
  background: #063b3a;
  box-shadow: var(--msmnu-shadow);
}

.msmnu-card-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.msmnu-card-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
  background:
    linear-gradient(180deg,
      transparent 45%,
      rgba(8, 4, 2, 0.76) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.msmnu-card[data-position="0"]:hover .msmnu-card-overlay,
.msmnu-card[data-position="0"]:focus-visible .msmnu-card-overlay {
  opacity: 1;
}

.msmnu-card-search {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #21150e;
  background: #ead2a9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.msmnu-card-view-text {
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.msmnu-card:focus-visible {
  outline: 3px solid var(--msmnu-gold-dark);
  outline-offset: 6px;
}

.msmnu-arrow {
  width: 66px;
  height: 66px;
  padding: 0;
  border: 1px solid rgba(199, 155, 82, 0.58);
  border-radius: 50%;
  outline: 0;
  color: #21140d;
  background: #ead1a5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 20;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(58, 39, 24, 0.17);
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.msmnu-arrow-prev {
  left: clamp(14px, 8vw, 135px);
}

.msmnu-arrow-next {
  right: clamp(14px, 8vw, 135px);
}

.msmnu-arrow:hover {
  color: #ffffff;
  border-color: var(--msmnu-gold-dark);
  background: var(--msmnu-gold-dark);
  transform: translateY(-50%) scale(1.06);
}

.msmnu-arrow:focus-visible {
  outline: 3px solid var(--msmnu-gold-dark);
  outline-offset: 4px;
}


/* =========================================================
           MODAL
        ========================================================= */

.msmnu-modal {
  background: rgba(0, 0, 0, 0.95);
}

.msmnu-modal .modal-dialog {
  max-width: none;
  margin: 0;
}

.msmnu-modal .modal-content {
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 45%,
      #19110d 0%,
      #080605 47%,
      #000000 100%);
}

.msmnu-modal-close {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  outline: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 25px;
  right: 28px;
  z-index: 30;
  font-size: 24px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s ease;
}

.msmnu-modal-close:hover {
  color: #1b1009;
  border-color: var(--msmnu-gold);
  background: var(--msmnu-gold);
  transform: rotate(90deg);
}

.msmnu-modal-inner {
  width: 100%;
  min-height: 100vh;
  padding: 88px 28px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.msmnu-modal-stage {
  width: min(100%, 1120px);
  min-height: 560px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(circle,
      rgba(45, 30, 20, 0.28),
      rgba(0, 0, 0, 0.13));
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.56);
}

.msmnu-modal-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 74vh;
  display: block;
  object-fit: contain;
  /* border: 4px solid #b58a47; */
  box-shadow: 0 25px 72px rgba(0, 0, 0, 0.56);
}

.msmnu-modal-download {
  min-width: 360px;
  min-height: 62px;
  margin-top: 30px;
  padding: 15px 28px;
  border: 1px solid var(--msmnu-gold);
  color: #21140c;
  background:
    linear-gradient(135deg,
      #dfbd79,
      #c79950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.msmnu-modal-download:hover {
  color: #ffffff;
  background: var(--msmnu-gold-dark);
  box-shadow: 0 15px 34px rgba(199, 155, 82, 0.18);
  transform: translateY(-3px);
}


/* =========================================================
           IPAD PRO
        ========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

  .msmnu-container {
    width: min(100% - 48px, 1080px);
  }

  .msmnu-hero,
  .msmnu-hero-inner {
    min-height: 650px;
  }

  .msmnu-hero-title {
    font-size: 115px;
  }

  .msmnu-tab {
    padding-inline: 16px;
    font-size: 9.5px;
  }

  .msmnu-slider-stage {
    height: 625px;
    min-height: 625px;
  }

  .msmnu-card {
    width: min(39vw, 400px);
    height: auto;
  }

  .msmnu-card[data-position="-1"] {
    transform:
      translate(calc(-50% - 44vw), -50%) scale(0.80) rotateY(6deg);
  }

  .msmnu-card[data-position="1"] {
    transform:
      translate(calc(-50% + 44vw), -50%) scale(0.80) rotateY(-6deg);
  }

  .msmnu-arrow-prev {
    left: 22px;
  }

  .msmnu-arrow-next {
    right: 22px;
  }
}


/* =========================================================
           IPAD MINI / TABLET
        ========================================================= */

@media (max-width: 991.98px) {

  .msmnu-container {
    width: min(100% - 40px, 800px);
  }

  .msmnu-hero,
  .msmnu-hero-inner {
    min-height: 690px;
  }

  .msmnu-hero-inner {
    padding-top: 66px;
  }

  .msmnu-hero-title {
    font-size: clamp(96px, 16vw, 116px);
  }

  .msmnu-hero-description {
    max-width: 650px;
    font-size: 24px;
  }

  .msmnu-tabs {
    max-width: 790px;
  }

  .msmnu-tab {
    padding: 10px 15px;
    font-size: 9.5px;
  }

  .msmnu-display {
    padding-top: 38px;
  }

  .msmnu-slider-stage {
    height: 585px;
    min-height: 585px;
  }

  .msmnu-card {
    width: min(44vw, 365px);
    height: auto;
  }

  .msmnu-card[data-position="-1"] {
    transform:
      translate(calc(-50% - 52vw), -50%) scale(0.77) rotateY(5deg);
  }

  .msmnu-card[data-position="1"] {
    transform:
      translate(calc(-50% + 52vw), -50%) scale(0.77) rotateY(-5deg);
  }

  .msmnu-card[data-position="-2"],
  .msmnu-card[data-position="2"] {
    opacity: 0;
    visibility: hidden;
  }

  .msmnu-arrow {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .msmnu-arrow-prev {
    left: 12px;
  }

  .msmnu-arrow-next {
    right: 12px;
  }

  .msmnu-modal-stage {
    width: min(100%, 820px);
    padding-inline: 20px;
  }
}


/* =========================================================
           MOBILE
        ========================================================= */

@media (max-width: 767.98px) {

  .msmnu-container {
    width: min(100% - 28px, 540px);
  }

  .msmnu-hero,
  .msmnu-hero-inner {
    min-height: 790px;
  }

  .msmnu-hero-inner {
    padding: 60px 0 34px;
  }

  .msmnu-hero-title {
    font-size: clamp(78px, 27vw, 106px);
  }

  .msmnu-hero-description {
    max-width: 470px;
    margin-top: 24px;
    font-size: 20px;
  }

  .msmnu-pdf-button {
    width: min(100%, 290px);
    min-width: 0;
    min-height: 57px;
    margin-top: 28px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .msmnu-category-wrap {
    margin-top: 38px;
  }

  .msmnu-category-label {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .msmnu-category-label::before,
  .msmnu-category-label::after {
    width: 26px;
  }

  .msmnu-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .msmnu-tab {
    width: 100%;
    min-height: 43px;
    padding: 9px 7px;
    font-size: 8.5px;
    letter-spacing: 0.45px;
  }

  .msmnu-display {
    padding: 42px 0 50px;
  }

  .msmnu-display-header {
    margin-bottom: 19px;
  }

  .msmnu-display-title {
    font-size: clamp(24px, 8vw, 34px);
    letter-spacing: 1px;
  }

  .msmnu-slider-stage {
    height: 485px;
    min-height: 485px;
  }

  .msmnu-card {
    width: min(76vw, 300px);
    height: auto;
  }

  .msmnu-card[data-position="-1"] {
    opacity: 0.25;
    transform:
      translate(calc(-50% - 72vw), -50%) scale(0.71);
  }

  .msmnu-card[data-position="1"] {
    opacity: 0.25;
    transform:
      translate(calc(-50% + 72vw), -50%) scale(0.71);
  }

  .msmnu-arrow {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .msmnu-arrow-prev {
    left: 5px;
  }

  .msmnu-arrow-next {
    right: 5px;
  }

  .msmnu-modal-close {
    width: 46px;
    height: 46px;
    top: 17px;
    right: 17px;
    font-size: 20px;
  }

  .msmnu-modal-inner {
    padding: 76px 12px 24px;
  }

  .msmnu-modal-stage {
    width: 100%;
    min-height: 70vh;
    padding: 18px 12px;
  }

  .msmnu-modal-image {
    max-height: 61vh;
  }

  .msmnu-modal-download {
    width: 100%;
    min-width: 0;
    min-height: 57px;
    margin-top: 24px;
    padding-inline: 16px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }
}


/* =========================================================
           SMALL MOBILE
        ========================================================= */

@media (max-width: 380px) {

  .msmnu-container {
    width: min(100% - 22px, 350px);
  }

  .msmnu-hero,
  .msmnu-hero-inner {
    min-height: 875px;
  }

  .msmnu-tabs {
    grid-template-columns: 1fr;
  }

  .msmnu-slider-stage {
    height: 475px;
    min-height: 475px;
  }

  .msmnu-card {
    height: 435px;
  }

  .msmnu-display-title {
    font-size: 24px;
  }
}


/* =========================================================
           REDUCED MOTION
        ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .msmnu-card,
  .msmnu-tab,
  .msmnu-arrow {
    transition: none !important;
  }
}


/* =========================================================
   STAGE 9 — FINAL MENU PAGE CORRECTIONS
========================================================= */

/* -------------------------
   HERO
------------------------- */

.msmnu-hero {
  min-height: 60vh;
  margin-top: 96px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #110a07;
}

.msmnu-hero-media,
.msmnu-hero-shade {
  position: absolute;
  inset: 0;
}

.msmnu-hero-media {
  z-index: -3;
  transform: scale(1.1);
  transform-origin: center;
}

.msmnu-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.msmnu-hero-shade,
.msmnu-hero::after {
  display: none;
}

.msmnu-hero-inner {
  width: 100%;
  max-width: none;
  min-height: 60vh;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msmnu-hero-content {
  width: 100%;
  max-width: 896px;
  margin-inline: auto;
  text-align: center;
}

.msmnu-hero-title {
  margin: 0 0 24px;
  color: #c9a96e;
  font-family: "Dancing Script", cursive;
  font-size: 128px;
  font-weight: 400;
  line-height: 128px;
  letter-spacing: 0;
  text-shadow: none;
}

.msmnu-hero-description {
  width: 100%;
  max-width: 672px;
  margin: 0 auto 48px;
  color: #f5f0e8;
  font-family: "Hedvig Letters Serif", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 32.5px;
  letter-spacing: .5px;
  opacity: .8;
}

/* -------------------------
   DOWNLOAD BUTTON
------------------------- */

.msmnu-pdf-button {
  min-width: 220px;
  min-height: 64px;
  margin: 0;
  padding: 20px 48px;
  border: 0;
  border-radius: 4px;
  color: #000;
  background: #d4c4b0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.msmnu-pdf-button i {
  font-size: 20px;
}

.msmnu-pdf-button:hover {
  color: #000;
  background: #c9a96e;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  transform: scale(1.05);
}

/* -------------------------
   CATEGORY HEADING AND TABS
------------------------- */

.msmnu-category-wrap {
  margin-top: 64px;
}

.msmnu-category-label {
  margin: 0 0 32px;
  color: rgba(231, 231, 231, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Hedvig Letters Serif", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.msmnu-category-label::before,
.msmnu-category-label::after {
  width: 48px;
  height: 1px;
}

.msmnu-tabs {
  width: 100%;
  max-width: 896px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.msmnu-tab {
  min-width: 120px;
  min-height: 42px;
  padding: 12px 24px;
  border: 1px solid rgba(232, 202, 162, .4);
  border-radius: 0;
  color: #e8caa2;
  background: transparent;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .7s ease;
}

.msmnu-tab:hover {
  color: #e8caa2;
  border-color: #e8caa2;
  background: rgba(232, 202, 162, .05);
  transform: scale(1.05);
}

.msmnu-tab.is-active {
  color: #402717;
  border-color: #e8caa2;
  background: #e8caa2;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(201, 169, 110, .3);
  transform: scale(1.05);
}

/* -------------------------
   MENU DISPLAY SECTION
------------------------- */

.msmnu-display {
  padding: 40px 0 128px;
  overflow: hidden;
  background: #f5f0e8;
}

.msmnu-display-header {
  margin-bottom: 40px;
  padding-inline: 16px;
  text-align: center;
}

.msmnu-display-title {
  margin: 0 0 16px;
  color: #1a110d;
  font-family: "Cinzel", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1.5px;
  text-transform: none;
}

.msmnu-display-line {
  width: 96px;
  height: 2px;
  margin: 0 auto;
  background: #c9a96e;
  opacity: .6;
}

/* -------------------------
   CAROUSEL IMAGE SIZE
------------------------- */

.msmnu-slider-stage {
  width: 100%;
  height: min(calc((40vw - 32px) * 1.4142857),
      678.86px);
  min-height: 0;
  overflow: visible;
  position: relative;
  perspective: none;
}

.msmnu-card {
  width: min(calc(40vw - 32px), 480px);
  height: auto;
  aspect-ratio: 21 / 29.7;
}

.msmnu-card-frame {
  width: 100%;
  height: 100%;
  aspect-ratio: 21 / 29.7;
  overflow: hidden;
  border: 6px solid #c9a96e;
  background: #063b3a;
  box-shadow: 0 25px 70px rgba(26, 17, 13, .3);
}

.msmnu-card-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* -------------------------
   CAROUSEL ARROWS
------------------------- */

.msmnu-arrow {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(139, 115, 85, .3);
  border-radius: 50%;
  color: #1a110d;
  background: #ebdabb;
  font-size: 28px;
}

.msmnu-arrow-prev {
  left: clamp(16px, 8vw, 128px);
}

.msmnu-arrow-next {
  right: clamp(16px, 8vw, 128px);
}

.msmnu-arrow:hover {
  color: #1a110d;
  border-color: #c9a96e;
  background: #c9a96e;
  transform: translateY(-50%) scale(1.1);
}

/* -------------------------
   TABLET
------------------------- */

@media (max-width: 1023.98px) {
  .msmnu-card {
    width: min(calc(60vw - 32px), 480px);
    height: auto;
  }

  .msmnu-slider-stage {
    height: min(calc((60vw - 32px) * 1.4142857),
        678.86px);
  }
}

/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 767.98px) {
  .msmnu-hero {
    min-height: 60vh;
    margin-top: 64px;
  }

  .msmnu-hero-inner {
    min-height: 60vh;
    padding: 80px 24px;
  }

  .msmnu-hero-title {
    font-size: 72px;
    line-height: 72px;
  }

  .msmnu-hero-description {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 29.25px;
  }

  .msmnu-pdf-button {
    min-height: 56px;
    padding: 16px 32px;
    font-size: 14px;
    line-height: 24px;
  }

  .msmnu-category-wrap {
    margin-top: 64px;
  }

  .msmnu-category-label {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .msmnu-tabs {
    display: flex;
    gap: 12px;
  }

  .msmnu-tab {
    width: auto;
    min-width: 120px;
    padding: 12px 24px;
    font-size: 12px;
  }

  .msmnu-display {
    padding: 40px 0 80px;
  }

  .msmnu-display-header {
    margin-bottom: 40px;
  }

  .msmnu-display-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1.2px;
  }

  .msmnu-card {
    width: min(calc(80vw - 16px), 480px);
    height: auto;
  }

  .msmnu-slider-stage {
    height: min(calc((80vw - 16px) * 1.4142857),
        678.86px);
    min-height: 0;
  }

  .msmnu-card-frame {
    border-width: 4px;
  }

  .msmnu-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* -------------------------
   LARGE MOBILE
------------------------- */

@media (min-width: 640px) and (max-width: 767.98px) {
  .msmnu-hero {
    margin-top: 88px;
  }

  .msmnu-hero-title {
    font-size: 96px;
    line-height: 96px;
  }

  .msmnu-hero-description {
    font-size: 20px;
    line-height: 32.5px;
  }

  .msmnu-pdf-button {
    min-height: 64px;
    padding: 20px 48px;
    font-size: 16px;
  }

  .msmnu-tabs {
    gap: 16px;
  }

  .msmnu-arrow {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

/* =========================================================
   STAGE 2 — LIVE MASALO FONT AND COLOUR SYSTEM
========================================================= */

:root {
  /* Typography */
  --mas-font-display: "Antic Didone", serif;
  --mas-font-heading: "Cinzel", serif;
  --mas-font-script: "Dancing Script", cursive;
  --mas-font-body: "Hedvig Letters Serif", serif;
  --mas-font-ui: "Inter", sans-serif;

  /* Verified live colours */
  --mas-color-darkest: #110a07;
  --mas-color-dark-section: #1c110a;
  --mas-color-footer: #190c06;

  --mas-color-gold: #c9a96e;
  --mas-color-gold-light: #e8caa2;

  --mas-color-cream: #f5f0e8;
  --mas-color-cream-dark: #eae4d9;
  --mas-color-cream-gold: #e8ded0;
  --mas-color-cream-soft: #f7efe8;

  --mas-color-heading: #402717;
  --mas-color-text: #4c382b;
  --mas-color-hero-heading: #e5ddc9;
  --mas-color-white: #ffffff;

  /* Existing header variable corrections */
  --mshd-bg: var(--mas-color-darkest);
  --mshd-bg-soft: var(--mas-color-darkest);
  --mshd-bg-mobile: var(--mas-color-darkest);
  --mshd-gold: var(--mas-color-gold);
  --mshd-gold-light: var(--mas-color-gold);
  --mshd-white: var(--mas-color-white);

  /* Existing footer variable corrections */
  --masalo-footer-bg: var(--mas-color-footer);
  --masalo-footer-bg-deep: var(--mas-color-footer);
  --masalo-footer-gold: var(--mas-color-gold);
  --masalo-footer-gold-light: var(--mas-color-gold);
  --masalo-footer-white: var(--mas-color-white);

  /* Homepage variables */
  --mshome-dark: var(--mas-color-darkest);
  --mshome-dark-soft: var(--mas-color-dark-section);
  --mshome-cream: var(--mas-color-cream-dark);
  --mshome-cream-deep: var(--mas-color-cream-gold);
  --mshome-brown: var(--mas-color-heading);
  --mshome-text: var(--mas-color-text);
  --mshome-gold: var(--mas-color-gold);
  --mshome-gold-light: var(--mas-color-gold-light);

  /* About variables */
  --masabout-dark: var(--mas-color-darkest);
  --masabout-dark-soft: var(--mas-color-dark-section);
  --masabout-cream: var(--mas-color-cream);
  --masabout-cream-soft: var(--mas-color-cream-dark);
  --masabout-brown: var(--mas-color-heading);
  --masabout-text: var(--mas-color-text);
  --masabout-gold: var(--mas-color-gold);
  --masabout-gold-light: var(--mas-color-gold-light);

  /* Contact variables */
  --mscontact-bg: var(--mas-color-cream);
  --mscontact-bg-light: var(--mas-color-cream-dark);
  --mscontact-brown: #5c4a3a;
  --mscontact-text: #6b5a4a;
  --mscontact-gold: var(--mas-color-gold);

  /* Private Dining variables */
  --mas-private-bg: var(--mas-color-darkest);
  --mas-private-bg-soft: var(--mas-color-darkest);
  --mas-private-gold: var(--mas-color-gold);
  --mas-private-gold-light: var(--mas-color-gold);

  /* Menu variables */
  --msmnu-bg: var(--mas-color-cream);
  --msmnu-bg-soft: var(--mas-color-cream-soft);
  --msmnu-dark: var(--mas-color-darkest);
  --msmnu-brown: var(--mas-color-heading);
  --msmnu-text: var(--mas-color-text);
  --msmnu-gold: var(--mas-color-gold);
  --msmnu-gold-light: var(--mas-color-gold-light);
}

/* Default interface typography */
body {

  .mshome-main,
  .masabout-page,
  .mscontact-section,
  .mas-private-section,
  .msmnu-main {
    font-family: var(--mas-font-body);
  }
}

/* Main paragraph typography */
.mshome-main,
.masabout-page,
.mscontact-section,
.mas-private-section,
.msmnu-main {
  font-family: var(--mas-font-body);
}

/* Antic Didone display typography */
.mshd-desktop-link,
.mshd-link-plus,
.mshd-mobile-link,
.mshome-hero-title {
  font-family: var(--mas-font-display);
}

/* Cinzel headings and buttons */
.mshome-title,
.mshome-eyebrow,
.mshome-button,
.mshome-hero-contact-item,
.mshome-feature-title,
.mshome-food-card-title,
.mshome-menu-card-title,

.masabout-story-overlay-title,
.masabout-story-overlay-list li,
.masabout-purpose-title,
.masabout-chefs-title,
.masabout-values-intro-title,
.masabout-value-title,

.mscontact-page-title,
.mscontact-info-title,
.mscontact-social-title,
.mscontact-form-title,

.mas-private-bottom-name,
.mas-private-label,
.mas-private-title,
.mas-private-button,

.msmnu-tab,
.msmnu-display-title,
.msmnu-card-view-text,
.msmnu-modal-download,

.mshd-mobile-contact-title,
.masaloFooter__heading {
  font-family: var(--mas-font-heading);
}

/* Dancing Script decorative words */
.mshome-script,
.mshome-hero-script,
.masabout-hero-title,
.masabout-script-word,
.mscontact-page-script,
.mas-private-script,
.mas-private-coming,
.msmnu-hero-title {
  font-family: var(--mas-font-script);
}

/* Hedvig paragraph typography */
.mshome-hero-description,
.mshome-feature-text,
.mshome-food-card-text,
.mshome-discover-description,
.mshome-signature-description,
.mshome-menu-card-text,

.masabout-hero-description,
.masabout-story-overlay-text,
.masabout-purpose-description,
.masabout-chefs-description,
.masabout-chefs-highlight,
.masabout-values-intro-text,
.masabout-value-description,

.mscontact-page-description,
.mscontact-info-text,
.mscontact-form-description,
.mscontact-label,

.mas-private-description,

.msmnu-hero-description,
.msmnu-category-label {
  font-family: var(--mas-font-body);
}

/* Inter interface typography */
.masaloFooter,
.masaloFooter__description,
.masaloFooter__contactLink,
.masaloFooter__link,
.masaloFooter__plus,
.mshd-mobile-contact-link,
.mscontact-input,
.mscontact-textarea,
.msmnu-pdf-button {

  font-family: var(--mas-font-display);
  /* background: var(--mas-footer-dark); */
}

/* Verified global backgrounds */

.masaloFooter {
  background: var(--mas-color-footer);
}

.mshome-feature-strip {
  background: var(--mas-cream-gold);
}

.mshome-discover {
  background: var(--mas-cream-dark);
}

.mshome-signature {
  background: var(--mas-cream-soft);
}

.masabout-page,
.masabout-purpose,
.masabout-values-intro {
  background: #eae4d9;
}

.masabout-story-overlay-section,
.masabout-chefs,
.masabout-values {
  background: var(--mas-color-dark-section);
}

.msmnu-main {
  background: var(--mas-color-cream);
}

.mas-private-section {
  background: var(--mas-color-darkest);
}

.mscontact-section {
  background:
    linear-gradient(135deg,
      var(--mas-color-cream) 0%,
      var(--mas-color-cream-dark) 50%,
      var(--mas-color-cream-gold) 100%);
}

/* Verified important text colours */
.mshome-hero-title {
  color: var(--mas-color-hero-heading);
  margin-top: 55px;
}

.mshome-hero-script,
.mas-private-coming {
  color: var(--mas-color-gold);
}

.masabout-hero-title,
.masabout-story-overlay-title {
  color: var(--mas-color-gold-light);
}
/*PRIVACY-POLICY SECTION STYLE CODE*/
:root {
    --msprivacy-dark: #150d09;
    --msprivacy-brown: #2b190f;
    --msprivacy-gold: #c9a96e;
    --msprivacy-cream: #f5f0e8;
    --msprivacy-white: #ffffff;
    --msprivacy-heading: #402717;
    --msprivacy-text: #594438;
    --msprivacy-muted: #79685c;
    --msprivacy-border: rgba(126, 98, 70, 0.2);
}

.msprivacy-body {
    margin: 0;
    color: var(--msprivacy-text);
    background: var(--msprivacy-cream);
    font-family: "Hedvig Letters Serif", Georgia, serif;
}

.msprivacy-body *,
.msprivacy-body *::before,
.msprivacy-body *::after {
    box-sizing: border-box;
}

.msprivacy-page {
    width: 100%;
    overflow: hidden;
    background: var(--msprivacy-cream);
}

.msprivacy-hero {
    padding: 150px 20px 82px;
    color: var(--msprivacy-white);
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(201, 169, 110, 0.14), transparent 45%),
        linear-gradient(135deg, var(--msprivacy-dark), var(--msprivacy-brown));
}

.msprivacy-hero .container {
    max-width: 900px;
}

.msprivacy-breadcrumb {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
}

.msprivacy-breadcrumb a {
    color: var(--msprivacy-gold);
    text-decoration: none;
}

.msprivacy-kicker {
    margin: 0 0 14px;
    color: var(--msprivacy-gold);
    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.msprivacy-hero h1 {
    margin: 0 0 18px;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 500;
    line-height: 1.15;
}

.msprivacy-hero-text {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.msprivacy-updated {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
}

.msprivacy-updated i {
    margin-right: 7px;
    color: var(--msprivacy-gold);
}

.msprivacy-content {
    padding: 68px 20px 90px;
}

.msprivacy-content .container {
    max-width: 980px;
}

.msprivacy-policy-box {
    padding: 46px 52px;
    border: 1px solid var(--msprivacy-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 55px rgba(64, 39, 23, 0.08);
}

.msprivacy-intro {
    margin-bottom: 8px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--msprivacy-border);
}

.msprivacy-intro p {
    margin: 0;
    color: var(--msprivacy-heading);
    font-size: 18px;
    line-height: 1.75;
}

.msprivacy-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--msprivacy-border);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 22px;
}

.msprivacy-item > span {
    color: var(--msprivacy-gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.msprivacy-item h2,
.msprivacy-contact h2 {
    margin: 0 0 11px;
    color: var(--msprivacy-heading);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(19px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.4;
}

.msprivacy-item p,
.msprivacy-contact p {
    margin: 0;
    color: var(--msprivacy-text);
    font-size: 16px;
    line-height: 1.8;
}

.msprivacy-item a {
    color: #785629;
    font-weight: 600;
    text-decoration-color: rgba(120, 86, 41, 0.35);
    text-underline-offset: 3px;
}

.msprivacy-contact {
    margin-top: 34px;
    padding: 22px 24px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.09);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.msprivacy-contact > i {
    margin-top: 3px;
    color: #89642f;
    font-size: 22px;
}

.msprivacy-contact h2 {
    font-size: 18px;
}

.msprivacy-contact p {
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .msprivacy-hero {
        padding: 120px 18px 64px;
    }

    .msprivacy-hero-text {
        font-size: 16px;
    }

    .msprivacy-content {
        padding: 44px 14px 65px;
    }

    .msprivacy-policy-box {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .msprivacy-item {
        padding: 27px 0;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .msprivacy-item > span {
        font-size: 12px;
    }

    .msprivacy-item p {
        font-size: 15px;
        line-height: 1.72;
    }
}

@media (max-width: 399.98px) {
    .msprivacy-policy-box {
        padding: 24px 18px;
    }

    .msprivacy-contact {
        padding: 19px;
    }
}
/*TERM-CONDITIONS SECTION STYLE CODE*/
:root {
  --msterms-dark: #110a07;
  --msterms-brown: #2a170d;
  --msterms-gold: #c9a96e;
  --msterms-cream: #f5f0e8;
  --msterms-white: #ffffff;
  --msterms-heading: #402717;
  --msterms-text: #4c382b;
  --msterms-muted: #746357;
  --msterms-border: rgba(139, 115, 85, 0.22);
}

.msterms-body {
  margin: 0;
  color: var(--msterms-text);
  background: var(--msterms-cream);
  font-family: "Hedvig Letters Serif", Georgia, serif;
}

.msterms-body *,
.msterms-body *::before,
.msterms-body *::after {
  box-sizing: border-box;
}

.msterms-page {
  width: 100%;
  overflow: hidden;
  background: var(--msterms-cream);
}

.msterms-hero {
  min-height: 390px;
  padding: 145px 24px 70px;
  color: var(--msterms-white);
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(201, 169, 110, 0.16), transparent 38%),
    linear-gradient(135deg, #110a07 0%, #1c110a 58%, #2a170d 100%);
}

.msterms-breadcrumb {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
}

.msterms-breadcrumb a {
  color: var(--msterms-gold);
  text-decoration: none;
}

.msterms-eyebrow {
  margin: 0 0 14px;
  color: var(--msterms-gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.msterms-hero h1 {
  margin: 0 0 18px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.15;
}

.msterms-hero-description {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.msterms-updated {
  margin: 18px 0 0;
  color: rgba(232, 202, 162, 0.82);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
}

.msterms-content-section {
  padding: 68px 20px 90px;
  background: linear-gradient(180deg, #eee7dc 0%, #f5f0e8 100%);
}

.msterms-content-container {
  max-width: 920px;
}

.msterms-document {
  padding: 48px 56px;
  border: 1px solid var(--msterms-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(64, 39, 23, 0.08);
}

.msterms-intro {
  margin-bottom: 34px;
  padding: 20px 22px;
  border-left: 3px solid var(--msterms-gold);
  background: rgba(201, 169, 110, 0.09);
}

.msterms-document section {
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--msterms-border);
}

.msterms-document section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.msterms-document h2 {
  margin: 0 0 12px;
  color: var(--msterms-heading);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(21px, 3vw, 27px);
  font-weight: 600;
  line-height: 1.4;
}

.msterms-document p {
  margin: 0;
  color: var(--msterms-text);
  font-size: 16px;
  line-height: 1.85;
}

.msterms-contact-section {
  padding: 26px !important;
  border: 1px solid rgba(201, 169, 110, 0.38) !important;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.09);
}

.msterms-contact-section address {
  margin: 16px 0 0;
  color: var(--msterms-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.msterms-contact-section strong {
  color: var(--msterms-heading);
}

.msterms-contact-section a {
  color: #79582c;
  font-weight: 600;
  text-decoration: none;
}

.msterms-contact-section a:hover {
  color: var(--msterms-heading);
}

@media (max-width: 767.98px) {
  .msterms-hero {
    min-height: 330px;
    padding: 120px 18px 54px;
  }

  .msterms-hero-description {
    font-size: 16px;
  }

  .msterms-content-section {
    padding: 42px 14px 60px;
  }

  .msterms-document {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .msterms-document section {
    margin-bottom: 23px;
    padding-bottom: 23px;
  }

  .msterms-document p {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 399.98px) {
  .msterms-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .msterms-document {
    padding: 24px 17px;
  }

  .msterms-intro,
  .msterms-contact-section {
    padding: 18px !important;
  }
}
/* =========================================================
   MASALO HOMEPAGE FAQ ACCORDION
========================================================= */

.mshome-faq {
  position: relative;
  padding: 105px 0;
  background: #f5efe7;
  overflow: hidden;
}

.mshome-faq .mshome-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mshome-faq-heading {
  margin-bottom: 48px;
}

.mshome-faq-eyebrow {
  margin: 0 0 10px;
  color: #a27b4b;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#mshomeFaqTitle {
  max-width: 760px;
  margin: 0;
  color: #2b1c13;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.mshome-faq-accordion {
  max-width: 980px;
  margin-left: auto;
}

.mshome-faq-item {
  border: 0;
  border-top: 1px solid rgba(43, 28, 19, 0.16);
  border-radius: 0 !important;
  background: transparent;
}

.mshome-faq-item:last-child {
  border-bottom: 1px solid rgba(43, 28, 19, 0.16);
}

.mshome-faq-item .accordion-header {
  margin: 0;
}

.mshome-faq-item .accordion-button {
  position: relative;
  min-height: 92px;
  padding: 26px 58px 26px 0;
  border: 0;
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none;
  color: #322016;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
}

.mshome-faq-item .accordion-button:not(.collapsed) {
  background: transparent;
  color: #322016;
  box-shadow: none;
}

.mshome-faq-item .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.mshome-faq-item .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 34px;
  height: 34px;
  margin: 0;
  background-image: none;
  transform: translateY(-50%);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.mshome-faq-item .accordion-button::before,
.mshome-faq-item .accordion-button::after {
  content: "";
  position: absolute;
  background: #a27b4b;
}

.mshome-faq-item .accordion-button::before {
  top: 50%;
  right: 10px;
  width: 18px;
  height: 1px;
  transform: translateY(-50%);
}

.mshome-faq-item .accordion-button::after {
  top: 50%;
  right: 18.5px;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
}

.mshome-faq-item .accordion-button:not(.collapsed)::after {
  transform:
    translateY(-50%)
    rotate(90deg);
  opacity: 0;
}

.mshome-faq-item .accordion-collapse {
  border: 0;
}

.mshome-faq-item .accordion-body {
  max-width: 790px;
  padding: 0 58px 28px 0;
  color: rgba(50, 32, 22, 0.76);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}

/* Tablet */
@media (max-width: 991.98px) {
  .mshome-faq {
    padding: 82px 0;
  }

  .mshome-faq-heading {
    margin-bottom: 38px;
  }

  .mshome-faq-accordion {
    max-width: 100%;
  }

  .mshome-faq-item .accordion-button {
    min-height: 82px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .mshome-faq {
    padding: 65px 0;
  }

  .mshome-faq .mshome-container {
    width: min(100% - 28px, 1180px);
  }

  .mshome-faq-heading {
    margin-bottom: 30px;
  }

  #mshomeFaqTitle {
    font-size: 34px;
  }

  .mshome-faq-item .accordion-button {
    min-height: 76px;
    padding: 22px 44px 22px 0;
    font-size: 24px;
  }

  .mshome-faq-item .accordion-button::before {
    right: 4px;
    width: 16px;
  }

  .mshome-faq-item .accordion-button::after {
    right: 11.5px;
    height: 16px;
  }

  .mshome-faq-item .accordion-body {
    padding: 0 38px 22px 0;
    font-size: 14px;
    line-height: 1.75;
  }
}

/* Small mobile */
@media (max-width: 479.98px) {
  .mshome-faq {
    padding: 56px 0;
  }

  #mshomeFaqTitle {
    font-size: 30px;
  }

  .mshome-faq-item .accordion-button {
    font-size: 21px;
  }
}
/* =========================================================
   MASALO 404 PAGE
========================================================= */

.mas404-body {
  margin: 0;
  background: #130b07;
}

.mas404-main {
  min-height: 100vh;
}

.mas404-section {
  position: relative;
  min-height: 760px;
  padding: 180px 0 130px;
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(179, 133, 76, 0.16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #130b07 0%,
      #1c100a 55%,
      #0d0705 100%
    );
  overflow: hidden;
}

.mas404-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mas404-number {
  margin: 0 0 -28px;
  color: rgba(206, 165, 105, 0.1);
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(150px, 25vw, 330px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.06em;
  user-select: none;
}

.mas404-eyebrow {
  margin: 0 0 18px;
  color: #cda568;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mas404-title {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #f5ecdf;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mas404-description {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(245, 236, 223, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.mas404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.mas404-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 184px;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid #cda568;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.mas404-button:hover {
  transform: translateY(-2px);
}

.mas404-button-primary {
  background: #cda568;
  color: #160d08;
}

.mas404-button-primary:hover {
  background: #dfbd88;
  color: #160d08;
}

.mas404-button-outline {
  background: transparent;
  color: #f5ecdf;
}

.mas404-button-outline:hover {
  background: #cda568;
  color: #160d08;
}

.mas404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  color: rgba(205, 165, 104, 0.52);
}

.mas404-links a {
  color: rgba(245, 236, 223, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mas404-links a:hover {
  color: #cda568;
}

.mas404-decoration {
  position: absolute;
  border: 1px solid rgba(205, 165, 104, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.mas404-decoration-one {
  top: 90px;
  left: -160px;
  width: 390px;
  height: 390px;
}

.mas404-decoration-two {
  right: -130px;
  bottom: -160px;
  width: 430px;
  height: 430px;
}

@media (max-width: 767.98px) {
  .mas404-section {
    min-height: 680px;
    padding: 135px 0 90px;
  }

  .mas404-number {
    margin-bottom: -14px;
  }

  .mas404-title {
    font-size: 43px;
  }

  .mas404-description {
    font-size: 15px;
  }

  .mas404-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .mas404-button {
    width: 100%;
  }
}
.mshome-restaurant-intro {
  padding: 100px 0;
  background: #fffaf4;
}

.mshome-restaurant-intro .mshome-container {
  max-width: 960px;
}

.mshome-restaurant-intro h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #2c1d14;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.15;
}

.mshome-restaurant-intro p {
  max-width: 850px;
  margin: 0 0 18px;
  color: rgba(44, 29, 20, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.mshome-restaurant-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  .mshome-restaurant-intro {
    padding: 68px 0;
  }

  .mshome-restaurant-intro-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================================
   FOOTER SOCIAL PROFILES
========================================================= */

.masaloFooter__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.masaloFooter__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--masalo-footer-gold);
  background: transparent;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.masaloFooter__social a:hover {
  color: var(--masalo-footer-bg);
  background: var(--masalo-footer-gold);
  border-color: var(--masalo-footer-gold);
  transform: translateY(-2px);
}

.masaloFooter__social a:focus-visible {
  outline: 2px solid var(--masalo-footer-gold-light);
  outline-offset: 4px;
}

@media (max-width: 767.98px) {
  .masaloFooter__social {
    margin-top: 22px;
  }

  .masaloFooter__social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/* =========================================================
   COMPACT VISIT NOTE
========================================================= */

.mshome-visit-note {
  padding: 72px 0;
  background: #1b100a;
}

.mshome-visit-note-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.mshome-visit-note-copy {
  max-width: 820px;
}

.mshome-visit-note .mshome-eyebrow {
  margin-bottom: 14px;
  color: #c9a96e;
}

.mshome-visit-note h2 {
  margin: 0 0 18px;
  color: #f5ecdf;
  font-family: var(--mas-font-heading, "Cinzel", serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.mshome-visit-note p {
  margin: 0;
  color: rgba(245, 236, 223, 0.72);
  font-family: var(--mas-font-ui, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.8;
}

.mshome-visit-note-action {
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .mshome-visit-note {
    padding: 56px 0;
  }

  .mshome-visit-note-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .mshome-visit-note-action,
  .mshome-visit-note-action .mshome-button {
    width: 100%;
  }
}