/* ══════════════════════════════════════════════
   MODERN MACHINE PARTS & SUPPLIES — Figma layout (CNC/industrial)
   Loaded after style.css; overrides + new sections
══════════════════════════════════════════════ */

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.nw { white-space: nowrap; }

/* ─── INNER PAGE: solid header + page hero ─ */
.mm-solid-header { background: var(--primary); position: sticky; top: 0; z-index: 50; padding: 18px 0; }
.mm-page-hero { background: var(--primary-d); background-size: cover; background-position: center; color: #fff; padding: 64px 0 70px; text-align: center; position: relative; overflow: hidden; }
.mm-page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(8,16,33,.92), rgba(16,17,31,.82)), radial-gradient(circle at 70% 0%, rgba(255,103,91,.18), transparent 60%); }
.mm-page-hero .eyebrow-accent { position: relative; }
.mm-page-hero h1 { position: relative; font-family: var(--font-head); font-weight: 700; font-size: clamp(32px, 5vw, 60px); line-height: 1.06; letter-spacing: 0; margin: 12px auto 10px; max-width: 860px; text-wrap: pretty; overflow-wrap: normal; }
.mm-page-hero p { position: relative; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.55; max-width: 680px; margin: 0 auto; }
.mm-page-section { padding: 80px 0; }
.mm-prose { max-width: 760px; margin: 0 auto; }
.mm-prose h2 { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 30px; letter-spacing: -.01em; margin: 36px 0 14px; }
.mm-prose h2:first-child { margin-top: 0; }
.mm-prose p { font-weight: 300; font-size: 17px; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.mm-prose ul { margin: 0 0 16px 22px; }
.mm-prose li { font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.mm-callout { background: var(--primary); color: #fff; border-radius: 16px; padding: 32px; margin: 28px 0; }
.mm-callout h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.mm-callout p { color: rgba(255,255,255,.78); font-weight: 300; margin: 0; }

/* eyebrows */
.eyebrow-accent { color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.eyebrow-light  { color: rgba(255,255,255,.65); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.accent { color: var(--accent); }

h1, h2, h3, h4, h5 { font-family: var(--font-head); letter-spacing: -.01em; }

/* buttons */
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f1f1f1; }
.btn-ghost-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.btn-ghost-dark:hover { border-color: var(--primary); }

/* ─── HEADER (white) ─────────────────────── */
.mm-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; }
.mm-header .logo { color: var(--primary); }
.mm-header .logo-mark { background: var(--accent); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head); }
.mm-header .logo-text { font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.mm-header .nav a { color: var(--primary); font-weight: 500; }
.mm-header .nav a:hover { color: var(--accent); }
.mm-header .nav-cta-secondary { color: var(--text-sub) !important; }
.mm-header .nav-cta-primary { background: var(--accent); color: #fff !important; padding: 8px 16px; border-radius: 999px; }

/* ─── HERO (full-bleed image + overlaid nav) ─ */
.mm-hero-full { position: relative; min-height: 660px; color: #fff; display: flex; flex-direction: column; }
.mm-hero-full-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #243049 0%, #0F1A31 70%); z-index: 0; }
.mm-hero-vid, .mm-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 1; transform: translateZ(0); }
.mm-hero-photo--m { display: none; }
@media (max-width: 768px) {
  .mm-hero-photo--d { display: none; }
  .mm-hero-photo--m { display: block; }
  /* 모바일: 상단 헤더는 불투명 띠, 그 아래로 미디어를 9:16 전체 표시 (헤더가 영상 안 가림) */
  .mm-hero-full { min-height: 0; aspect-ratio: auto; height: calc(84px + 100vw * 16 / 9); }
  .mm-hero-full .mm-nav { background: #0F1A31; }
  .mm-hero-vid, .mm-hero-photo { top: 84px; height: calc(100vw * 16 / 9); }
}
/* 데스크톱: 가로 배너를 위쪽 기준으로 보여줘 상단 글자(MODERN…)가 안 잘리게 */
@media (min-width: 769px) { .mm-hero-full { min-height: 0; aspect-ratio: 1693 / 929; } .mm-hero-photo--d { object-position: center top; } }
.mm-hero-full-scrim { z-index: 2; }
.mm-nav, .mm-hero-full-inner { position: relative; z-index: 3; }
.mm-hero-full-bg::after { content: attr(data-label); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.18); }
.mm-hero-full-scrim { position: absolute; inset: 0; background: radial-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 100%); }
.mm-hero-full-inner { position: relative; margin-top: auto; margin-bottom: 0; padding-top: 120px; padding-bottom: 90px; }
.mm-hero-overline { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .9; color: #fff; }
.mm-hero-headline { font-family: var(--font-head); font-weight: 700; font-size: clamp(44px, 7vw, 96px); line-height: 1; letter-spacing: -.02em; color: #fff; margin: 14px 0 28px; max-width: 900px; }
.mm-hero-btn { display: inline-block; background: #fff; color: var(--primary); padding: 17px 33px; border-radius: 10px; font-weight: 600; font-size: 15px; }
.mm-hero-btn:hover { background: #f0f0f0; }

/* overlaid transparent nav */
.mm-nav { position: relative; z-index: 5; padding: 18px 0; }
.mm-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mm-logo { display: inline-flex; align-items: center; gap: 10px; min-width: 0; max-width: min(440px, 36vw); flex: 0 1 auto; font-family: var(--font-brand); font-weight: 700; font-size: clamp(17px, 1.55vw, 22px); line-height: .98; letter-spacing: 0; color: #fff; }
.mm-logo-img { display: none; width: 56px !important; height: 56px !important; max-width: 56px !important; max-height: 56px !important; object-fit: contain; border-radius: 8px; flex: 0 0 56px; background: #070707; }
.mm-logo-mark { display: none; }
.mm-logo-text { display: block; max-width: min(330px, 28vw); overflow-wrap: normal; text-wrap: balance; }
.mm-logo.has-brand-logo .mm-logo-img { display: block; }
.mm-logo.has-brand-logo .mm-logo-mark { display: none; }
.mm-logo.has-brand-logo .mm-logo-text { display: block; }
.mm-nav-items { display: flex; gap: clamp(16px, 2vw, 30px); align-items: center; font-size: 15px; flex: 0 0 auto; }
.mm-nav-items a { color: #fff; opacity: .92; font-weight: 500; }
.mm-nav-items a:hover { opacity: 1; color: #fff; }
.mm-nav-items a.active { color: var(--accent); opacity: 1; }

/* ─── SPECIALS ───────────────────────────── */
.mm-specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mm-special-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: .2s; }
.mm-special-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.mm-special-media .mm-img-placeholder { border-radius: 0; aspect-ratio: 16/10; font-size: 52px; }
.mm-special-media .mm-img-placeholder::after { display: none; }
.mm-special-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.mm-special-tag { background: rgba(255,103,91,.12); color: var(--accent); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.mm-special-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--primary); }
.mm-special-card p { font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--text); }
.mm-special-card .btn-coral { margin-top: 4px; }
.mm-empty-specials { grid-column: 1 / -1; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: clamp(28px, 5vw, 56px); text-align: center; box-shadow: var(--shadow); }
.mm-empty-specials h2 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); line-height: 1.05; color: var(--primary); margin: 12px auto 14px; letter-spacing: 0; }
.mm-empty-specials p { max-width: 760px; margin: 0 auto; color: var(--text); font-size: 17px; line-height: 1.7; font-weight: 300; }
.mm-empty-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 28px 0 36px; }
.mm-common-parts { border-top: 1px solid var(--border); padding-top: 28px; }
.mm-common-parts h3 { font-family: var(--font-head); color: var(--primary); font-size: 22px; margin-bottom: 16px; }
.mm-common-parts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mm-common-parts-grid a { display: flex; align-items: center; justify-content: center; min-height: 58px; padding: 14px 12px; border: 1px solid var(--border); border-radius: 10px; color: var(--primary); font-weight: 700; background: var(--bg); }
.mm-common-parts-grid a:hover { border-color: var(--accent); color: var(--accent); background: #fff; }
@media (max-width: 980px) { .mm-specials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .mm-common-parts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mm-specials-grid { grid-template-columns: 1fr; } .mm-common-parts-grid { grid-template-columns: 1fr; } .mm-empty-actions .btn-coral, .mm-empty-actions .btn-coral-outline { width: 100%; text-align: center; } .mm-logo { max-width: calc(100vw - 118px); font-size: 15px; line-height: .98; gap: 8px; } .mm-logo-img { width: 46px !important; height: 46px !important; max-width: 46px !important; max-height: 46px !important; flex-basis: 46px; } .mm-logo-text { max-width: 184px; } }
.mm-nav-cta { background: #fff; color: var(--primary); padding: 12px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; }
.mm-menu-toggle { display: none; }
.mm-menu-toggle span { background: #fff; }
@media (min-width: 981px) {
  .mm-menu-toggle { display: none !important; }
  /* 홈 헤더: 데스크탑에서 상단엔 투명 오버레이, 스크롤하면 고정 네이비 바로 전환 */
  .mm-hero-full .mm-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  }
  .mm-hero-full .mm-nav.mm-nav--stuck {
    background: var(--primary);
    box-shadow: 0 2px 16px rgba(0,0,0,.18);
    padding: 12px 0;
  }
}

/* ─── INTRO + STATS ──────────────────────── */
.mm-intro { background: var(--bg); padding: 90px 0 30px; }
.mm-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.mm-intro-shop h2, .mm-intro-stats h2 { font-family: var(--font-head); font-weight: 700; letter-spacing: -.01em; color: var(--primary); }
.mm-intro-shop h2 { font-size: 34px; line-height: 1.25; }
.mm-intro-shop p { margin-top: 14px; font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--text); max-width: 520px; }
.mm-intro-actions { display: flex; gap: 13px; margin-top: 28px; flex-wrap: wrap; }
.btn-coral { background: var(--accent); color: #fff; padding: 15px 26px; border-radius: 10px; font-weight: 600; font-size: 14px; display: inline-block; }
.btn-coral:hover { background: var(--accent-d); }
.btn-coral-outline { background: transparent; color: var(--accent); padding: 15px 26px; border-radius: 10px; font-weight: 600; font-size: 14px; border: 1px solid rgba(255,103,91,.41); display: inline-block; }
.btn-coral-outline:hover { background: rgba(255,103,91,.08); }

/* Admin-safe design presets */
html.mm-radius-sharp { --button-radius: 4px; --radius: 6px; }
html.mm-radius-default { --button-radius: 10px; --radius: 10px; }
html.mm-radius-soft { --button-radius: 18px; --radius: 14px; }
.btn, .btn-coral, .btn-coral-outline, .btn-white, .mm-nav-cta, .mm-hero-btn, .mm-field input, .mm-field textarea, .mm-quote-form { border-radius: var(--button-radius, 10px); }
html.mm-head-compact .mm-hero-headline { font-size: clamp(38px, 6vw, 82px); }
html.mm-head-large .mm-hero-headline { font-size: clamp(48px, 7.4vw, 104px); }
html.mm-head-compact .mm-page-hero h1 { font-size: clamp(30px, 4.5vw, 54px); }
html.mm-head-large .mm-page-hero h1 { font-size: clamp(36px, 5.6vw, 68px); }
html.mm-head-compact .mm-intro-shop h2,
html.mm-head-compact .mm-intro-stats h2,
html.mm-head-compact .mm-built-head h2,
html.mm-head-compact .section-head h2,
html.mm-head-compact .mm-quote-copy h2,
html.mm-head-compact .mm-cta-band h2 { font-size: clamp(26px, 3.1vw, 40px); }
html.mm-head-large .mm-intro-shop h2,
html.mm-head-large .mm-intro-stats h2,
html.mm-head-large .mm-built-head h2,
html.mm-head-large .section-head h2,
html.mm-head-large .mm-quote-copy h2,
html.mm-head-large .mm-cta-band h2 { font-size: clamp(34px, 4.2vw, 54px); }
html.mm-text-compact body,
html.mm-text-compact .mm-page-hero p,
html.mm-text-compact .mm-intro-shop p,
html.mm-text-compact .mm-intro-stats p,
html.mm-text-compact .mm-quote-copy p,
html.mm-text-compact .mm-prose p,
html.mm-text-compact .mm-prose li { font-size: 16px; }
html.mm-text-large body,
html.mm-text-large .mm-page-hero p,
html.mm-text-large .mm-intro-shop p,
html.mm-text-large .mm-intro-stats p,
html.mm-text-large .mm-quote-copy p,
html.mm-text-large .mm-prose p,
html.mm-text-large .mm-prose li { font-size: 19px; }
.mm-intro-stats h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.12; max-width: 540px; }
.mm-intro-stats p { margin-top: 22px; font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--text); max-width: 540px; }
.mm-stats-row { display: flex; gap: 44px; align-items: flex-start; margin-top: 34px; flex-wrap: wrap; }
.mm-stats-row .mm-stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(48px, 6vw, 84px); line-height: .9; letter-spacing: -.02em; color: var(--accent); }
.mm-stats-row .mm-stat .num .plus { color: var(--accent); }
.mm-stats-row .mm-stat .lbl { margin-top: 8px; font-weight: 300; font-size: 15px; color: var(--text); }
.mm-since { width: 180px; min-height: 150px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); padding: 24px 20px; text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.mm-since .small { font-weight: 300; font-size: 14px; color: var(--text); }
.mm-since .big { font-family: var(--font-head); font-weight: 700; font-size: 56px; line-height: 1; letter-spacing: -.02em; color: var(--primary); }

/* ─── (legacy split hero — unused) ───────── */
.mm-hero { background: var(--bg); padding: 70px 0 80px; overflow: hidden; }
.mm-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.mm-hero-copy h1 { font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02; font-weight: 800; margin: 16px 0 18px; color: var(--primary); }
.mm-hero-copy .sub { font-size: 18px; color: var(--text-sub); max-width: 540px; margin-bottom: 28px; }
.mm-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.mm-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.mm-stat { display: flex; flex-direction: column; }
.mm-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 38px; color: var(--primary); line-height: 1; }
.mm-stat .num .plus { color: var(--accent); }
.mm-stat .lbl { font-size: 13px; color: var(--text-sub); margin-top: 6px; max-width: 130px; }

.mm-hero-media { position: relative; }
.mm-hero-float { position: absolute; left: -24px; bottom: 28px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; gap: 12px; align-items: center; max-width: 300px; }
.mm-hero-float-icon { font-size: 28px; background: var(--bg); width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mm-hero-float-title { font-weight: 700; color: var(--primary); font-size: 15px; }
.mm-hero-float-sub { font-size: 12px; color: var(--text-sub); }

/* image placeholders (swap for real photos) */
.mm-img-placeholder { background: linear-gradient(135deg, #2a3142 0%, #1A1F2E 70%); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 64px; color: rgba(255,255,255,.25); width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden; }
.mm-img-placeholder::after { content: attr(data-label); position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-family: var(--font-body); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.mm-img-tall { aspect-ratio: 3/3.4; font-size: 110px; }

/* ─── BUILT ON (dark feature strip) ──────── */
.mm-built { background: var(--primary); color: #fff; padding: 90px 0; }
.mm-built-head { max-width: 760px; margin-bottom: 44px; }
.mm-built-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.05; margin: 14px 0 16px; }
.mm-built-head p { color: rgba(255,255,255,.7); font-size: 17px; }
.mm-feat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.mm-feat-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 24px 20px; transition: .2s; }
.mm-feat-card:hover { background: rgba(240,88,75,.12); border-color: var(--accent); transform: translateY(-4px); }
.mm-feat-icon { font-size: 30px; margin-bottom: 14px; }
/* data-hide-if-empty: 기본 숨김 → JS가 값이 있으면 data-show 부여해 표시.
   클로크가 실패/지연돼도 빈 버튼·배지가 잠깐 깜빡이지 않도록 이중 방어. */
[data-hide-if-empty]:not([data-show]) { display: none; }

/* feature 아이콘 이미지(로고 등) — 설정 시 이모지 대신 표시.
   카드 배경이 어두우므로 흰 플레이트를 깔아 어떤 로고(검정 요소 포함)도 또렷하게.
   카드 폭에 맞춰 크게 — 작은 칩이 아니라 로고 락업처럼. */
.mm-feat-icon-img { display: none; }
.mm-feat-icon-img[src] {
  display: block; width: 100%; max-width: 240px; height: auto; max-height: 96px;
  background: #fff; padding: 16px 18px; border-radius: 12px; box-sizing: border-box;
  object-fit: contain; margin: 0 0 4px;
}
.mm-feat-icon:has(.mm-feat-icon-img[src]) .mm-feat-icon-emoji { display: none; }
.mm-feat-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.mm-feat-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ─── PRODUCTS (numbered cards) ──────────── */
.mm-services { background: var(--bg); }
.mm-num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.mm-num-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr 150px; transition: .2s; }
.mm-num-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.mm-num-body { padding: 26px 24px; }
.mm-num { font-family: var(--font-head); font-weight: 800; font-size: 56px; line-height: 1; color: var(--mute); display: block; margin-bottom: 6px; }
.mm-num.coral { color: var(--accent); }
.mm-num-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.mm-num-card p { font-size: 14px; color: var(--text-sub); line-height: 1.55; margin-bottom: 14px; }
.mm-learn { color: var(--accent); font-weight: 700; font-size: 14px; }
.mm-num-media { position: relative; }
.mm-num-media .mm-img-placeholder { height: 100%; border-radius: 0; aspect-ratio: auto; font-size: 40px; }
.mm-num-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-num-img--contain { object-fit: contain; object-position: center; background: #fff; padding: 6px 0; }
/* 로고 카드: 카드 전체를 배경으로 채움 (투명도 조절 가능) */
.mm-num-card--bg { grid-template-columns: 1fr; position: relative; overflow: hidden; }
.mm-num-bg { position: absolute; inset: 0; background-size: contain; background-position: center; background-repeat: no-repeat; pointer-events: none; }
.mm-num-card--bg .mm-num-body { position: relative; z-index: 1; background: transparent; }
.mm-num-media .mm-img-placeholder::after { display: none; }

/* ─── QUOTE BAND (dark + form) ───────────── */
.mm-quote-band { position: relative; background: var(--primary-d); color: #fff; padding: 90px 0; overflow: hidden; }
.mm-quote-bg { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(8,15,30,.96) 0%, rgba(10,18,35,.94) 58%, rgba(10,18,35,.88) 100%), url('../assets/band.jpg?v=1') center/cover no-repeat; }
.mm-quote-grid { position: relative; display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: center; }
.mm-quote-copy h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin: 14px 0 14px; }
.mm-quote-copy p { color: rgba(255,255,255,.72); font-size: 17px; margin-bottom: 18px; }
.mm-quote-points { list-style: none; padding: 0; display: grid; gap: 8px; }
.mm-quote-points li { color: rgba(255,255,255,.9); font-size: 15px; }
.mm-quote-form { background: rgba(12,22,42,.74); border: 1px solid rgba(255,255,255,.24); border-radius: 18px; padding: 28px; box-shadow: 0 24px 70px rgba(0,0,0,.32); backdrop-filter: blur(8px); min-width: 0; }
.mm-quote-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.mm-field { margin-bottom: 12px; }
.mm-field-pair { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 11px; }
.mm-field input, .mm-field textarea { width: 100%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 9px; padding: 13px 14px; color: #fff; font-family: var(--font-body); font-size: 15px; }
.mm-field input::placeholder, .mm-field textarea::placeholder { color: rgba(255,255,255,.68); }
.mm-field input:focus, .mm-field textarea:focus { outline: none; border-color: var(--accent); }
.mm-form-note { text-align: center; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 12px; }
.mm-form-note a { color: var(--accent); }
.mm-call-note { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 3px 10px; }
.mm-call-note span, .mm-call-note a { white-space: nowrap; }
.mm-file-label { display: block; background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.25); border-radius: 9px; padding: 13px 14px; color: rgba(255,255,255,.75); font-size: 14px; cursor: pointer; font-family: var(--font-form); }
.mm-file-label:hover { border-color: var(--accent); }
.mm-pref { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 4px 0 14px; font-size: 13px; color: rgba(255,255,255,.8); font-family: var(--font-form); }
.mm-pref span { width: 100%; color: rgba(255,255,255,.55); }
.mm-pref input[type=radio] { display: none; }
.mm-pref label { flex: 1; min-width: 72px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 10px; cursor: pointer; font-weight: 700; font-size: 15px; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.25); border-radius: 10px; background: rgba(255,255,255,.04); transition: all .15s; user-select: none; }
.mm-pref label:hover { border-color: var(--accent); color: #fff; }
.mm-pref label.checked,
.mm-pref label:has(input:checked) { border-color: var(--accent); background: rgba(255,103,91,.20); color: #fff; }
.mm-file-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.mm-file-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.25); }
.mm-quote-form input, .mm-quote-form textarea { font-family: var(--font-form); }

/* ─── INDUSTRIES ─────────────────────────── */
.mm-ind-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
.mm-ind-card { position: relative; border-radius: 14px; overflow: hidden; }
.mm-ind-card .mm-img-placeholder { aspect-ratio: 3/4; border-radius: 14px; }
.mm-ind-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; display: block; }
.mm-ind-card span { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 12px; background: linear-gradient(to top, rgba(16,21,31,.92), transparent); color: #fff; font-weight: 700; font-size: 15px; text-align: center; }
.mm-ind-cta { text-align: center; margin-top: 32px; }

/* ─── TESTIMONIALS ───────────────────────── */
.mm-testi-card { max-width: 760px; margin: 32px auto 0; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 40px; text-align: center; position: relative; box-shadow: var(--shadow-sm); }
.mm-quote-mark { font-family: var(--font-head); font-size: 80px; color: var(--accent); line-height: .6; height: 36px; }
.mm-testi-text { font-size: 19px; color: var(--text); line-height: 1.6; margin-bottom: 24px; }
.mm-testi-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.mm-testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.mm-testi-name { font-weight: 700; color: var(--primary); }
.mm-testi-role { font-size: 13px; color: var(--text-sub); }
.mm-testi-note { text-align: center; font-size: 12px; color: var(--text-sub); margin-top: 18px; }

/* ─── GALLERY ────────────────────────────── */
.mm-gallery-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 38px; }
.mm-gallery-filter:empty { display: none; }
.gf-tab { border: 2px solid var(--border); background: #fff; color: var(--primary); padding: 13px 28px; border-radius: 999px; font-size: 16px; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: all .18s ease; }
.gf-tab:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.09); }
.gf-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 7px 20px rgba(255,103,91,.38); }
.gf-tab.active:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 9px 24px rgba(255,103,91,.45); }
@media (max-width: 560px){
  .mm-gallery-filter { gap: 8px; margin-bottom: 24px; }
  .gf-tab { font-size: 13px; padding: 8px 15px; border-width: 1.5px; font-weight: 700; }
  .gf-tab:hover, .gf-tab.active:hover { transform: none; }
}
.mm-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mm-gallery-item { border-radius: 14px; overflow: hidden; }
.mm-gallery-item .mm-img-placeholder { aspect-ratio: 4/3; border-radius: 14px; }
.mm-gallery-wide { grid-column: span 2; }
.mm-gallery-wide .mm-img-placeholder { aspect-ratio: 8/3; }
@media (max-width: 760px) { .mm-gallery-grid { grid-template-columns: 1fr 1fr; } .mm-gallery-wide { grid-column: span 2; } }

/* ─── CONTACT ────────────────────────────── */
.mm-contact-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
.mm-contact-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px 18px; text-align: center; transition: .2s; display: block; }
.mm-contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--accent); }
.mm-contact-card .ic { font-size: 26px; margin-bottom: 10px; }
.mm-contact-card .lb { font-size: 12px; color: var(--text-sub); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.mm-contact-card .vl { font-weight: 700; color: var(--primary); font-size: 15px; }

/* ─── CTA BANNER (coral) ─────────────────── */
.mm-cta-band { background: var(--accent); color: #fff; text-align: center; padding: 70px 24px; }
.mm-cta-inner { max-width: 640px; margin: 0 auto; }
.mm-cta-band h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin-bottom: 12px; }
.mm-cta-band p { font-size: 17px; opacity: .92; margin-bottom: 26px; }

/* ─── FOOTER ─────────────────────────────── */
.mm-footer { background: var(--primary); color: #fff; padding: 56px 0 28px; }
.mm-footer-brand-row { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4.4vw, 52px); padding-bottom: 32px; margin-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mm-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; }
.mm-footer .footer-brand h4 { font-size: 19px; margin-bottom: 12px; }
.mm-footer .footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; }
.mm-footer h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 14px; }
.mm-footer .footer-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.mm-footer .footer-col a, .mm-footer .footer-col li { color: rgba(255,255,255,.65); font-size: 14px; }
.mm-footer .footer-col a:hover { color: #fff; }
.mm-footer .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.5); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 980px) {
  .mm-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .mm-hero-media { max-width: 460px; }
  .mm-intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .mm-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-num-grid { grid-template-columns: 1fr; }
  .mm-quote-grid { grid-template-columns: 1fr; }
  .mm-ind-row { grid-template-columns: repeat(3, 1fr); }
  .mm-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-footer .footer-grid { grid-template-columns: 1fr 1fr; }

  .mm-hero-full .mm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(15,26,49,.72);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
  }
  .mm-hero-full .mm-logo {
    max-width: calc(100% - 64px);
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
  .mm-nav-cta { display: none; }
  .mm-menu-toggle {
    display: flex !important;
    flex-direction: column;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
    border-radius: 10px;
    position: fixed !important;
    right: 18px !important;
    top: 18px !important;
    transform: none !important;
    z-index: 999;
    color: transparent !important;
    font-size: 0 !important;
    background: var(--accent) !important;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
  }
  .mm-hero-full .mm-menu-toggle {
    position: fixed !important;
    right: 18px !important;
    top: 18px !important;
    transform: none !important;
  }
  .mm-menu-toggle::before,
  .mm-menu-toggle::after { display: none; }
  .mm-menu-toggle .mm-menu-icon {
    display: none !important;
    width: 0;
    height: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 1;
    font-weight: 700;
  }
  .mm-menu-toggle span:not(.mm-menu-icon) {
    display: block !important;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    flex: 0 0 2px;
  }
  .mm-menu-toggle .mm-menu-icon { display: none !important; }
  .mm-nav-items { position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; flex-direction: column; gap: 4px; background: var(--primary); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px; display: none; box-shadow: var(--shadow-lg); }
  .mm-nav-items.open { display: flex; }
  .mm-nav-items a { padding: 12px 10px; border-radius: 8px; width: 100%; }
}
@media (max-width: 560px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .mm-hero-full { min-height: 660px; }
  .mm-hero-photo { object-position: 55% center; }
  .mm-hero-full-inner { padding-top: 96px; padding-bottom: 72px; }
  .mm-hero-overline { display: block; max-width: 22rem; font-size: 12px; line-height: 1.5; letter-spacing: .12em; text-wrap: pretty; }
  .mm-hero-headline { font-size: clamp(35px, 11vw, 42px); line-height: 1.08; letter-spacing: 0; max-width: none; overflow-wrap: break-word; }
  .mm-hero-btn { padding: 15px 24px; min-width: 166px; text-align: center; }
  .mm-intro-shop h2 { font-size: clamp(28px, 8.4vw, 32px); line-height: 1.16; max-width: none; text-wrap: pretty; overflow-wrap: break-word; }
  .mm-intro-stats h2, .mm-built-head h2, .section-head h2 { font-size: clamp(28px, 8.4vw, 34px); line-height: 1.16; text-wrap: pretty; overflow-wrap: break-word; }
  .mm-intro-shop p, .mm-intro-stats p { font-size: 16px; line-height: 1.65; text-wrap: pretty; }

  /* 홈 통계: 모바일에서 가운데 정렬 (짧은 요소 = 가운데) */
  .mm-intro-stats { text-align: center; }
  .mm-intro-stats h2, .mm-intro-stats p { margin-left: auto; margin-right: auto; }
  .mm-stats-row { justify-content: center; gap: 26px 40px; }
  .mm-stats-row .mm-stat { text-align: center; }
  .mm-stats-row .mm-stat .lbl { max-width: none; }
  .mm-since { width: 100%; max-width: 220px; margin: 6px auto 0; text-align: center; }

  /* 내부 페이지 히어로: 가운데 정렬 유지 + 좁은 폭 제약 해제 */
  .mm-page-hero { padding: 48px 0 54px; text-align: center; }
  .mm-page-hero .container { max-width: 100%; }
  .mm-page-hero h1 { font-size: clamp(29px, 9vw, 42px); line-height: 1.1; max-width: 100%; margin-left: auto; margin-right: auto; overflow-wrap: break-word; }
  .mm-page-hero p { font-size: 15.5px; line-height: 1.55; max-width: 100%; margin-left: auto; margin-right: auto; text-wrap: pretty; overflow-wrap: break-word; }
  /* 긴 안내문이 들어간 히어로(Contact 등): 제목·eyebrow는 가운데, 본문 문단만 왼쪽 정렬 */
  .mm-page-hero--longbody p { text-align: left; }
  .mm-page-section { padding: 58px 0; }

  /* 긴 본문: 왼쪽 정렬(가독성) + 컨테이너 폭 채움(좌우 여백 균형) — 좁은 280px 제약 해제 */
  .mm-prose { max-width: 100%; }
  .mm-prose h2 { font-size: clamp(27px, 8vw, 32px); line-height: 1.16; max-width: 100%; overflow-wrap: break-word; }
  .mm-prose p, .mm-prose li { font-size: 16px; line-height: 1.68; max-width: 100%; text-wrap: pretty; overflow-wrap: break-word; }
  .mm-callout { padding: 24px 20px; border-radius: 14px; max-width: 100%; }
  .eyebrow-accent, .eyebrow-light, .eyebrow { font-size: 12px; letter-spacing: 1.4px; }
  .mm-quote-band { padding: 58px 0; }
  .mm-quote-grid { gap: 28px; }
  .mm-quote-copy h2 { font-size: clamp(28px, 8vw, 36px); line-height: 1.1; text-wrap: pretty; }
  .mm-quote-copy p { font-size: 15.5px; line-height: 1.6; max-width: 100%; text-wrap: pretty; overflow-wrap: break-word; }
  .mm-quote-points { gap: 10px; }
  .mm-quote-points li { font-size: 15px; line-height: 1.45; text-wrap: pretty; }
  .mm-quote-form { padding: 24px 18px; border-radius: 16px; }
  .mm-quote-form h3 { font-size: 21px; }
  .mm-field-pair { grid-template-columns: 1fr; gap: 12px; }
  .mm-field input, .mm-field textarea { font-size: 16px; padding: 13px 13px; }
  .mm-form-note { font-size: 13px; line-height: 1.45; }
  .mm-hero { padding: 44px 0 56px; }
  .mm-stats { gap: 24px; }
  .mm-stat .num { font-size: 30px; }
  .mm-feat-grid { grid-template-columns: 1fr; }

  /* 제품 카드: 모바일에서도 사진을 카드 위에 표시 (예전엔 display:none 으로 숨겨짐) */
  .mm-num-card { grid-template-columns: 1fr; }
  .mm-num-media { order: -1; }
  .mm-num-media .mm-img-placeholder { height: auto; aspect-ratio: 16/9; }
  .mm-num-img { height: auto; aspect-ratio: 16/9; }

  .mm-ind-row { grid-template-columns: repeat(2, 1fr); }
  .mm-contact-grid { grid-template-columns: 1fr; }
  .mm-gallery-grid { grid-template-columns: 1fr; }
  .mm-gallery-wide { grid-column: span 1; }
  .mm-gallery-wide .mm-img-placeholder { aspect-ratio: 4/3; }
  .mm-hero-float { left: 8px; right: 8px; max-width: none; }
}

/* ═══════════════════════════════════════════════
   READABILITY PASS — larger, clearer text site-wide
═══════════════════════════════════════════════ */
.mm-hero-overline { font-size: 16px; font-weight: 600; letter-spacing: .1em; opacity: .95; }
.eyebrow-accent, .eyebrow-light, .eyebrow { font-size: 14px; }
.mm-hero-headline { line-height: 1.04; }

/* intro + stats */
.mm-intro-shop h2 { font-size: 38px; }
.mm-intro-shop p, .mm-intro-stats p { font-size: 18px; line-height: 1.75; }
.mm-stats-row .mm-stat .lbl { font-size: 15px; }

/* dark feature strip */
.mm-built-head p { font-size: 18px; line-height: 1.6; }
.mm-feat-card h3 { font-size: 18px; }
.mm-feat-card p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.74); }

/* section headers + products */
.section-head p { font-size: 17px; line-height: 1.65; }
.mm-num-card h3 { font-size: 22px; }
.mm-num-card p { font-size: 15px; line-height: 1.6; }
.mm-learn { font-size: 15px; }

/* quote band */
.mm-quote-copy p { font-size: 18px; line-height: 1.65; }
.mm-quote-points li { font-size: 16px; }
.mm-quote-form input, .mm-quote-form textarea { font-size: 16px; }

/* industries / testimonials */
.mm-ind-card span { font-size: 16px; }
.mm-testi-text { font-size: 22px; line-height: 1.65; }

/* contact cards */
.mm-contact-card .ic { font-size: 30px; }
.mm-contact-card .lb { font-size: 13px; }
.mm-contact-card .vl { font-size: 17px; }

/* nav + buttons */
.mm-nav-items { font-size: 16px; }
.mm-nav-cta, .mm-hero-btn, .btn-coral, .btn-coral-outline { font-size: 15px; }

/* page hero (inner pages) */
.mm-page-hero p { font-size: 18px; }
.mm-prose p, .mm-prose li { font-size: 18px; }
