@charset "utf-8";

/* ==========================================================================
   MOI Fit Golf — moifitgolf.online
   Design language: an instrument-calibration bench, not a pro shop. Deep
   navy + brushed silver + a single laser-cyan accent. Corner registration
   brackets on every framed panel, a faint graph-paper grid behind data
   readouts, monospace numerals wherever a real measurement is shown.
   Futura-family display, Optima/Segoe body, a monospace readout face.
   Hand written for this domain. No framework, no CDN, no build step.
   ========================================================================== */

:root {
  --ink:         #0b1b2b;
  --ink-soft:    #3c5570;
  --ink-faint:   #6c8194;
  --navy-deep:   #071420;
  --navy:        #0f2740;
  --navy-mid:    #16324f;
  --navy-line:   rgba(255, 255, 255, 0.1);
  --steel:       #5b7690;
  --silver:      #aebdc9;
  --silver-hi:   #dde5ea;
  --ice:         #f2f6f8;
  --card:        #ffffff;
  --line:        #d6dfe5;
  --line-strong: #b6c4cd;
  --cyan:        #1fb2cf;
  --cyan-dark:   #0e7f97;
  --cyan-pale:   #e3f6fa;
  --alert:       #a8402f;

  --font-display: 'Futura', 'Century Gothic', 'Avenir Next', 'Trebuchet MS', sans-serif;
  --font-body:    'Optima', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'SF Mono', 'Consolas', 'Menlo', 'Roboto Mono', monospace;

  --wrap: 1180px;
  --gutter: 24px;
  --ease: cubic-bezier(0.25, 0.7, 0.3, 1);
  --lift: 0 18px 40px -24px rgba(7, 20, 32, 0.35);
  --lift-sm: 0 8px 18px -12px rgba(7, 20, 32, 0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.mfg {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--ink-soft);
  background: var(--ice);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-dark); text-decoration: none; }
a:hover { color: var(--cyan); }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.05rem, 1.4rem + 2.6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1.05em; }
address { font-style: normal; }
strong { color: var(--navy); }

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

.mfg-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 0.8em 1.3em;
  z-index: 1000;
  font-weight: 700;
}
.mfg-skip:focus { left: 1em; top: 1em; }

.mfg-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.mfg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85em 1.7em;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}
.mfg-btn--primary { background: var(--cyan); color: var(--navy-deep); }
.mfg-btn--primary:hover { background: var(--cyan-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--lift-sm); }
.mfg-btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--navy); }
.mfg-btn--ghost:hover { border-color: var(--cyan-dark); color: var(--cyan-dark); transform: translateY(-2px); }
.mfg-btn--panel { background: var(--navy); color: var(--silver-hi); border-color: var(--navy); }
.mfg-btn--panel:hover { background: var(--navy-mid); transform: translateY(-2px); }
.mfg-btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Topline ---------- */
.mfg-topline { background: var(--navy-deep); color: var(--silver); border-bottom: 1px solid var(--navy-line); }
.mfg-topline__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.mfg-topline__readout { display: flex; align-items: center; gap: 16px; }
.mfg-topline__chip { color: var(--silver); }
.mfg-topline__chip--hide-sm { color: var(--steel); }
.mfg-topline__phone { color: var(--cyan); font-weight: 700; }
.mfg-topline__phone:hover { color: var(--cyan-pale); }
@media (max-width: 760px) {
  .mfg-topline__chip--hide-sm { display: none; }
}
@media (max-width: 520px) {
  .mfg-topline__row { font-size: 0.68rem; }
}

/* ---------- Masthead ---------- */
.mfg-mast {
  background: rgba(15, 39, 64, 0.97);
  border-bottom: 1px solid var(--navy-line);
  position: sticky;
  top: 0;
  z-index: 300;
}
.mfg-mast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  position: relative;
}
.mfg-brand { display: flex; align-items: center; gap: 14px; }
.mfg-brand__gauge {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  flex: none;
}
.mfg-brand__gauge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dotted var(--silver);
  border-radius: 50%;
}
.mfg-brand__needle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 13px;
  background: var(--cyan);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(35deg);
}
.mfg-brand__text { display: flex; flex-direction: column; }
.mfg-brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: #fff; letter-spacing: 0.01em; }
.mfg-brand__tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }

.mfg-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--navy-line);
  border-radius: 2px;
}
.mfg-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--silver-hi); transition: transform var(--ease), opacity var(--ease); }
.mfg-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mfg-toggle.is-active span:nth-child(2) { opacity: 0; }
.mfg-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mfg-nav { display: flex; align-items: center; gap: 30px; }
.mfg-nav__list { display: flex; align-items: center; gap: 22px; }
.mfg-nav__item a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--silver-hi);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.mfg-nav__item a:hover { color: var(--cyan); }
.mfg-nav__item.is-here a { color: var(--cyan); border-bottom-color: var(--cyan); }
.mfg-nav__cta { white-space: nowrap; }

@media (max-width: 940px) {
  .mfg-toggle { display: flex; }
  .mfg-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--navy-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 22px;
  }
  .mfg-nav.is-open { display: flex; }
  .mfg-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .mfg-nav__item a { display: block; padding: 12px 2px; border-bottom: 1px solid var(--navy-line); }
  .mfg-nav__item.is-here a { border-bottom-color: var(--cyan); }
  .mfg-nav__cta { margin-top: 14px; justify-content: center; }
}

.mfg-main { display: block; }

/* ---------- Framed panel (corner registration brackets) ---------- */
.mfg-frame {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 30px;
}
.mfg-frame::before, .mfg-frame::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-color: var(--cyan);
  pointer-events: none;
}
.mfg-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.mfg-frame::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.mfg-frame--dark {
  background: var(--navy);
  border-color: var(--navy-line);
  color: var(--silver-hi);
}
.mfg-frame--dark h3 { color: #fff; }
.mfg-frame--dark p { color: var(--silver); }

/* ---------- Grid texture (used behind readout panels) ---------- */
.mfg-grid-bg {
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* ---------- Hero ---------- */
.mfg-hero { padding: 64px 0 56px; background: var(--ice); }
.mfg-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 56px; align-items: center; }
.mfg-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 14px;
}
.mfg-hero__lede { font-size: 1.06rem; max-width: 46ch; }
.mfg-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.mfg-hero__panel { background: var(--navy); border-color: var(--navy-line); color: var(--silver-hi); }
.mfg-hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--navy-line);
}
.mfg-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
}
.mfg-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(31, 178, 207, 0.25); }

.mfg-readout-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--navy-line);
  font-size: 0.92rem;
}
.mfg-readout-row:last-child { border-bottom: none; }
.mfg-readout-row span:first-child { color: var(--silver); }
.mfg-readout-row span:last-child { font-family: var(--font-mono); color: #fff; font-weight: 600; }

/* ---------- MOI bar chart (matched vs. graduated) ---------- */
.mfg-chart__row { margin-bottom: 16px; }
.mfg-chart__row:last-child { margin-bottom: 0; }
.mfg-chart__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  margin-bottom: 6px;
}
.mfg-chart__label span:first-child { color: var(--silver); }
.mfg-chart__label strong { font-family: var(--font-mono); color: #fff; }
.mfg-chart__track { height: 9px; background: rgba(255, 255, 255, 0.09); overflow: hidden; }
.mfg-chart__fill { height: 100%; background: var(--cyan); }
.mfg-chart__fill--flat { background: var(--silver); }

/* ---------- Stat strip ---------- */
.mfg-stats { background: var(--navy-deep); padding: 34px 0; }
.mfg-stats__row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; text-align: center; }
.mfg-stat__num { display: block; font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--cyan); }
.mfg-stat__label { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--steel); }
@media (max-width: 760px) { .mfg-stats__row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; } }

/* ---------- Sections ---------- */
.mfg-section { padding: 68px 0; }
.mfg-section--alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mfg-section__head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.mfg-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 10px;
}
.mfg-two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 52px; align-items: center; }
.mfg-text-center { text-align: center; }

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

/* ---------- Cards ---------- */
.mfg-card { background: var(--card); border: 1px solid var(--line); padding: 26px; }
.mfg-card h3 { margin-bottom: 0.4em; }
.mfg-card p:last-child { margin-bottom: 0; }
.mfg-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--cyan-pale);
  border: 1px solid var(--cyan);
  margin-bottom: 16px;
}
.mfg-card__link { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 0.9rem; }

/* ---------- Page header banner ---------- */
.mfg-page-head { background: var(--navy); color: var(--silver-hi); padding: 56px 0 44px; position: relative; overflow: hidden; }
.mfg-page-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--navy-line) 1px, transparent 1px), linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.mfg-page-head .mfg-wrap { position: relative; }
.mfg-crumb { display: block; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.mfg-page-head h1 { color: #fff; }
.mfg-lede { max-width: 60ch; color: var(--silver); font-size: 1.05rem; }

/* ---------- Timeline (calibration sequence) ---------- */
.mfg-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: mfg-step; }
.mfg-timeline__item { position: relative; padding-top: 42px; border-top: 2px solid var(--cyan); }
.mfg-timeline__item::before {
  counter-increment: mfg-step;
  content: counter(mfg-step, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--ice);
  padding-right: 6px;
}
@media (max-width: 900px) { .mfg-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .mfg-timeline { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Testimonials ---------- */
.mfg-quote { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--cyan); padding: 26px; }
.mfg-quote__stars { color: var(--cyan-dark); letter-spacing: 2px; display: block; margin-bottom: 12px; }
.mfg-quote__person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.mfg-quote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  flex: none;
}
.mfg-quote__person strong { display: block; font-size: 0.92rem; }
.mfg-quote__person span { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- Team ---------- */
.mfg-person__photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mfg-person__role { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 6px; }

/* ---------- Brand tiles ---------- */
.mfg-brand-tile { background: var(--card); border: 1px solid var(--line); padding: 20px; text-align: center; }
.mfg-brand-tile__mark {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--navy);
}
.mfg-brand-tile strong { display: block; color: var(--navy); margin-bottom: 4px; }
.mfg-brand-tile span { display: block; font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 10px; }
.mfg-brand-tile .mfg-chart__track { height: 6px; }

/* ---------- Table ---------- */
.mfg-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.mfg-table th, .mfg-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.mfg-table th { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--steel); background: var(--navy); }
.mfg-table tbody tr:last-child td { border-bottom: none; }
.mfg-table tbody tr:nth-child(even) { background: var(--card); }
.mfg-table tbody tr:nth-child(odd) { background: var(--ice); }
.mfg-table td:last-child { font-family: var(--font-mono); text-align: right; }

/* ---------- Pricing ---------- */
.mfg-price-card { display: flex; flex-direction: column; text-align: left; }
.mfg-price-card--hi { border-color: var(--cyan); box-shadow: var(--lift-sm); }
.mfg-price {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0 6px;
}
.mfg-price span { font-family: var(--font-body); font-size: 0.92rem; font-weight: 400; color: var(--ink-faint); text-transform: none; letter-spacing: 0; }
.mfg-price-card ul { margin: 16px 0 22px; }
.mfg-price-card li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 0.92rem; }
.mfg-price-card li::before { content: '\2014'; position: absolute; left: 0; color: var(--cyan-dark); }
.mfg-price-card .mfg-btn { margin-top: auto; }

/* ---------- Check list ---------- */
.mfg-check-list li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.mfg-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan-dark);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.mfg-faq-item { background: var(--card); border: 1px solid var(--line); margin-bottom: 12px; padding: 4px 22px; }
.mfg-faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mfg-faq-item summary::-webkit-details-marker { display: none; }
.mfg-faq-item summary::after { content: '+'; font-family: var(--font-mono); font-size: 1.3rem; color: var(--cyan-dark); flex: none; }
.mfg-faq-item[open] summary::after { content: '\2212'; }
.mfg-faq-item p { padding-bottom: 18px; margin: 0; }

/* ---------- Forms ---------- */
.mfg-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.mfg-field { margin-bottom: 18px; }
.mfg-field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.01em; }
.mfg-field input, .mfg-field select, .mfg-field textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border: 1px solid var(--line-strong);
  background: var(--ice);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.96rem;
  border-radius: 2px;
}
.mfg-field input:focus, .mfg-field select:focus, .mfg-field textarea:focus { outline: none; border-color: var(--cyan-dark); background: var(--card); }
.mfg-field textarea { resize: vertical; }
.mfg-note { font-size: 0.84rem; color: var(--ink-faint); }
@media (max-width: 620px) { .mfg-form-row { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Locator panel ---------- */
.mfg-locate {
  position: relative;
  height: 220px;
  background: var(--navy);
  overflow: hidden;
  border: 1px solid var(--navy-line);
}
.mfg-locate--lg { height: 280px; }
.mfg-locate__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--navy-line) 1px, transparent 1px), linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 24px 24px;
}
.mfg-locate__cross { position: absolute; left: 50%; top: 50%; width: 60px; height: 60px; transform: translate(-50%, -50%); border: 1px solid var(--cyan); border-radius: 50%; }
.mfg-locate__cross::before, .mfg-locate__cross::after { content: ''; position: absolute; background: var(--cyan); }
.mfg-locate__cross::before { left: -14px; top: 50%; width: 88px; height: 1px; transform: translateY(-50%); }
.mfg-locate__cross::after { top: -14px; left: 50%; height: 88px; width: 1px; transform: translateX(-50%); }
.mfg-locate__label { position: absolute; left: 18px; bottom: 18px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--silver-hi); text-transform: uppercase; letter-spacing: 0.06em; }
.mfg-locate__coords { position: absolute; right: 18px; bottom: 18px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--cyan); }

/* ---------- Post cards / article ---------- */
.mfg-post-card { display: flex; flex-direction: column; }
.mfg-post-meta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 10px; display: block; }
.mfg-article { max-width: 720px; margin: 0 auto; font-size: 1.03rem; }
.mfg-article h2 { margin-top: 1.7em; }
.mfg-article blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  background: var(--card);
  color: var(--navy);
  font-style: italic;
}
.mfg-article-head { max-width: 720px; margin: 0 auto; }

/* ---------- CTA band ---------- */
.mfg-cta { background: var(--navy-deep); color: var(--silver-hi); padding: 60px 0; text-align: center; }
.mfg-cta h2 { color: #fff; }
.mfg-cta p { color: var(--silver); max-width: 56ch; margin-left: auto; margin-right: auto; }
.mfg-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* ---------- Error page ---------- */
.mfg-error { padding: 100px 0; text-align: center; }
.mfg-error__code {
  display: block;
  font-family: var(--font-mono);
  font-size: 5.2rem;
  font-weight: 700;
  color: var(--line-strong);
  line-height: 1;
  margin-bottom: 10px;
}

/* ---------- Footer ---------- */
.mfg-foot { background: var(--navy-deep); color: var(--silver); padding: 60px 0 0; }
.mfg-foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--navy-line); }
.mfg-foot h3 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.mfg-foot .mfg-brand__name { color: #fff; font-family: var(--font-display); font-size: 1.1rem; display: block; margin-bottom: 12px; }
.mfg-foot a { color: var(--silver); }
.mfg-foot a:hover { color: var(--cyan); }
.mfg-foot__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.mfg-foot__chips li { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid var(--navy-line); padding: 6px 10px; color: var(--steel); }
.mfg-foot__links li { margin-bottom: 9px; }
.mfg-hours li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--navy-line); font-size: 0.88rem; }
.mfg-hours li:last-child { border-bottom: none; }
.mfg-foot__base { padding: 20px 0; }
.mfg-foot__base-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: var(--steel); }

@media (max-width: 900px) {
  .mfg-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .mfg-foot__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Reveal on scroll (JS-gated so no-JS never hides content) ---------- */
.js-on .mfg-rise { opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.js-on .mfg-rise.is-lit { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .mfg-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .mfg-two-col { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .mfg-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mfg-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  body.mfg { font-size: 16px; }
  .mfg-grid--2, .mfg-grid--3, .mfg-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .mfg-section { padding: 48px 0; }
  .mfg-hero { padding: 44px 0 40px; }
  .mfg-stats__row { grid-template-columns: minmax(0, 1fr); }
  .mfg-foot__base-row { flex-direction: column; }
}
