:root {
  --mobile-bottom-nav-height: 4.4rem;
  --mobile-bottom-nav-icon-size: 1.52rem;
  --mobile-bottom-nav-float-inset: 0;
  --mobile-bottom-nav-surface: #fbf5f6;
  --mobile-bottom-nav-ink: #2a2224;
  --mobile-bottom-nav-muted: rgba(42, 34, 36, 0.52);
  --mobile-bottom-nav-plum: #5c3d4a;
  --mobile-bottom-nav-rose: #e8b4b8;
  --mobile-bottom-nav-active-bg: rgba(232, 180, 184, 0.24);
  --mobile-bottom-nav-hover-bg: rgba(232, 180, 184, 0.12);
  --mobile-bottom-nav-theme: #c9a962;
  --mobile-chrome-bottom: calc(
    var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px)
  );
}

.mobile-bottom-nav,
.mobile-more-sheet {
  display: none;
}

@media (max-width: 1199.98px) {
  body.site-has-mobile-bottom-nav {
    --mobile-bottom-nav-float-inset: 0;
    --mobile-chrome-bottom: calc(
      var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px)
    );
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    padding-top: 0;
    background: transparent;
    border: none;
    overflow: visible;
    pointer-events: none;
  }

  .mobile-bottom-nav__toolbar {
    position: relative;
    min-height: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    padding:
      0.22rem
      max(0.12rem, env(safe-area-inset-right, 0px))
      calc(0.12rem + env(safe-area-inset-bottom, 0px))
      max(0.12rem, env(safe-area-inset-left, 0px));
    background: var(--mobile-bottom-nav-surface);
    border: none;
    border-top: 1px solid rgba(92, 61, 74, 0.1);
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(92, 61, 74, 0.08);
    overflow: visible;
    pointer-events: auto;
    isolation: isolate;
    box-sizing: border-box;
  }

  .mobile-bottom-nav__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    height: calc(var(--mobile-bottom-nav-height) - 0.34rem);
    position: relative;
    z-index: 1;
  }

  .mobile-bottom-nav__cell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
    height: 100%;
    padding: 0;
  }

  .mobile-bottom-nav__item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    max-width: 5rem;
    height: 100%;
    margin: 0 auto;
    padding: 0.3rem 0.08rem 0.2rem;
    border: none;
    border-radius: 0.65rem;
    background: transparent;
    color: var(--mobile-bottom-nav-muted);
    font-family: 'Jost', system-ui, sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition:
      background-color 0.25s ease,
      color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }

  .mobile-bottom-nav__icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--mobile-bottom-nav-muted);
    transition: color 0.25s ease;
  }

  .mobile-bottom-nav__label {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.58rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: var(--mobile-bottom-nav-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
  }

  .mobile-bottom-nav__icon i {
    font-size: 1.32rem;
    line-height: 1;
  }

  .mobile-bottom-nav__icon--home,
  .mobile-bottom-nav__icon--menu,
  .mobile-bottom-nav__icon--book,
  .mobile-bottom-nav__icon--gallery,
  .mobile-bottom-nav__icon--more {
    width: var(--mobile-bottom-nav-icon-size);
    height: var(--mobile-bottom-nav-icon-size);
    background-color: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
  }

  .mobile-bottom-nav__icon--home {
    -webkit-mask-image: url('/images/mobile-nav-home.png');
    mask-image: url('/images/mobile-nav-home.png');
  }

  .mobile-bottom-nav__icon--menu {
    -webkit-mask-image: url('/images/mobile-nav-menu.png');
    mask-image: url('/images/mobile-nav-menu.png');
  }

  .mobile-bottom-nav__icon--gallery {
    -webkit-mask-image: url('/images/mobile-nav-gallery.png');
    mask-image: url('/images/mobile-nav-gallery.png');
  }

  .mobile-bottom-nav__icon--more {
    -webkit-mask-image: url('/images/mobile-nav-more.png');
    mask-image: url('/images/mobile-nav-more.png');
  }

  .mobile-bottom-nav__icon--book {
    -webkit-mask-image: url('/images/mobile-nav-book.png');
    mask-image: url('/images/mobile-nav-book.png');
  }

  .mobile-bottom-nav__item.is-active,
  .mobile-bottom-nav__item--more.is-open {
    background: var(--mobile-bottom-nav-active-bg);
    color: var(--mobile-bottom-nav-ink);
    box-shadow: inset 0 0 0 1px rgba(92, 61, 74, 0.1);
  }

  .mobile-bottom-nav__item.is-active .mobile-bottom-nav__icon,
  .mobile-bottom-nav__item.is-active .mobile-bottom-nav__label,
  .mobile-bottom-nav__item--more.is-open .mobile-bottom-nav__icon,
  .mobile-bottom-nav__item--more.is-open .mobile-bottom-nav__label {
    color: var(--mobile-bottom-nav-plum);
  }

  .mobile-bottom-nav__item.is-active .mobile-bottom-nav__label,
  .mobile-bottom-nav__item--more.is-open .mobile-bottom-nav__label {
    font-weight: 600;
  }

  .mobile-bottom-nav__item:hover,
  .mobile-bottom-nav__item:focus-visible {
    outline: none;
  }

  .mobile-bottom-nav__item:not(.is-active):not(.is-open):hover,
  .mobile-bottom-nav__item:not(.is-active):not(.is-open):focus-visible {
    background: var(--mobile-bottom-nav-hover-bg);
  }

  .mobile-bottom-nav__item:not(.is-active):not(.is-open):hover .mobile-bottom-nav__icon,
  .mobile-bottom-nav__item:not(.is-active):not(.is-open):focus-visible .mobile-bottom-nav__icon,
  .mobile-bottom-nav__item:not(.is-active):not(.is-open):hover .mobile-bottom-nav__label,
  .mobile-bottom-nav__item:not(.is-active):not(.is-open):focus-visible .mobile-bottom-nav__label {
    color: var(--mobile-bottom-nav-ink);
  }

  .mobile-more-sheet {
    --mobile-more-ink: #1a1416;
    --mobile-more-muted: rgba(26, 20, 22, 0.52);
    --mobile-more-gold: #c9a962;
    --mobile-more-gold-deep: #a8863f;
    --mobile-more-cream: #f7f3ee;
    --mobile-more-ivory: #fffdf9;
    --mobile-more-font-sans: 'Jost', system-ui, sans-serif;
    --mobile-more-font-serif: 'EB Garamond', Georgia, serif;
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1065;
    pointer-events: none;
    visibility: hidden;
    font-family: var(--mobile-more-font-sans);
  }

  .mobile-more-sheet:not([hidden]) {
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-more-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 22, 0.42);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .mobile-more-sheet:not([hidden]) .mobile-more-sheet__backdrop {
    opacity: 1;
  }

  .mobile-more-sheet__panel {
    position: absolute;
    left: max(0.5rem, env(safe-area-inset-left, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    bottom: var(--mobile-chrome-bottom);
    max-height: min(78dvh, calc(100dvh - var(--mobile-nav-height, 4rem)));
    display: flex;
    flex-direction: column;
    padding-bottom: 0.35rem;
    background: #fff;
    border: 1px solid rgba(26, 20, 22, 0.08);
    border-radius: 1.25rem;
    box-shadow: 0 12px 36px rgba(26, 20, 22, 0.14);
    transform: translateY(calc(100% + 1.5rem));
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-more-sheet:not([hidden]) .mobile-more-sheet__panel {
    transform: translateY(0);
  }

  .mobile-more-sheet__handle {
    flex: 0 0 auto;
    width: 2.25rem;
    height: 0.2rem;
    margin: 0.55rem auto 0;
    border-radius: 999px;
    background: rgba(26, 20, 22, 0.12);
  }

  .mobile-more-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.65rem;
    border-bottom: 1px solid rgba(26, 20, 22, 0.06);
  }

  .mobile-more-sheet__title {
    margin: 0;
    font-family: var(--mobile-more-font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--mobile-more-ink);
    line-height: 1.2;
  }

  .mobile-more-sheet__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: rgba(26, 20, 22, 0.05);
    color: var(--mobile-more-ink);
    cursor: pointer;
  }

  .mobile-more-sheet__close:focus {
    outline: none;
  }

  .mobile-more-sheet__close:focus-visible {
    outline: 2px solid var(--mobile-more-gold);
    outline-offset: 2px;
  }

  .mobile-more-sheet__body {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.65rem 1rem 1rem;
  }

  .mobile-more-sheet__section + .mobile-more-sheet__section {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(26, 20, 22, 0.06);
  }

  .mobile-more-sheet__section-title {
    margin: 0 0 0.4rem;
    font-family: var(--mobile-more-font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mobile-more-muted);
  }

  .mobile-more-sheet__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem 0.75rem;
  }

  .mobile-more-sheet__links a {
    display: block;
    padding: 0.4rem 0;
    color: var(--mobile-more-ink);
    font-family: var(--mobile-more-font-sans);
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.35;
  }

  .mobile-more-sheet__links a.is-active {
    color: var(--mobile-more-gold-deep);
    font-weight: 600;
  }

  .mobile-more-sheet__social {
    display: flex;
    gap: 0.6rem;
  }

  .mobile-more-sheet__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 20, 22, 0.1);
    color: var(--mobile-more-ink);
    text-decoration: none;
    font-size: 1rem;
  }

  .mobile-more-sheet__studio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    padding: 0.65rem 0;
    color: var(--mobile-more-ink);
    font-family: var(--mobile-more-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid rgba(26, 20, 22, 0.06);
    width: 100%;
  }

  .mobile-more-sheet__studio i {
    font-size: 0.85rem;
    color: var(--mobile-more-gold-deep);
  }

  body.mobile-more-sheet-open {
    overflow: hidden;
  }

  body.site-has-mobile-bottom-nav #site-footer.sf-ft {
    padding-bottom: calc(1.5rem + var(--mobile-chrome-bottom));
  }

  body.site-has-mobile-bottom-nav #services-page {
    bottom: var(--mobile-chrome-bottom);
  }

  body.site-has-mobile-bottom-nav .global-wa-fab-wrap {
    right: auto;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    bottom: calc(var(--mobile-chrome-bottom) + 0.65rem);
  }

  body.site-has-mobile-bottom-nav .global-wa-fab-row {
    align-items: flex-start;
  }

  body.site-has-mobile-bottom-nav .global-wa-fab-actions {
    justify-content: flex-start;
  }

  body.site-has-mobile-bottom-nav:not(.site-has-wa-fab) .offer-float-fab {
    bottom: calc(var(--mobile-chrome-bottom) + 0.65rem);
  }

  body.site-has-mobile-bottom-nav.site-has-svc-cart:not(.site-has-svc-cart-sticky) .svc-cart-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(var(--mobile-chrome-bottom) + 0.65rem);
  }

  body.site-has-mobile-bottom-nav:has(.booking-page--simple).site-has-svc-cart .svc-cart-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(var(--mobile-chrome-bottom) + 5.25rem);
  }

  body.site-has-mobile-bottom-nav.site-has-wa-fab .svc-cart-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(var(--mobile-chrome-bottom) + 0.65rem);
  }

  body.site-has-mobile-bottom-nav.site-has-wa-fab.site-has-conversion-sticky .svc-cart-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(var(--mobile-chrome-bottom) + 4.85rem);
  }

  body.site-has-mobile-bottom-nav.site-has-conversion-sticky .svc-cart-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(var(--mobile-chrome-bottom) + 4.85rem);
  }

  body.site-has-mobile-bottom-nav .svc-cart-sticky {
    bottom: var(--mobile-chrome-bottom);
  }

  body.site-has-mobile-bottom-nav .seo-landing__sticky {
    bottom: var(--mobile-chrome-bottom);
  }

  body.site-has-mobile-bottom-nav.site-has-conversion-sticky {
    padding-bottom: calc(4.5rem + var(--mobile-chrome-bottom));
  }

  body.site-has-mobile-bottom-nav .svc-page .svc-browse-scroll {
    padding-bottom: calc(2.5rem + var(--mobile-chrome-bottom));
  }

  body.site-has-mobile-bottom-nav.site-has-wa-fab .svc-page .svc-browse-scroll {
    padding-bottom: calc(6.5rem + var(--mobile-chrome-bottom));
  }

  body.site-has-mobile-bottom-nav.site-has-conversion-sticky .svc-page .svc-browse-scroll {
    padding-bottom: calc(6.5rem + var(--mobile-chrome-bottom));
  }

  body.site-has-mobile-bottom-nav.site-has-svc-cart-sticky .svc-page .svc-browse-scroll {
    padding-bottom: calc(var(--svc-cart-sticky-offset, 3.35rem) + var(--mobile-chrome-bottom) + 0.5rem);
  }

  body.site-has-mobile-bottom-nav.site-has-wa-fab .global-wa-fab-actions .offer-float-fab,
  body.site-has-mobile-bottom-nav.site-has-wa-fab .global-wa-fab-actions .global-wa-fab-btn {
    width: 3.45rem;
    height: 3.45rem;
  }

  body.site-has-mobile-bottom-nav.site-has-wa-fab .global-wa-fab-actions .offer-float-fab i {
    font-size: 1.28rem;
  }

  body.site-has-mobile-bottom-nav.site-has-wa-fab .global-wa-fab-actions .global-wa-fab-btn .fab {
    font-size: 1.7rem;
  }
}

@media (max-width: 420px) {
  body.site-has-mobile-bottom-nav {
    --mobile-bottom-nav-height: 4.15rem;
    --mobile-bottom-nav-icon-size: 1.42rem;
  }

  .mobile-bottom-nav__toolbar {
    padding-inline: max(0.08rem, env(safe-area-inset-left, 0px)) max(0.08rem, env(safe-area-inset-right, 0px));
  }

  .mobile-bottom-nav__label {
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }

  .mobile-more-sheet__panel {
    left: max(0.4rem, env(safe-area-inset-left, 0px));
    right: max(0.4rem, env(safe-area-inset-right, 0px));
    border-radius: 1.15rem;
  }
}

@media (min-width: 1200px) {
  .mobile-bottom-nav,
  .mobile-more-sheet {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bottom-nav__item,
  .mobile-bottom-nav__icon,
  .mobile-bottom-nav__label,
  .mobile-bottom-nav__icon i,
  .mobile-more-sheet__backdrop,
  .mobile-more-sheet__panel {
    transition: none;
  }
}
