/* Claude drawer look — left side; green Book a Class.
   IMPORTANT: use em/px inside this drawer. Shopify html rem is ~10px
   (62.5%), so rem would stay tiny even with font-size:16px on the panel. */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

/* Hide legacy Shopify mobile panel */
@media screen and (max-width: 1199px) {
  header-drawer.mobile-drawer .menu-drawer,
  header-drawer.mobile-drawer .menu-drawer.open,
  header-drawer.mobile-drawer .menu-drawer__inner-container,
  header-drawer.mobile-drawer .contact-block,
  header-drawer.desktop-drawer .menu-drawer,
  #lmyc-menu-backdrop,
  .lmyc-menu-backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

.lmyc-nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(30, 17, 20, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.42s;
  z-index: 520;
}

.lmyc-nav-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.lmyc-nav-drawer {
  --nd-ink: #1e1114;
  --nd-soft: #5c4b50;
  --nd-bone: #fbf7f2;
  --nd-line: rgba(44, 32, 36, 0.12);
  --nd-line-strong: rgba(44, 32, 36, 0.22);
  --nd-rose-deep: #a83468;
  --nd-rose-wash: #fdf3f7;
  --nd-green: #425936;
  --nd-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  position: fixed;
  inset: 0 auto 0 0;
  width: min(420px, 90vw);
  max-width: 100%;
  /* Local type root — children use em against this */
  font-size: 16px !important;
  line-height: 1.5;
  font-family: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--nd-bone);
  color: #2c2024;
  z-index: 530;
  transform: translateX(-100%);
  transition: transform 0.55s var(--nd-ease);
  display: flex;
  flex-direction: column;
  box-shadow: 30px 0 80px -40px rgba(30, 17, 20, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lmyc-nav-drawer.is-open {
  transform: translateX(0);
}

.lmyc-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;
  padding: 1.2em 1.5em;
  border-bottom: 1px solid var(--nd-line);
  position: sticky;
  top: 0;
  background: var(--nd-bone);
  z-index: 2;
}

.lmyc-nav-drawer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lmyc-nav-drawer__brand img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.lmyc-nav-drawer__head-actions {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.lmyc-nav-drawer__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  margin-right: 0.15em;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.lmyc-nav-drawer__lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35em 0.5em;
  font-size: 0.72em !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: inherit;
  color: var(--nd-soft);
  cursor: pointer;
  border-radius: 999px;
  line-height: 1.2;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.lmyc-nav-drawer__lang-btn.is-active {
  color: var(--nd-green);
  background: rgba(66, 89, 54, 0.1);
}

.lmyc-nav-drawer__lang-sep {
  width: 1px;
  height: 0.85em;
  background: var(--nd-line-strong);
}

.lmyc-nav-drawer__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.2em !important;
  line-height: 1;
  background: transparent;
  color: var(--nd-ink);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.42s var(--nd-ease), border-color 0.42s var(--nd-ease);
}

.lmyc-nav-drawer__close:hover {
  background: rgba(30, 17, 20, 0.05);
  border-color: var(--nd-line-strong);
}

.lmyc-nav-drawer__body {
  padding: 1.5em 1.5em 4em;
}

.lmyc-nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lmyc-nav-drawer__item {
  border-bottom: 1px solid var(--nd-line);
}

.lmyc-nav-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.05em 0;
  /* Claude .drawer__link — 0.82em of 16px ≈ 13px */
  font-size: 0.82em !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nd-ink) !important;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit !important;
  line-height: 1.2;
}

.lmyc-nav-drawer__link[aria-current="page"] {
  color: var(--nd-rose-deep) !important;
}

.lmyc-nav-drawer__caret {
  width: 12px;
  height: 8px;
  flex: 0 0 auto;
  margin-left: 0.75em;
  transition: transform 0.42s var(--nd-ease);
}

.lmyc-nav-drawer__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--nd-ease);
}

.lmyc-nav-drawer__panel > div {
  overflow: hidden;
}

.lmyc-nav-drawer__item.is-open .lmyc-nav-drawer__panel {
  grid-template-rows: 1fr;
}

.lmyc-nav-drawer__item.is-open .lmyc-nav-drawer__caret {
  transform: rotate(180deg);
}

.lmyc-nav-drawer__sub {
  padding: 0 0 1em 0.2em;
  display: grid;
  gap: 0.1em;
}

.lmyc-nav-drawer__sub a {
  display: block;
  padding: 0.6em 0.9em;
  /* Claude .drawer__sub a — 0.88em ≈ 14px */
  font-size: 0.88em !important;
  font-weight: 400 !important;
  line-height: 1.35;
  color: var(--nd-soft) !important;
  text-decoration: none;
  border-radius: 8px;
  border-left: 1px solid var(--nd-line);
  font-family: inherit !important;
  letter-spacing: normal;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lmyc-nav-drawer__sub a:hover,
.lmyc-nav-drawer__sub a[aria-current="page"] {
  color: var(--nd-rose-deep) !important;
  border-left-color: var(--nd-rose-deep);
  background: var(--nd-rose-wash);
}

.lmyc-nav-drawer__sub a.is-nested {
  padding-left: 1.4em;
}

.lmyc-nav-drawer__cta {
  margin-top: 2em;
  display: grid;
  gap: 0.75em;
}

.lmyc-nav-drawer__cta .button {
  position: relative;
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0 !important;
  height: auto !important;
  padding: 0.95em 1.7em !important;
  /* Claude .btn — 0.78em ≈ 12.5px */
  font-size: 0.78em !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  font-family: inherit !important;
  box-sizing: border-box;
}

.lmyc-nav-drawer__cta .button--primary {
  background: var(--nd-green) !important;
  background-color: var(--nd-green) !important;
  border: 1px solid var(--nd-green) !important;
  color: #fff !important;
}

.lmyc-nav-drawer__meta {
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid var(--nd-line);
  font-size: 0.84em !important;
  color: var(--nd-soft);
  display: grid;
  gap: 0.5em;
  line-height: 1.45;
  font-family: inherit;
}

.lmyc-nav-drawer__meta a {
  color: inherit;
  text-decoration: none;
  font-size: inherit !important;
}

.lmyc-nav-drawer__meta a:hover {
  color: var(--nd-green);
}

body.lmyc-nav-drawer-open {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .lmyc-nav-drawer,
  .lmyc-nav-scrim {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmyc-nav-drawer,
  .lmyc-nav-scrim,
  .lmyc-nav-drawer__panel,
  .lmyc-nav-drawer__caret {
    transition: none !important;
  }
}
