:root {
  --mf-black: #050505;
  --mf-ink: #18120d;
  --mf-panel: #11100e;
  --mf-gold: #9f8549;
  --mf-gold-dark: #7c6532;
  --mf-cream: #f7f2e8;
  --mf-white: #fff;
  --mf-muted: #b9b0a1;
  --mf-border: rgba(255, 255, 255, 0.14);
  --mf-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --mf-radius: 8px;
  --mf-wrap: min(1760px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

body.mf-site {
  margin: 0;
  color: var(--mf-white);
  background: var(--mf-black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.mf-site a {
  color: inherit;
  text-decoration: none;
}

body.mf-site img {
  max-width: 100%;
  display: block;
}

.mf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mf-black);
}

.mf-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 40px;
  padding: 0 80px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mf-white);
}

.mf-topbar-center {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mf-topbar-right {
  text-align: right;
}

.mf-nav {
  min-height: 52px;
  background: var(--mf-gold);
  display: grid;
  grid-template-columns: 360px 1fr 170px;
  align-items: center;
  gap: 24px;
  padding: 0 80px;
}

.mf-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.mf-brand-mark {
  font-size: 22px;
  transform: rotate(45deg);
  color: var(--mf-white);
}

.mf-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mf-menu a {
  display: block;
  padding: 18px 0 15px;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid transparent;
}

.mf-menu a:hover {
  border-color: currentColor;
}

.mf-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.mf-icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--mf-white);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.mf-icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mf-cart-count {
  position: absolute;
  right: -8px;
  top: -7px;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ee3d61;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 17px;
}

.mf-menu-toggle,
.mf-mobile-search {
  display: none;
}

.mf-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 2px 0;
}

.mf-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #080807;
}

.mf-hero picture,
.mf-hero img {
  width: 100%;
  height: 100%;
}

.mf-hero img {
  min-height: 660px;
  object-fit: cover;
}

.mf-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74));
}

.mf-hero-copy {
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 2;
  width: min(780px, calc(100vw - 48px));
  transform: translateX(-50%);
  text-align: center;
}

.mf-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 4.4vw, 76px);
  line-height: 1;
  font-weight: 850;
}

.mf-hero p {
  margin: 0 0 28px;
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.2;
}

.mf-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 34px;
  border: 1px solid var(--mf-white);
  border-radius: 0;
  background: var(--mf-white);
  color: var(--mf-ink);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

body.mf-site a.mf-button,
body.mf-site a.button,
body.mf-site .woocommerce a.button {
  color: var(--mf-ink);
}

.mf-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--mf-gold);
  border-color: var(--mf-gold);
  color: var(--mf-white);
}

body.mf-site a.mf-button:hover,
body.mf-site a.button:hover,
body.mf-site .woocommerce a.button:hover {
  color: var(--mf-white);
}

.mf-section {
  width: var(--mf-wrap);
  margin: 0 auto;
  padding: 68px 0;
}

.mf-section h2,
.mf-story-band h2,
.mf-split-copy h2,
.mf-review-band h2,
.mf-practice h2 {
  margin: 0 0 36px;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.08;
  text-align: center;
}

.mf-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.mf-category-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--mf-radius);
  background: #1d1b18;
}

.mf-category-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mf-category-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.mf-category-card:hover img {
  transform: scale(1.04);
}

.mf-split-feature,
.mf-story-band,
.mf-practice {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  width: var(--mf-wrap);
  margin: 0 auto;
  padding: 76px 0;
}

.mf-split-feature img,
.mf-story-band img,
.mf-practice img {
  width: 100%;
  border-radius: var(--mf-radius);
  box-shadow: var(--mf-shadow);
}

.mf-split-copy,
.mf-story-copy,
.mf-practice div {
  max-width: 650px;
}

.mf-split-copy h2,
.mf-story-copy h2,
.mf-practice h2 {
  text-align: left;
  margin-bottom: 22px;
}

.mf-split-copy p,
.mf-story-copy p,
.mf-practice p {
  color: var(--mf-muted);
  font-size: 18px;
  line-height: 1.72;
}

.mf-intent-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.mf-intent-card {
  display: grid;
  gap: 13px;
  text-align: center;
  color: var(--mf-white);
}

.mf-intent-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
}

.mf-intent-card span {
  min-height: 42px;
  font-weight: 800;
  font-size: 15px;
}

.mf-story-band {
  grid-template-columns: 0.8fr 1.2fr;
  background: #0f0d0a;
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1760px) / 2));
}

.mf-craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mf-craft article {
  background: #11100e;
  border: 1px solid var(--mf-border);
  border-radius: var(--mf-radius);
  overflow: hidden;
}

.mf-craft article img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.mf-craft h3 {
  min-height: 70px;
  margin: 0;
  padding: 18px;
  font-size: 18px;
}

.mf-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.mf-section-head h2 {
  margin: 0;
  text-align: left;
}

.mf-section-head a {
  color: var(--mf-muted);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mf-product-grid,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

.mf-product-card,
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: #11100e;
  border: 1px solid var(--mf-border);
  border-radius: var(--mf-radius);
  overflow: hidden;
}

.mf-product-image,
.woocommerce ul.products li.product a img {
  display: block;
  background: #1a1714;
}

.mf-product-image img,
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 !important;
}

.mf-product-copy,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  padding-inline: 16px;
}

.mf-product-copy {
  padding-block: 16px 18px;
}

.mf-product-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: block;
  min-height: 48px;
  color: var(--mf-white);
  font-size: 16px !important;
  line-height: 1.35;
  font-weight: 800;
}

.mf-product-price,
.woocommerce ul.products li.product .price {
  color: var(--mf-cream) !important;
  font-size: 16px;
  font-weight: 850;
  margin: 10px 0 14px;
}

.mf-product-action .button,
.mf-mini-button {
  width: 100%;
  min-height: 38px;
  padding-inline: 16px;
  font-size: 12px;
}

.mf-video-grid,
.mf-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mf-video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mf-video-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--mf-radius);
}

.mf-video-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mf-video-tile span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mf-ink);
  font-weight: 900;
}

.mf-review-band {
  background: var(--mf-cream);
  color: var(--mf-ink);
  padding: 74px max(24px, calc((100vw - 1760px) / 2));
}

.mf-review-grid blockquote {
  margin: 0;
  min-height: 150px;
  padding: 30px;
  border-radius: var(--mf-radius);
  background: #fff;
  color: #3b332a;
  font-size: 18px;
  line-height: 1.55;
}

.mf-footer {
  background: #070707;
  border-top: 1px solid var(--mf-border);
  padding: 46px max(24px, calc((100vw - 1760px) / 2)) 30px;
}

.mf-back-top {
  display: block;
  margin: 0 auto 36px;
  background: transparent;
  border: 0;
  color: var(--mf-white);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.mf-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
}

.mf-footer h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.mf-footer p,
.mf-footer a {
  color: var(--mf-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mf-footer a {
  display: block;
  margin: 8px 0;
}

.mf-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--mf-border);
  color: var(--mf-muted);
  font-size: 13px;
}

.mf-discount-tab {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 40;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  padding: 18px 9px;
  border: 0;
  background: var(--mf-gold);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.mf-chat-button {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: #e1b77b;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  box-shadow: var(--mf-shadow);
  cursor: pointer;
}

.mf-chat-button span {
  position: absolute;
  right: -3px;
  top: -4px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff3c65;
  font-size: 12px;
}

.mf-search-overlay,
.mf-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mf-search-overlay.is-open,
.mf-mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mf-search-overlay {
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.86);
}

.mf-search-close {
  position: absolute;
  right: 34px;
  top: 26px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

.mf-search-box {
  width: min(740px, calc(100vw - 40px));
}

.mf-search-box h2 {
  margin: 0 0 18px;
  font-size: 42px;
}

.mf-search-form {
  display: flex;
  gap: 10px;
}

.mf-search-form label {
  flex: 1;
}

.mf-search-form input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--mf-border);
  background: #fff;
  color: var(--mf-ink);
  padding: 0 16px;
  font-size: 16px;
}

.mf-search-form button {
  min-width: 120px;
  border: 0;
  background: var(--mf-gold);
  color: #fff;
  font-weight: 900;
}

.mf-shop-main,
.mf-content {
  width: var(--mf-wrap);
  margin: 0 auto;
  padding: 70px 0;
}

.mf-shop-inner,
.mf-page-card,
.mf-post-card {
  color: var(--mf-white);
}

.woocommerce div.product {
  color: var(--mf-white);
}

.woocommerce div.product div.images img {
  border-radius: var(--mf-radius);
}

.woocommerce div.product .summary {
  background: #11100e;
  border: 1px solid var(--mf-border);
  border-radius: var(--mf-radius);
  padding: 28px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--mf-cream);
  font-size: 26px;
  font-weight: 900;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--mf-gold);
  color: var(--mf-ink);
}

@media (max-width: 1180px) {
  .mf-topbar {
    padding-inline: 24px;
  }

  .mf-nav {
    grid-template-columns: auto 1fr auto;
    padding: 10px 18px;
    gap: 14px;
  }

  .mf-primary-nav {
    display: none;
  }

  .mf-menu-toggle,
  .mf-mobile-search {
    display: grid;
  }

  .mf-brand {
    justify-self: center;
    font-size: 26px;
  }

  .mf-mobile-search {
    background: var(--mf-gold);
    padding: 0 16px 10px;
  }

  .mf-mobile-search .mf-search-form button {
    display: none;
  }

  .mf-mobile-search .mf-search-form input {
    height: 34px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
  }

  .mf-mobile-search .mf-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
  }

  .mf-mobile-panel {
    right: auto;
    width: min(360px, 88vw);
    background: #0d0b09;
    box-shadow: var(--mf-shadow);
    padding: 22px;
    transform: translateX(-105%);
    opacity: 1;
    transition: transform 0.22s ease;
  }

  .mf-mobile-panel.is-open {
    transform: translateX(0);
  }

  .mf-mobile-panel .mf-menu {
    display: grid;
    justify-content: stretch;
    gap: 0;
    margin-top: 24px;
  }

  .mf-mobile-panel .mf-menu a {
    border-bottom: 1px solid var(--mf-border);
  }

  .mf-mobile-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 900;
  }

  .mf-mobile-menu-groups {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .mf-mobile-menu-groups a {
    padding: 13px 15px;
    background: #191612;
    border-radius: var(--mf-radius);
    font-weight: 800;
  }

  .mf-topbar-side {
    display: none;
  }

  .mf-topbar {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --mf-wrap: min(100vw - 32px, 760px);
  }

  .mf-hero,
  .mf-hero img {
    min-height: 650px;
  }

  .mf-hero-copy {
    bottom: 36px;
  }

.mf-hero h1 {
    font-size: 32px;
}

.mf-hero p {
    font-size: 16px;
  }

  .mf-section {
    padding: 50px 0;
  }

  .mf-category-grid,
  .mf-product-grid,
  .woocommerce ul.products,
  .mf-craft-grid,
  .mf-video-grid,
  .mf-review-grid,
  .mf-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mf-intent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mf-split-feature,
  .mf-story-band,
  .mf-practice {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 16px;
  }

  .mf-story-band {
    width: 100%;
  }
}

.mf-hero-copy h1,
.mf-hero-copy p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .mf-header-actions .mf-icon-button:not(.mf-cart-link) {
    display: none;
  }

  .mf-brand {
    font-size: 23px;
  }

  .mf-hero,
  .mf-hero img {
    min-height: 628px;
  }

  .mf-button {
    min-height: 37px;
    padding-inline: 24px;
  }

  .mf-category-section {
    padding-top: 42px;
  }

  .mf-category-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }

  .mf-category-card {
    min-width: 92px;
    min-height: 42px;
    background: var(--mf-gold);
  }

  .mf-category-card img {
    display: none;
  }

  .mf-category-card span {
    position: static;
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
    text-align: center;
    text-shadow: none;
  }

  .mf-intent-grid,
  .mf-product-grid,
  .woocommerce ul.products,
  .mf-craft-grid,
  .mf-video-grid,
  .mf-review-grid,
  .mf-footer-grid {
    grid-template-columns: 1fr;
  }

  .mf-product-grid,
  .woocommerce ul.products {
    gap: 18px;
  }

  .mf-section h2,
  .mf-story-band h2,
  .mf-split-copy h2,
  .mf-review-band h2,
  .mf-practice h2 {
    font-size: 28px;
  }

  .mf-footer-bottom,
  .mf-section-head {
    display: grid;
  }

  .mf-discount-tab {
    display: none;
  }
}
