


@font-face
{
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/lora-500.woff2') format('woff2');
}
@font-face
{
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lora-600.woff2') format('woff2');
}
@font-face
{
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lora-700.woff2') format('woff2');
}
@font-face
{
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/hanken-400.woff2') format('woff2');
}
@font-face
{
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/hanken-500.woff2') format('woff2');
}
@font-face
{
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/hanken-600.woff2') format('woff2');
}
@font-face
{
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/hanken-700.woff2') format('woff2');
}


:root
{
  --paper: #f7f4ec;
  --paper-2: #efe9da;
  --sky: #dfeaec;
  --ink: #1f3326;
  --ink-soft: #41584a;
  --leaf: #4f8a52;
  --leaf-deep: #356039;
  --leaf-bright: #7cc47f;
  --terra: #c2703d;
  --terra-deep: #a85a2c;
  --line: #d9d2c2;

  --shadow-sm: 0 0.4rem 1.1rem rgba(31, 51, 38, 0.08);
  --shadow-md: 0 1.2rem 2.6rem rgba(31, 51, 38, 0.12);
  --shadow-lg: 0 2.2rem 4.6rem rgba(31, 51, 38, 0.18);

  --r-sm: 0.9rem;
  --r-md: 1.4rem;
  --r-lg: 2.2rem;
  --r-xl: 3rem;
  --r-blob: 62% 38% 47% 53% / 55% 44% 56% 45%;

  --wrap: 78rem;
  --wrap-wide: 86rem;
  --gut: clamp(1.2rem, 4vw, 3.5rem);

  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
}


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

html
{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body
{
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a
{
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4
{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

ul
{
  list-style: none;
}

:focus-visible
{
  outline: 0.18rem solid var(--terra);
  outline-offset: 0.25rem;
  border-radius: 0.4rem;
}


.mb-wrap
{
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.mb-wrap--wide
{
  max-width: var(--wrap-wide);
}

.mb-section
{
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.mb-section--sky
{
  background: var(--sky);
}

.mb-section--paper2
{
  background: var(--paper-2);
}

.mb-kicker
{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf-deep);
}

.mb-kicker::before
{
  content: '';
  width: 1.05rem;
  height: 1.05rem;
  background: var(--leaf);
  -webkit-mask: url('../img/leaf.svg') center / contain no-repeat;
  mask: url('../img/leaf.svg') center / contain no-repeat;
}

.mb-kicker--light
{
  color: var(--leaf-bright);
}

.mb-kicker--light::before
{
  background: var(--leaf-bright);
}

.mb-h2
{
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-block: 0.7rem 0.6rem;
  max-width: 22ch;
}

.mb-lead
{
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

.mb-center
{
  text-align: center;
}

.mb-center .mb-h2,
.mb-center .mb-lead
{
  margin-inline: auto;
}

.mb-eyebrow-row
{
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}


.mb-btn
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border: 0;
  border-radius: 5rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mb-btn--primary
{
  background: var(--terra);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.mb-btn--primary:hover
{
  background: var(--terra-deep);
  transform: translateY(-0.18rem);
  box-shadow: var(--shadow-md);
}

.mb-btn--leaf
{
  background: var(--leaf-deep);
  color: #fff;
}

.mb-btn--leaf:hover
{
  background: var(--ink);
  transform: translateY(-0.18rem);
}

.mb-btn--ghost
{
  background: transparent;
  color: var(--ink);
  border: 0.12rem solid var(--ink);
}

.mb-btn--ghost:hover
{
  background: var(--ink);
  color: var(--paper);
}

.mb-btn--light
{
  background: var(--paper);
  color: var(--ink);
}

.mb-btn--light:hover
{
  background: #fff;
  transform: translateY(-0.18rem);
}

.mb-btn--block
{
  width: 100%;
}


.mb-head
{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.mb-head__bar
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.6rem;
}

.mb-brand
{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
}

.mb-brand__mark
{
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  flex: none;
}

.mb-nav
{
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.mb-nav__link
{
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s ease;
}

.mb-nav__link::after
{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.13rem;
  border-radius: 1rem;
  background: var(--leaf);
  transition: width 0.28s ease;
}

.mb-nav__link:hover,
.mb-nav__link[aria-current='page']
{
  color: var(--ink);
}

.mb-nav__link:hover::after,
.mb-nav__link[aria-current='page']::after
{
  width: 100%;
}

.mb-head__cta
{
  display: inline-flex;
}

.mb-burger
{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.34rem;
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 0.8rem;
  background: var(--ink);
  cursor: pointer;
}

.mb-burger span
{
  display: block;
  width: 1.35rem;
  height: 0.14rem;
  margin-inline: auto;
  border-radius: 1rem;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.2s ease;
}


.mb-overlay
{
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, var(--ink) 0%, var(--leaf-deep) 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 1.3rem var(--gut) 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease, visibility 0.4s;
  overflow-y: auto;
}

.mb-overlay.is-open
{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mb-overlay__top
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.6rem;
}

.mb-overlay__close
{
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 0.8rem;
  background: rgba(247, 244, 236, 0.14);
  color: var(--paper);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.mb-overlay__links
{
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  margin-bottom: auto;
}

.mb-overlay__link
{
  font-family: var(--serif);
  font-size: clamp(1.9rem, 9vw, 2.8rem);
  font-weight: 600;
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(247, 244, 236, 0.14);
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}

.mb-overlay__link span
{
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--leaf-bright);
  letter-spacing: 0.1em;
}

.mb-overlay__foot
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.92rem;
  color: rgba(247, 244, 236, 0.78);
}

.mb-overlay__foot a:hover
{
  color: var(--leaf-bright);
}


.mb-hero
{
  position: relative;
  min-height: clamp(34rem, 84vh, 46rem);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}

.mb-hero__bg
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.mb-hero::after
{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 33, 24, 0.15) 0%, rgba(20, 33, 24, 0.72) 88%),
    linear-gradient(90deg, rgba(20, 33, 24, 0.55) 0%, rgba(20, 33, 24, 0) 60%);
}

.mb-hero__inner
{
  padding-block: clamp(2.5rem, 6vw, 5rem);
  max-width: 42rem;
}

.mb-hero__title
{
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  margin-block: 0.8rem 1rem;
}

.mb-hero__title em
{
  font-style: italic;
  color: var(--leaf-bright);
}

.mb-hero__text
{
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(247, 244, 236, 0.92);
  max-width: 40ch;
  margin-bottom: 1.8rem;
}

.mb-hero__actions
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.mb-hero__strip
{
  position: relative;
  background: var(--ink);
  color: var(--paper);
}

.mb-hero__strip ul
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.4rem;
  padding-block: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.mb-hero__strip li
{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mb-hero__strip li::before
{
  content: '✦';
  color: var(--leaf-bright);
}


.mb-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.mb-card
{
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mb-card:hover
{
  transform: translateY(-0.45rem);
  box-shadow: var(--shadow-md);
}

.mb-card__media
{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.mb-card__media img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mb-card:hover .mb-card__media img
{
  transform: scale(1.06);
}

.mb-tag
{
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 5rem;
  background: var(--paper);
  color: var(--leaf-deep);
}

.mb-tag--terra
{
  background: var(--terra);
  color: #fff;
}

.mb-card__body
{
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mb-card__cat
{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
}

.mb-card__name
{
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
}

.mb-card__desc
{
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.mb-card__foot
{
  margin-top: auto;
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.mb-price
{
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.mb-price small
{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.mb-card__btn
{
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
}


.mb-collections
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.mb-collection
{
  position: relative;
  display: block;
  color: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 17rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mb-collection:hover
{
  transform: translateY(-0.4rem);
  box-shadow: var(--shadow-md);
}

.mb-collection img
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mb-collection:hover img
{
  transform: scale(1.07);
}

.mb-collection::after
{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 33, 24, 0) 30%, rgba(20, 33, 24, 0.82) 100%);
}

.mb-collection__body
{
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.4rem;
}

.mb-collection__title
{
  font-size: 1.5rem;
  font-weight: 600;
}

.mb-collection__meta
{
  font-size: 0.9rem;
  color: rgba(247, 244, 236, 0.86);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mb-collection__meta::after
{
  content: '→';
  transition: transform 0.3s ease;
}

.mb-collection:hover .mb-collection__meta::after
{
  transform: translateX(0.35rem);
}


.mb-care
{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.mb-care__media
{
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-bottom-right-radius: var(--r-xl);
}

.mb-care__media img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-steps
{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.mb-step
{
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.mb-step__num
{
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
}

.mb-step__t
{
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.mb-step__d
{
  font-size: 0.96rem;
  color: var(--ink-soft);
}


.mb-reviews
{
  columns: 3;
  column-gap: clamp(1rem, 2.2vw, 1.6rem);
}

.mb-review
{
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2.2vw, 1.6rem);
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 0.28rem solid var(--leaf-bright);
}

.mb-review__stars
{
  color: var(--terra);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.mb-review__text
{
  font-size: 0.98rem;
  margin-block: 0.6rem 1rem;
  color: var(--ink);
}

.mb-review__who
{
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mb-avatar
{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: var(--leaf-deep);
  font-weight: 700;
  font-family: var(--serif);
  flex: none;
}

.mb-review__name
{
  font-weight: 700;
  font-size: 0.95rem;
}

.mb-review__loc
{
  font-size: 0.82rem;
  color: var(--ink-soft);
}


.mb-faq
{
  max-width: 52rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mb-acc
{
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.mb-acc__btn
{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.4rem;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.mb-acc__icon
{
  flex: none;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
}

.mb-acc__icon::before,
.mb-acc__icon::after
{
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--leaf);
  border-radius: 1rem;
}

.mb-acc__icon::before
{
  width: 0.95rem;
  height: 0.14rem;
}

.mb-acc__icon::after
{
  width: 0.14rem;
  height: 0.95rem;
  transition: transform 0.3s ease;
}

.mb-acc__btn[aria-expanded='true'] .mb-acc__icon::after
{
  transform: rotate(90deg);
  opacity: 0;
}

.mb-acc__panel
{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mb-acc__inner
{
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}


.mb-visit
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}

.mb-visit__card
{
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.mb-visit__list
{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.mb-visit__row
{
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.mb-visit__ic
{
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  background: var(--sky);
  display: grid;
  place-items: center;
  color: var(--leaf-deep);
  flex: none;
}

.mb-visit__row span
{
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
}

.mb-visit__row a,
.mb-visit__row p
{
  font-size: 1.02rem;
  color: var(--ink);
}

.mb-visit__media
{
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 18rem;
}

.mb-visit__media img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.mb-field
{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.mb-field label
{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.mb-field input,
.mb-field select,
.mb-field textarea
{
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 0.1rem solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mb-field input:focus,
.mb-field select:focus,
.mb-field textarea:focus
{
  outline: 0;
  border-color: var(--leaf);
  box-shadow: 0 0 0 0.18rem rgba(79, 138, 82, 0.18);
}

.mb-field textarea
{
  resize: vertical;
  min-height: 7rem;
}

.mb-form__msg
{
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.mb-form__msg.is-show
{
  display: block;
}

.mb-row-2
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}


.mb-foot
{
  background: var(--ink);
  color: rgba(247, 244, 236, 0.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.6rem;
}

.mb-foot__grid
{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}

.mb-foot__brand
{
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.mb-foot__blurb
{
  font-size: 0.96rem;
  max-width: 32ch;
  margin-bottom: 1.2rem;
}

.mb-foot__col h4
{
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 0.9rem;
}

.mb-foot__col ul
{
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.96rem;
}

.mb-foot__col a:hover
{
  color: var(--paper);
}

.mb-foot__contact
{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.96rem;
}

.mb-foot__bottom
{
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(247, 244, 236, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  font-size: 0.86rem;
}


.mb-cookie
{
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(150%);
  z-index: 70;
  width: min(46rem, calc(100% - 2rem));
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mb-cookie.is-show
{
  transform: translateX(-50%) translateY(0);
}

.mb-cookie__txt
{
  flex: 1 1 18rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.mb-cookie__txt strong
{
  color: var(--ink);
}

.mb-cookie__act
{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mb-cookie .mb-btn
{
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
}


.mb-phead
{
  position: relative;
  color: var(--paper);
  padding-block: clamp(3.2rem, 8vw, 5.5rem);
  overflow: hidden;
  background: linear-gradient(150deg, var(--leaf-deep), var(--ink));
}

.mb-phead::before
{
  content: '';
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: -10rem;
  border-radius: var(--r-blob);
  background: rgba(124, 196, 127, 0.18);
}

.mb-phead__crumb
{
  font-size: 0.86rem;
  color: rgba(247, 244, 236, 0.78);
  margin-bottom: 0.6rem;
}

.mb-phead__crumb a:hover
{
  color: var(--leaf-bright);
}

.mb-phead h1
{
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  max-width: 20ch;
}

.mb-phead p
{
  margin-top: 0.8rem;
  max-width: 52ch;
  color: rgba(247, 244, 236, 0.9);
  font-size: 1.08rem;
}


.mb-prose
{
  max-width: 50rem;
}

.mb-prose h2
{
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-block: 2rem 0.7rem;
}

.mb-prose h3
{
  font-size: 1.2rem;
  margin-block: 1.4rem 0.5rem;
}

.mb-prose p,
.mb-prose li
{
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.mb-prose ul
{
  list-style: disc;
  padding-left: 1.3rem;
}

.mb-prose strong
{
  color: var(--ink);
}

.mb-prose a
{
  color: var(--leaf-deep);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.mb-toc
{
  background: var(--sky);
  border-radius: var(--r-md);
  padding: 1.3rem 1.5rem;
  margin-bottom: 2rem;
}

.mb-toc h2
{
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.mb-toc ul
{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mb-toc a
{
  color: var(--leaf-deep);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  font-size: 0.96rem;
}


.mb-pdp
{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.mb-pdp__main
{
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mb-pdp__main img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.mb-pdp__thumbs
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.mb-pdp__thumbs img
{
  border-radius: var(--r-md);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.mb-pdp__price
{
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  margin-block: 0.6rem 0.3rem;
}

.mb-pdp__price small
{
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.mb-pdp__lead
{
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}

.mb-pdp__actions
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-block: 1.3rem;
}

.mb-spec
{
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.6rem;
  font-size: 0.96rem;
}

.mb-spec th,
.mb-spec td
{
  text-align: left;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.mb-spec th
{
  width: 38%;
  color: var(--leaf-deep);
  font-weight: 600;
}

.mb-spec td
{
  color: var(--ink-soft);
}

.mb-feature-list
{
  display: grid;
  gap: 0.7rem;
  margin-block: 1rem;
}

.mb-feature-list li
{
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-soft);
}

.mb-feature-list li::before
{
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--leaf);
  font-weight: 700;
}

.mb-note
{
  font-size: 0.86rem;
  color: var(--ink-soft);
  background: var(--paper-2);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
}


.mb-toolbar
{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.mb-chip
{
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 5rem;
  border: 0.1rem solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mb-chip:hover
{
  border-color: var(--leaf);
  color: var(--leaf-deep);
}

.mb-chip.is-active
{
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
  color: #fff;
}


.mb-404
{
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--sky);
  padding-block: 4rem;
}

.mb-404__big
{
  font-family: var(--serif);
  font-size: clamp(5rem, 22vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--leaf-deep);
}


.mb-split
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.mb-deco-blob
{
  position: absolute;
  border-radius: var(--r-blob);
  filter: blur(2px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.sr-only
{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-reveal
{
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.mb-reveal.is-in
{
  opacity: 1;
  transform: none;
}


@media (max-width: 960px)
{
  .mb-care,
  .mb-visit,
  .mb-pdp,
  .mb-split
  {
    grid-template-columns: 1fr;
  }

  .mb-reviews
  {
    columns: 2;
  }

  .mb-foot__grid
  {
    grid-template-columns: 1fr 1fr;
  }

  .mb-care__media,
  .mb-visit__media
  {
    order: -1;
    min-height: 14rem;
  }
}

@media (max-width: 760px)
{
  .mb-nav,
  .mb-head__cta
  {
    display: none;
  }

  .mb-burger
  {
    display: flex;
  }

  .mb-reviews
  {
    columns: 1;
  }

  .mb-row-2
  {
    grid-template-columns: 1fr;
  }

  .mb-foot__grid
  {
    grid-template-columns: 1fr 1fr;
  }

  .mb-foot__col--brand
  {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px)
{
  body
  {
    font-size: 1rem;
  }

  .mb-foot__grid
  {
    grid-template-columns: 1fr;
  }

  .mb-cookie
  {
    flex-direction: column;
    align-items: stretch;
  }

  .mb-cookie__act .mb-btn
  {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce)
{
  *
  {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .mb-reveal
  {
    opacity: 1;
    transform: none;
  }
}

.mb-cookie{padding:0.85rem 1.1rem}
