/* =========================================================
   MASTER FORGE — MAIN STYLESHEET
   Aesthetic: Editorial luxury × forge industrial
   ========================================================= */

:root {
  --mf-black: #0a0a0a;
  --mf-ink: #141414;
  --mf-graphite: #2a2a2a;
  --mf-iron: #555555;
  --mf-steel: #8a8a8a;
  --mf-ash: #d4d4d4;
  --mf-paper: #f5f3ef;
  --mf-white: #ffffff;
  --mf-ember: #c8441a;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max-width: 1440px;
  --pad-x: clamp(1.5rem, 5vw, 6rem);
}

/* =========================================================
   RESET + BASE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--mf-paper);
  color: var(--mf-ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* Subtle film grain overlay across entire site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0.35;
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.mf-skip-link { position: absolute; left: -9999px; top: auto; }
.mf-skip-link:focus { left: 1rem; top: 1rem; background: var(--mf-black); color: var(--mf-paper); padding: 10px 20px; z-index: 99999; }

.mf-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--mf-black);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--mf-iron); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.mf-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.mf-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--mf-iron);
}
.mf-eyebrow-ember { color: var(--mf-ember); }
.mf-eyebrow-ember::before { background: var(--mf-ember); }
.mf-eyebrow-light { color: var(--mf-steel); }
.mf-eyebrow-light::before { background: var(--mf-steel); }

/* =========================================================
   BUTTONS
   ========================================================= */

.mf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.05rem 2rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.mf-btn svg { transition: transform 0.3s ease; }
.mf-btn:hover svg { transform: translateX(4px); }

.mf-btn-primary { background: var(--mf-paper); color: var(--mf-black); border-color: var(--mf-paper); }
.mf-btn-primary:hover { background: transparent; color: var(--mf-paper); border-color: var(--mf-paper); }

.mf-btn-dark { background: var(--mf-black); color: var(--mf-paper); border-color: var(--mf-black); }
.mf-btn-dark:hover { background: transparent; color: var(--mf-black); }

.mf-btn-ghost { background: transparent; color: var(--mf-paper); border-color: var(--mf-iron); }
.mf-btn-ghost:hover { border-color: var(--mf-paper); background: rgba(245, 243, 239, 0.06); }

.mf-btn-ghost-dark { background: transparent; color: var(--mf-black); border-color: var(--mf-ash); }
.mf-btn-ghost-dark:hover { border-color: var(--mf-black); }

.mf-btn-story { margin-top: 2rem; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */

.mf-announce {
  background: var(--mf-black);
  color: var(--mf-paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid var(--mf-graphite);
}
.mf-announce span { opacity: 0.85; }

/* =========================================================
   HEADER
   ========================================================= */

.mf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.mf-logo { justify-self: start; }
.mf-logo-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mf-black);
  display: block;
  line-height: 1;
}
.mf-logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--mf-iron);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}
.mf-logo img.custom-logo { max-height: 50px; width: auto; }

.mf-nav { display: block; }
.mf-menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  align-items: center;
}
.mf-menu a {
  color: var(--mf-graphite);
  position: relative;
  padding: 4px 0;
}
.mf-menu a:hover,
.mf-menu .current-menu-item > a { color: var(--mf-black); }
.mf-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--mf-black);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mf-menu a:hover::after,
.mf-menu .current-menu-item > a::after { right: 0; }

.mf-header-utils {
  display: flex;
  gap: 1.25rem;
  justify-self: end;
  align-items: center;
}
.mf-util-link {
  color: var(--mf-graphite);
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.mf-util-link:hover { color: var(--mf-black); }
.mf-cart-count {
  background: var(--mf-black);
  color: var(--mf-paper);
  font-family: var(--font-mono);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.mf-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}
.mf-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--mf-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mf-menu-toggle.is-active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mf-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.mf-menu-toggle.is-active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mf-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mf-black);
  color: var(--mf-paper);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mf-mobile-menu.is-open { transform: translateX(0); }
.mf-mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mf-mobile-list li {
  border-bottom: 1px solid var(--mf-graphite);
}
.mf-mobile-list a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--mf-paper);
  display: block;
  padding: 1.5rem 0;
}

@media (max-width: 980px) {
  .mf-nav { display: none; }
  .mf-menu-toggle { display: flex; }
  .mf-header-inner { grid-template-columns: 1fr auto; }
  .mf-logo-text { font-size: 1.4rem; }
}

/* =========================================================
   HERO
   ========================================================= */

.mf-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--mf-black);
  color: var(--mf-paper);
  overflow: hidden;
}
.mf-hero-left {
  padding: clamp(3rem, 8vw, 7rem) var(--pad-x) clamp(5rem, 10vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.mf-hero-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-steel);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: mfFadeInUp 0.8s 0.1s both;
}
.mf-hero-meta::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--mf-steel);
}

.mf-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--mf-paper);
  animation: mfFadeInUp 1s 0.2s both;
}
.mf-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--mf-ash);
  max-width: 480px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  animation: mfFadeInUp 1s 0.35s both;
}
.mf-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: mfFadeInUp 1s 0.5s both;
}
.mf-hero-trust {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mf-steel);
  align-items: center;
  animation: mfFadeInUp 1s 0.7s both;
  flex-wrap: wrap;
}
.mf-hero-stars { color: var(--mf-paper); letter-spacing: 3px; }

.mf-hero-right {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1f1f1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mf-hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200, 68, 26, 0.12) 0%, transparent 55%);
}
.mf-hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 3px);
}
.mf-blade-display {
  position: relative;
  width: 80%;
  max-width: 500px;
  aspect-ratio: 1/1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mfFloatSlow 6s ease-in-out infinite;
}
.mf-blade-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.mf-blade-label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-steel);
  text-align: right;
  line-height: 1.8;
  z-index: 2;
}
.mf-blade-label strong {
  color: var(--mf-paper);
  font-weight: 500;
  display: block;
  font-size: 11px;
}
.mf-blade-price {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--mf-paper);
  letter-spacing: -0.01em;
  z-index: 2;
}
.mf-blade-price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--mf-steel);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 400;
}

@keyframes mfFloatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.3deg); }
}
@keyframes mfFadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .mf-hero { grid-template-columns: 1fr; min-height: auto; }
  .mf-hero-right { min-height: 50vh; order: -1; }
  .mf-hero-trust { position: static; margin-top: 3rem; padding: 0; }
  .mf-hero-left { padding-bottom: 3rem; }
}

/* =========================================================
   VALUE STRIP
   ========================================================= */

.mf-value-strip {
  background: var(--mf-paper);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.mf-value-item {
  padding: 0 2.5rem;
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  position: relative;
}
.mf-value-item:last-child { border-right: none; padding-right: 0; }
.mf-value-item:first-child { padding-left: 0; }
.mf-value-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--mf-iron);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.mf-value-item h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.mf-value-item p {
  font-size: 0.95rem;
  color: var(--mf-iron);
  line-height: 1.7;
  max-width: 280px;
}

@media (max-width: 900px) {
  .mf-value-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mf-value-item {
    border-right: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
    padding: 0 0 2.5rem;
  }
  .mf-value-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */

.mf-section-head {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.mf-section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.mf-section-head-right p {
  font-size: 1.0625rem;
  color: var(--mf-iron);
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  font-weight: 300;
}
.mf-section-head--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 700px;
}
.mf-section-head--centered .mf-eyebrow {
  justify-content: center;
}
.mf-section-head--centered .mf-eyebrow::before { display: none; }

@media (max-width: 900px) {
  .mf-section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .mf-section-head-right p { margin-left: 0; }
}

/* =========================================================
   CATEGORIES (homepage)
   ========================================================= */

.mf-categories {
  padding: 7rem 0;
  background: var(--mf-paper);
}
.mf-cat-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(10, 10, 10, 0.1);
  border: 1px solid rgba(10, 10, 10, 0.1);
}
.mf-cat-card {
  background: var(--mf-paper);
  padding: 2.5rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--mf-black);
  position: relative;
  overflow: hidden;
}
.mf-cat-card:hover { background: var(--mf-black); color: var(--mf-paper); }
.mf-cat-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--mf-iron);
  text-transform: uppercase;
}
.mf-cat-card:hover .mf-cat-num { color: var(--mf-steel); }
.mf-cat-icon {
  width: 56px;
  height: 56px;
  margin: 1.5rem 0 2rem;
  transition: transform 0.5s ease;
  color: currentColor;
}
.mf-cat-card:hover .mf-cat-icon { transform: rotate(8deg) scale(1.08); }
.mf-cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  color: currentColor;
}
.mf-cat-card p {
  font-size: 13px;
  color: var(--mf-iron);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.mf-cat-card:hover p { color: var(--mf-ash); }
.mf-cat-arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.mf-cat-card:hover .mf-cat-arrow { opacity: 1; gap: 14px; }

@media (max-width: 1100px) { .mf-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .mf-cat-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BRAND STORY (homepage)
   ========================================================= */

.mf-story {
  background: var(--mf-black);
  color: var(--mf-paper);
  padding: 8rem var(--pad-x);
  position: relative;
  overflow: hidden;
}
.mf-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.mf-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.mf-story-side {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-steel);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid var(--mf-graphite);
}
.mf-story-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--mf-paper);
  margin-bottom: 2.5rem;
  line-height: 1;
}
.mf-story-content h2 em { color: var(--mf-ash); }
.mf-story-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--mf-ash);
  margin-bottom: 1.5rem;
  font-weight: 300;
  max-width: 640px;
}
.mf-story-content p.mf-highlight {
  color: var(--mf-paper);
  font-weight: 400;
}
.mf-story-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mf-graphite);
  max-width: 640px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  flex-wrap: wrap;
}
.mf-story-signature .sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--mf-paper);
}
.mf-story-signature .sig small {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--mf-steel);
  text-transform: uppercase;
  margin-top: 6px;
}
.mf-story-signature .sig-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--mf-steel);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .mf-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mf-story-side {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid var(--mf-graphite);
    padding: 0 0 1.5rem;
  }
}

/* =========================================================
   WHY US (homepage grid)
   ========================================================= */

.mf-why {
  padding: 7rem 0;
  background: var(--mf-paper);
}
.mf-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2.5rem;
}
.mf-why-item {
  padding-top: 2rem;
  border-top: 1px solid var(--mf-black);
  position: relative;
}
.mf-why-item::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 30%;
  height: 3px;
  background: var(--mf-black);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mf-why-item:hover::before { width: 100%; }
.mf-why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--mf-iron);
  margin-bottom: 1rem;
  display: block;
}
.mf-why-item h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.mf-why-item p {
  font-size: 14px;
  color: var(--mf-iron);
  line-height: 1.65;
}

@media (max-width: 900px) { .mf-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mf-why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.mf-testimonials {
  padding: 7rem var(--pad-x);
  background: var(--mf-white);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-test-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.mf-test-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-iron);
  margin-bottom: 2.5rem;
  display: inline-block;
}
.mf-test-slider {
  position: relative;
  min-height: 200px;
}
.mf-test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.mf-test-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.mf-test-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--mf-black);
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.mf-test-quote::before { content: "\201C"; margin-right: 4px; }
.mf-test-quote::after { content: "\201D"; }
.mf-test-author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
}
.mf-test-author strong { color: var(--mf-black); font-weight: 500; }
.mf-test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}
.mf-test-dot {
  width: 24px;
  height: 2px;
  background: var(--mf-ash);
  transition: background 0.3s ease;
  cursor: pointer;
}
.mf-test-dot.active { background: var(--mf-black); }

/* =========================================================
   URGENCY
   ========================================================= */

.mf-urgency {
  padding: 7rem var(--pad-x);
  background: var(--mf-paper);
  text-align: center;
}
.mf-urgency-inner {
  max-width: 800px;
  margin: 0 auto;
}
.mf-urgency .mf-eyebrow { justify-content: center; }
.mf-urgency .mf-eyebrow::before,
.mf-urgency .mf-eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--mf-ember);
}
.mf-urgency h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.mf-urgency p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--mf-iron);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* =========================================================
   EMAIL CAPTURE
   ========================================================= */

.mf-email-cap {
  padding: 6rem var(--pad-x);
  background: var(--mf-black);
  color: var(--mf-paper);
  text-align: center;
}
.mf-email-inner { max-width: 560px; margin: 0 auto; }
.mf-email-cap .mf-eyebrow { justify-content: center; color: var(--mf-steel); }
.mf-email-cap .mf-eyebrow::before { background: var(--mf-steel); }
.mf-email-cap h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--mf-paper);
  margin-bottom: 1rem;
}
.mf-email-cap p {
  color: var(--mf-ash);
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
}

.mf-email-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--mf-ash);
  max-width: 500px;
  margin: 0 auto;
  background: var(--mf-white);
}
.mf-email-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--mf-black);
  outline: none;
}
.mf-email-form input::placeholder { color: var(--mf-steel); }
.mf-email-form button {
  padding: 1rem 1.5rem;
  background: var(--mf-black);
  color: var(--mf-paper);
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.mf-email-form button:hover { background: var(--mf-graphite); }

.mf-email-form--dark {
  background: var(--mf-black);
  border-color: var(--mf-graphite);
}
.mf-email-form--dark input { color: var(--mf-paper); }
.mf-email-form--dark input::placeholder { color: var(--mf-iron); }
.mf-email-form--dark button { background: var(--mf-paper); color: var(--mf-black); }
.mf-email-form--dark button:hover { background: var(--mf-ash); }

/* =========================================================
   FINAL CTA
   ========================================================= */

.mf-final-cta {
  padding: 7rem 0;
  background: var(--mf-paper);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-final-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.mf-final-inner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

/* =========================================================
   PAGE HERO (used on interior pages)
   ========================================================= */

.mf-page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--mf-paper);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.mf-page-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mf-iron);
  max-width: 700px;
  font-weight: 300;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */

.mf-breadcrumbs {
  padding: 1.25rem 0;
  background: var(--mf-paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mf-iron);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
.mf-breadcrumbs .mf-container { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.mf-breadcrumbs a { color: var(--mf-iron); }
.mf-breadcrumbs a:hover { color: var(--mf-black); }
.mf-breadcrumbs .mf-sep { opacity: 0.4; }

/* =========================================================
   SHOP PAGE
   ========================================================= */

.mf-shop-categories {
  padding: 6rem 0;
  background: var(--mf-paper);
}
.mf-shop-category {
  padding: 4rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  max-width: 900px;
}
.mf-shop-category:first-of-type { border-top: none; padding-top: 2rem; }
.mf-shop-cat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--mf-iron);
  margin-bottom: 1.5rem;
}
.mf-shop-category h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.mf-shop-cat-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mf-iron);
  margin-bottom: 2rem;
  max-width: 700px;
  font-weight: 300;
}
.mf-shop-cat-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-shop-cat-specs .mf-spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
  display: block;
  margin-bottom: 0.5rem;
}
.mf-shop-cat-specs .mf-spec-val {
  font-size: 14px;
  color: var(--mf-black);
  line-height: 1.5;
}
@media (max-width: 700px) { .mf-shop-cat-specs { grid-template-columns: 1fr; gap: 1rem; } }

.mf-shop-products {
  padding: 6rem 0;
  background: var(--mf-white);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

/* =========================================================
   OUR STORY PAGE
   ========================================================= */

.mf-story-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
  background: var(--mf-paper);
  text-align: center;
}
.mf-story-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 2.5rem;
}
.mf-story-hero .mf-eyebrow { justify-content: center; }
.mf-story-hero .mf-eyebrow::before { display: none; }
.mf-story-opener {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--mf-iron);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}
.mf-story-opener em { color: var(--mf-black); }

.mf-story-body {
  padding: 5rem var(--pad-x) 7rem;
  background: var(--mf-paper);
}
.mf-story-content-narrow {
  max-width: 720px;
  margin: 0 auto;
}
.mf-story-chapter {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  position: relative;
}
.mf-story-chapter:first-child { border-top: none; padding-top: 1rem; }
.mf-chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--mf-ember);
  display: block;
  margin-bottom: 1rem;
}
.mf-story-chapter h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.mf-story-chapter p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--mf-graphite);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.mf-story-chapter p.mf-story-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--mf-black);
  padding: 1rem 0 1rem 1.5rem;
  border-left: 2px solid var(--mf-ember);
  margin: 1.5rem 0;
}
.mf-story-list {
  list-style: none;
  margin: 1.5rem 0;
}
.mf-story-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 1.0625rem;
  color: var(--mf-graphite);
  position: relative;
}
.mf-story-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--mf-ember);
}
.mf-story-cta {
  text-align: center;
  padding: 3rem 0 0;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.mf-about-body {
  padding: 5rem 0 7rem;
  background: var(--mf-paper);
}
.mf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}
.mf-two-col:last-child { border-bottom: none; }
.mf-two-col--alt { background: transparent; }
.mf-col h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.mf-col p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mf-graphite);
  margin-bottom: 1.25rem;
}
.mf-bullet-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.mf-bullet-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 1rem;
  color: var(--mf-graphite);
  line-height: 1.7;
}
.mf-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 8px;
  height: 1px;
  background: var(--mf-black);
}
.mf-bullet-list--compact li { padding: 0.35rem 0 0.35rem 1.5rem; }
.mf-bullet-list--dont li::before { background: var(--mf-ember); width: 10px; }
.mf-note {
  font-size: 0.9rem;
  color: var(--mf-iron);
  padding: 1rem;
  background: rgba(10, 10, 10, 0.03);
  border-left: 2px solid var(--mf-iron);
  margin-top: 1.5rem;
}
.mf-contact-list {
  list-style: none;
  margin: 1rem 0 2rem;
}
.mf-contact-list li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-contact-list span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
  min-width: 100px;
}
.mf-contact-list a {
  color: var(--mf-black);
  font-weight: 500;
}
.mf-contact-list a:hover { color: var(--mf-ember); }

@media (max-width: 900px) { .mf-two-col { grid-template-columns: 1fr; gap: 3rem; } }

/* =========================================================
   WHY US FULL PAGE
   ========================================================= */

.mf-why-full {
  padding: 4rem 0 7rem;
  background: var(--mf-paper);
}
.mf-why-full-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  align-items: start;
}
.mf-why-full-item:first-of-type { border-top: none; }
.mf-why-full-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--mf-ash);
  letter-spacing: -0.04em;
}
.mf-why-full-body h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.mf-why-full-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--mf-graphite);
  max-width: 700px;
}
.mf-why-cta {
  text-align: center;
  padding-top: 4rem;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .mf-why-full-item { grid-template-columns: 1fr; gap: 1rem; }
  .mf-why-full-num { font-size: 4rem; }
}

/* =========================================================
   CARE GUIDE
   ========================================================= */

.mf-care-body {
  padding: 5rem 0 7rem;
  background: var(--mf-paper);
}
.mf-care-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
}
.mf-care-toc {
  position: sticky;
  top: 120px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--mf-black);
}
.mf-care-toc h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-iron);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.mf-care-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mf-care-toc a {
  font-size: 14px;
  color: var(--mf-graphite);
  font-weight: 400;
}
.mf-care-toc a:hover { color: var(--mf-black); }

.mf-care-content section {
  padding: 3rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}
.mf-care-content section:first-child { border-top: none; padding-top: 0; }
.mf-care-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.mf-care-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--mf-graphite);
  margin-bottom: 1.25rem;
}
.mf-care-content p.mf-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--mf-black);
  border-left: 2px solid var(--mf-ember);
  padding-left: 1.25rem;
}

.mf-steps {
  counter-reset: steps;
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.mf-steps li {
  counter-increment: steps;
  padding: 0.85rem 0 0.85rem 3rem;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--mf-graphite);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
.mf-steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.95em;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mf-ember);
  font-weight: 500;
}

.mf-care-help {
  margin-top: 3rem;
  padding: 3rem;
  background: var(--mf-black);
  color: var(--mf-paper);
}
.mf-care-help h3 {
  font-size: 2rem;
  color: var(--mf-paper);
  margin-bottom: 1rem;
}
.mf-care-help p {
  color: var(--mf-ash);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

@media (max-width: 900px) {
  .mf-care-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mf-care-toc { position: static; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.mf-contact-options {
  padding: 5rem 0;
  background: var(--mf-paper);
}
.mf-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(10, 10, 10, 0.1);
}
.mf-contact-card {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(10, 10, 10, 0.1);
  text-align: left;
  background: var(--mf-paper);
  transition: background 0.3s ease;
}
.mf-contact-card:last-child { border-right: none; }
.mf-contact-card:hover { background: var(--mf-white); }
.mf-contact-card svg { margin-bottom: 1.5rem; color: var(--mf-black); }
.mf-contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.mf-contact-card p {
  color: var(--mf-iron);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.mf-contact-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mf-black);
  font-weight: 600;
  border-bottom: 1px solid var(--mf-black);
  padding-bottom: 2px;
  display: inline-block;
}
.mf-contact-link--muted {
  color: var(--mf-steel);
  border-bottom-color: var(--mf-steel);
}
@media (max-width: 900px) { .mf-three-col { grid-template-columns: 1fr; } .mf-contact-card { border-right: none; border-bottom: 1px solid rgba(10,10,10,0.1); } }

.mf-contact-form-section {
  padding: 6rem 0;
  background: var(--mf-white);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-contact-form-inner { max-width: 800px; margin: 0 auto; }
.mf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .mf-form-row { grid-template-columns: 1fr; } }
.mf-contact-form label { display: block; }
.mf-contact-form label > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.mf-contact-form input,
.mf-contact-form textarea,
.mf-contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.2);
  font-size: 15px;
  color: var(--mf-black);
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}
.mf-contact-form input:focus,
.mf-contact-form textarea:focus,
.mf-contact-form select:focus {
  outline: none;
  border-color: var(--mf-black);
}
.mf-contact-form textarea { resize: vertical; min-height: 140px; }
.mf-contact-form button { align-self: flex-start; margin-top: 0.5rem; }
.mf-form-note {
  font-size: 13px;
  color: var(--mf-iron);
  margin-top: 0.5rem;
}

/* FAQ */
.mf-faq {
  padding: 6rem 0;
  background: var(--mf-paper);
}
.mf-faq-inner { max-width: 900px; margin: 0 auto; }
.mf-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--mf-black);
}
.mf-faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  padding: 1.5rem 0;
}
.mf-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--mf-black);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.mf-faq-item summary::-webkit-details-marker { display: none; }
.mf-faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--mf-iron);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.mf-faq-item[open] summary::after { transform: rotate(45deg); }
.mf-faq-item p {
  padding-top: 1rem;
  font-size: 1rem;
  color: var(--mf-graphite);
  line-height: 1.7;
}

/* =========================================================
   BLOG / DEFAULT PAGES
   ========================================================= */

.mf-page-body { padding: 5rem 0 7rem; background: var(--mf-paper); }
.mf-page-content {
  max-width: 720px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--mf-graphite);
}
.mf-page-content h2 { font-size: 2.25rem; margin: 2.5rem 0 1rem; }
.mf-page-content h3 { font-size: 1.65rem; margin: 2rem 0 0.75rem; }
.mf-page-content p,
.mf-page-content ul,
.mf-page-content ol { margin-bottom: 1.25rem; }
.mf-page-content ul, .mf-page-content ol { padding-left: 1.5rem; }
.mf-page-content a { color: var(--mf-ember); border-bottom: 1px solid currentColor; }
.mf-page-content blockquote {
  border-left: 2px solid var(--mf-ember);
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--mf-black);
  margin: 2rem 0;
}
.mf-post-thumb { margin-bottom: 3rem; }

.mf-blog-body { padding: 5rem 0 7rem; background: var(--mf-paper); }
.mf-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}
@media (max-width: 900px) { .mf-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mf-blog-grid { grid-template-columns: 1fr; } }

.mf-blog-card {}
.mf-blog-thumb { display: block; margin-bottom: 1.25rem; overflow: hidden; }
.mf-blog-thumb img { transition: transform 0.5s ease; width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }
.mf-blog-card:hover .mf-blog-thumb img { transform: scale(1.05); }
.mf-blog-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
  margin-bottom: 0.5rem;
}
.mf-blog-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.mf-blog-title a { color: var(--mf-black); }
.mf-blog-excerpt { font-size: 0.95rem; color: var(--mf-iron); margin-bottom: 1rem; }
.mf-blog-read {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mf-black);
  font-weight: 500;
}

.mf-pagination { padding-top: 4rem; text-align: center; }
.mf-pagination .nav-links,
.mf-pagination .page-numbers {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.mf-pagination a, .mf-pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(10, 10, 10, 0.2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mf-black);
  text-decoration: none;
}
.mf-pagination .current { background: var(--mf-black); color: var(--mf-paper); border-color: var(--mf-black); }

/* =========================================================
   404
   ========================================================= */

.mf-404 {
  padding: 8rem var(--pad-x);
  background: var(--mf-paper);
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.mf-404-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mf-404-inner .mf-eyebrow { justify-content: center; }
.mf-404-inner .mf-eyebrow::before { display: none; }
.mf-404-inner h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.mf-404-inner p {
  font-size: 1.125rem;
  color: var(--mf-iron);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.mf-404-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.mf-trust-strip {
  background: var(--mf-white);
  padding: 2rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.mf-trust-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-iron);
  font-weight: 500;
}
.mf-trust-item { display: inline-flex; align-items: center; gap: 0.75rem; }
.mf-trust-dot {
  width: 5px;
  height: 5px;
  background: var(--mf-ember);
  border-radius: 50%;
}

/* =========================================================
   FOOTER
   ========================================================= */

.mf-footer {
  background: var(--mf-black);
  color: var(--mf-ash);
  padding: 5rem 0 2rem;
}
.mf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .mf-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .mf-footer-grid { grid-template-columns: 1fr; }
}
.mf-footer-col {}
.mf-logo-text--footer { color: var(--mf-paper); font-size: 1.5rem; margin-bottom: 1rem; }
.mf-logo-text--footer span { color: var(--mf-iron); }
.mf-footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mf-steel);
  max-width: 280px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.mf-footer-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mf-paper);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.mf-footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mf-footer-list a {
  font-size: 14px;
  color: var(--mf-steel);
}
.mf-footer-list a:hover { color: var(--mf-paper); }
.mf-footer-small {
  font-size: 13px;
  color: var(--mf-steel);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.mf-footer-small a { color: var(--mf-paper); }

.mf-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mf-social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--mf-graphite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mf-ash);
  transition: all 0.3s ease;
}
.mf-social-links a:hover { border-color: var(--mf-paper); color: var(--mf-paper); }

.mf-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--mf-graphite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--mf-iron);
  text-transform: uppercase;
}
.mf-footer-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.mf-footer-menu a { color: var(--mf-iron); }
.mf-footer-menu a:hover { color: var(--mf-paper); }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.mf-whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--mf-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mf-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.mf-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* =========================================================
   WOOCOMMERCE BASIC COMPATIBILITY
   (minimal styling so WooCommerce pages don't look broken)
   ========================================================= */

.woocommerce-page .mf-main { padding-top: 3rem; }
.woocommerce .products { padding: 0 var(--pad-x); max-width: var(--max-width); margin: 0 auto; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  color: var(--mf-black);
  padding: 1rem 0 0.25rem !important;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-mono);
  font-size: 14px !important;
  color: var(--mf-black) !important;
  font-weight: 500;
}
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--mf-black) !important;
  color: var(--mf-paper) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  padding: 1rem 1.75rem !important;
  border-radius: 0 !important;
  border: 1px solid var(--mf-black) !important;
  transition: all 0.3s ease !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: transparent !important;
  color: var(--mf-black) !important;
}
.woocommerce-breadcrumb { display: none; }
.woocommerce-products-header__title.page-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 400 !important;
  padding: 2rem var(--pad-x) !important;
  max-width: var(--max-width);
  margin: 0 auto !important;
}

/* =========================================================
   PRINT
   ========================================================= */

@media print {
  .mf-header, .mf-footer, .mf-whatsapp-btn, .mf-announce, body::before { display: none !important; }
  body { background: white; }
}

/* =========================================================
   REVEAL ON SCROLL (JS-triggered)
   ========================================================= */

.mf-why-item,
.mf-shop-category,
.mf-story-chapter,
.mf-why-full-item,
.mf-contact-card {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .mf-why-item:not(.mf-revealed),
  .mf-shop-category:not(.mf-revealed),
  .mf-story-chapter:not(.mf-revealed),
  .mf-why-full-item:not(.mf-revealed),
  .mf-contact-card:not(.mf-revealed) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mf-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Header scrolled state */
.mf-header-scrolled {
  background: rgba(245, 243, 239, 0.98);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.06);
}
