/* ============================================================
   Mercan Fliesen — main stylesheet
   Editorial luxury minimalism. See docs/DESIGN.md.
   Tokens from theme.json (--wp--preset--color/--font-family/--spacing).
   ============================================================ */

:root {
	--mf-navy: var(--wp--preset--color--navy, #16265E);
	--mf-navy-deep: var(--wp--preset--color--navy-deep, #0E1631);
	--mf-coral: var(--wp--preset--color--coral, #E8541E);
	--mf-ink: var(--wp--preset--color--ink, #1A1F2E);
	--mf-muted: var(--wp--preset--color--muted, #6A6F7B);
	--mf-canvas: var(--wp--preset--color--canvas, #FFFFFF);
	--mf-surface: var(--wp--preset--color--surface, #F7F5F2);
	--mf-border: var(--wp--preset--color--border, #E7E3DD);
	--mf-on-dark: var(--wp--preset--color--on-dark, #F5F3EF);
	--mf-on-dark-muted: var(--wp--preset--color--on-dark-muted, #C9CCD6);
	--mf-on-dark-dim: var(--wp--preset--color--on-dark-dim, #8C90A0);
	--mf-border-on-dark: var(--wp--preset--color--border-on-dark, #2A3A6E);
	--mf-coral-text: var(--wp--preset--color--coral-hover, #C8431A);
	--mf-header-h: 80px;
	--mf-mono: var(--wp--preset--font-family--mono, monospace);
	--mf-display: var(--wp--preset--font-family--display, Georgia, serif);
	--mf-body: var(--wp--preset--font-family--body, system-ui, sans-serif);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, .mf-post__title { overflow-wrap: break-word; }
[id] { scroll-margin-top: calc(var(--mf-header-h) + 1.5rem); }

/* Visible keyboard focus (WCAG 2.4.7) */
:where(a, button, summary, input, textarea, select, [tabindex]):focus-visible { outline: 2px solid var(--mf-coral); outline-offset: 2px; border-radius: 2px; }
.mf-section--navy a:focus-visible, .mf-footer a:focus-visible, .mf-hero a:focus-visible, .mf-card:focus-visible, .mf-burger:focus-visible { outline-color: var(--mf-on-dark); }

/* ---------- Eyebrow / mono labels ---------- */
.mf-eyebrow { font-family: var(--mf-mono); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mf-coral-text); margin: 0 0 1rem; }
.mf-eyebrow .mf-num { color: var(--mf-coral-text); margin-right: 0.6em; }
/* brighter coral on dark backgrounds (better contrast on navy) */
.mf-section--navy .mf-eyebrow, .mf-section--navy .mf-eyebrow .mf-num,
.mf-footer .mf-eyebrow, .mf-footer .mf-eyebrow .mf-num { color: var(--mf-coral); }

/* ---------- Layout utilities ---------- */
.mf-wrap { max-width: 1320px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); }
.mf-statement { font-family: var(--mf-display); font-size: clamp(1.5rem, 1rem + 2.4vw, 2.4rem); line-height: 1.32; color: var(--mf-navy); max-width: 24ch; margin: 0; }
.mf-btn { display: inline-block; background: var(--mf-navy); color: var(--mf-on-dark); text-decoration: none; padding: 1rem 2.25rem; border-radius: 2px; font-weight: 600; letter-spacing: .02em; cursor: pointer; transition: background-color .25s ease, color .25s ease; }
.mf-btn:hover { background: var(--mf-coral); color: var(--mf-canvas); }
.mf-hero__content .mf-btn { background: var(--mf-coral); }
.mf-hero__content .mf-btn:hover { background: var(--mf-canvas); color: var(--mf-navy); }

/* ============================================================
   HEADER
   ============================================================ */
.mf-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background-color .35s ease, box-shadow .35s ease; }
.mf-header__inner { max-width: 1320px; margin-inline: auto; padding: 1rem clamp(1.25rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.mf-logo { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.mf-logo img { height: 46px; width: auto; display: block; }
.mf-logo__dark { display: none; }
.mf-nav { display: flex; gap: 1.6rem; align-items: center; }
.mf-nav a { color: var(--mf-on-dark); text-decoration: none; font-size: .95rem; font-weight: 500; white-space: nowrap; transition: color .2s ease; }
.mf-nav a:hover { color: var(--mf-coral); }
.mf-header__actions { display: flex; align-items: center; gap: 1.25rem; }
.mf-lang { display: flex; gap: .4rem; align-items: center; font-family: var(--mf-mono); font-size: .75rem; letter-spacing: .08em; margin: 0; color: var(--mf-on-dark); }
.mf-lang a { color: inherit; text-decoration: none; opacity: .65; transition: opacity .2s, color .2s; }
.mf-lang a:hover { opacity: 1; }
.mf-lang a.is-active { opacity: 1; color: var(--mf-coral); }
.mf-lang span { opacity: .4; }
.mf-nav__lang { display: none; }
.mf-cta-link { display: inline-block; background: var(--mf-coral); color: var(--mf-canvas); text-decoration: none; padding: .7rem 1.35rem; border-radius: 2px; font-size: .8rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap; transition: background-color .25s ease, color .25s ease; }
.mf-cta-link:hover { background: var(--mf-canvas); color: var(--mf-navy); }
.mf-burger { display: none; }

/* Solid state: scrolled (home) or any inner page */
.mf-header.is-scrolled, body:not(.home) .mf-header { background: var(--mf-canvas); box-shadow: 0 1px 0 var(--mf-border); }
.mf-header.is-scrolled .mf-logo, .mf-header.is-scrolled .mf-nav a, .mf-header.is-scrolled .mf-lang,
body:not(.home) .mf-header .mf-logo, body:not(.home) .mf-header .mf-nav a, body:not(.home) .mf-header .mf-lang { color: var(--mf-navy); }
/* logo variant swap: light over hero, navy when solid */
.mf-header.is-scrolled .mf-logo__light, body:not(.home) .mf-header .mf-logo__light { display: none; }
.mf-header.is-scrolled .mf-logo__dark, body:not(.home) .mf-header .mf-logo__dark { display: block; }
.mf-header.is-scrolled .mf-nav a:hover, body:not(.home) .mf-header .mf-nav a:hover { color: var(--mf-coral); }
body:not(.home) .mf-header { position: sticky; }

/* ============================================================
   SECTIONS
   ============================================================ */
.mf-section { padding-block: var(--wp--preset--spacing--90, 6rem); }
.mf-section--tight { padding-block: var(--wp--preset--spacing--80, 4rem); }
.mf-section--surface { background: var(--mf-surface); }
.mf-section--navy { background: var(--mf-navy-deep); color: var(--mf-on-dark); }
.mf-section--navy :is(h1,h2,h3) { color: var(--mf-on-dark); }
.mf-section-head { max-width: 760px; }
.mf-section-head h2 { margin: 0 0 .75rem; }
.mf-section-head p { color: var(--mf-muted); font-size: 1.075rem; }
.mf-section--navy .mf-section-head p { color: var(--mf-on-dark-muted); }

/* ============================================================
   HERO
   ============================================================ */
.mf-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--mf-on-dark); overflow: hidden; }
.mf-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,22,49,.45) 0%, rgba(14,22,49,.12) 35%, rgba(14,22,49,.78) 100%); z-index: 1; }
.mf-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.mf-hero__content { position: relative; z-index: 2; width: 100%; max-width: 1320px; margin-inline: auto; padding: 0 clamp(1.25rem,5vw,4rem) clamp(3rem,8vw,6rem); }
.mf-hero__content h1 { color: var(--mf-on-dark); max-width: 16ch; margin: 0 0 1.25rem; }
.mf-hero__content .mf-eyebrow { color: var(--mf-on-dark); font-weight: 500; text-shadow: 0 1px 12px rgba(14,22,49,.7); }
.mf-hero__content .mf-eyebrow .mf-num { color: var(--mf-coral); font-weight: 700; }
.mf-hero__content h1, .mf-hero__content .mf-hero__lead { text-shadow: 0 1px 18px rgba(14,22,49,.45); }
.mf-hero__lead { font-size: 1.2rem; max-width: 46ch; color: #E9E7E2; margin: 0 0 2rem; }
.mf-scroll-cue { font-family: var(--mf-mono); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }

/* ============================================================
   COLLECTION CARDS
   ============================================================ */
.mf-collections { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.mf-card { position: relative; display: block; overflow: hidden; text-decoration: none; background: var(--mf-navy-deep); aspect-ratio: 4 / 3; }
.mf-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.mf-card:hover img { transform: scale(1.05); }
.mf-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,22,49,0) 30%, rgba(14,22,49,.82) 100%); }
.mf-card__body { position: absolute; z-index: 2; inset: auto 0 0 0; padding: clamp(1.25rem,2.5vw,2rem); color: var(--mf-on-dark); }
.mf-card__num { font-family: var(--mf-mono); font-size: .72rem; letter-spacing: .18em; color: var(--mf-coral); display: block; margin-bottom: .5rem; }
.mf-card__title { font-family: var(--mf-display); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 600; margin: 0 0 .35rem; color: var(--mf-on-dark); }
.mf-card__meta { font-size: .9rem; color: var(--mf-on-dark-muted); margin: 0; }
.mf-card__cta { margin-top: .6rem; display: inline-block; font-family: var(--mf-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mf-on-dark); }
.mf-card:hover .mf-card__cta { color: var(--mf-coral); }

/* ============================================================
   LIFESTYLE GALLERY
   ============================================================ */
.mf-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.75rem,1.5vw,1.25rem); }
.mf-gallery figure { margin: 0; overflow: hidden; background: var(--mf-surface); }
.mf-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.mf-gallery figure:hover img { transform: scale(1.04); }
.mf-gallery .g-span-6 { grid-column: span 6; }
.mf-gallery .g-span-4 { grid-column: span 4; }
.mf-gallery .g-wide img { aspect-ratio: 16/10; }
.mf-gallery .g-tall img { aspect-ratio: 3/4; }

/* ============================================================
   VISION / MISSION
   ============================================================ */
.mf-vm { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem,3vw,3rem); }
.mf-vm__item { padding: clamp(1.5rem,3vw,2.5rem); background: rgba(255,255,255,.04); border: 1px solid var(--mf-border-on-dark); }
.mf-vm__item h3 { margin: .25rem 0 .75rem; }
.mf-vm__item p { color: var(--mf-on-dark-muted); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.mf-services { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.5vw,2rem); }
.mf-service { border-top: 2px solid var(--mf-coral); padding-top: 1.25rem; }
.mf-service__num { font-family: var(--mf-mono); font-size: .72rem; letter-spacing: .18em; color: var(--mf-muted); }
.mf-service h3 { font-size: 1.25rem; margin: .5rem 0 .5rem; }
.mf-service p { color: var(--mf-muted); margin: 0; font-size: .96rem; }

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.mf-inquiry { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: start; }
.mf-form { display: grid; gap: 1rem; }
.mf-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mf-field { display: flex; flex-direction: column; gap: .4rem; }
.mf-field label { font-family: var(--mf-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mf-on-dark-muted); }
.mf-field input, .mf-field textarea { font: inherit; color: var(--mf-ink); padding: .85rem 1rem; border: 1px solid var(--mf-border-on-dark); border-radius: 2px; background: var(--mf-canvas); transition: border-color .2s ease, box-shadow .2s ease; }
.mf-field input:focus, .mf-field textarea:focus { outline: none; border-color: var(--mf-coral); box-shadow: 0 0 0 2px rgba(232,84,30,.25); }
.mf-field textarea { min-height: 140px; resize: vertical; }
.mf-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--mf-on-dark-muted); }
.mf-consent a { color: var(--mf-coral); }
.mf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.mf-form button[type="submit"] { justify-self: start; font-family: var(--wp--preset--font-family--body); font-weight: 600; letter-spacing: .02em; background: var(--mf-coral); color: var(--mf-canvas); border: 0; border-radius: 2px; padding: 1rem 2.25rem; cursor: pointer; transition: background-color .25s ease, color .25s ease; }
.mf-form button[type="submit"]:hover { background: var(--mf-canvas); color: var(--mf-navy); }
.mf-note { padding: 1rem 1.25rem; border-radius: 2px; font-size: .95rem; margin-bottom: 1.25rem; }
.mf-note--ok { background: #E7F2EC; color: #1E5C42; border: 1px solid #B9DBC9; }
.mf-note--err { background: #FBEAE8; color: #922219; border: 1px solid #E9C2BD; }
.mf-note--err a { color: #922219; }
/* contact info column (navy) */
.mf-contact-info .mf-eyebrow { color: var(--mf-coral); }
.mf-contact-info h3 { color: var(--mf-on-dark); font-family: var(--mf-display); margin: .25rem 0 1rem; }
.mf-contact-info p { color: var(--mf-on-dark-muted); line-height: 1.7; }
.mf-contact-info strong { color: var(--mf-on-dark); }
.mf-contact-info a { color: var(--mf-coral); text-decoration: none; }
.mf-contact-note { color: var(--mf-on-dark-dim) !important; font-size: .85rem; margin-top: 1.5rem !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.mf-footer { background: var(--mf-navy-deep); color: var(--mf-on-dark); padding-block: var(--wp--preset--spacing--80, 4rem) var(--wp--preset--spacing--60, 2rem); }
.mf-footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(2rem,4vw,4rem); }
.mf-footer h3 { color: var(--mf-on-dark); font-family: var(--mf-display); margin: 0 0 .5rem; }
.mf-footer__logo { height: 60px; width: auto; display: block; margin: 0 0 1.1rem; }
.mf-footer .mf-eyebrow { margin: .25rem 0 1rem; }
.mf-eyebrow--mute { color: var(--mf-on-dark-dim) !important; }
.mf-footer__lead { color: var(--mf-on-dark-muted); max-width: 42ch; }
.mf-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.mf-footer__col a, .mf-footer__contact a { color: var(--mf-on-dark-muted); text-decoration: none; transition: color .2s; }
.mf-footer__col a:hover, .mf-footer__contact a:hover { color: var(--mf-coral); }
.mf-footer__contact { color: var(--mf-on-dark-muted); line-height: 1.7; }
.mf-footer__contact strong { color: var(--mf-on-dark); }
.mf-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: var(--wp--preset--spacing--70, 3rem); padding-top: var(--wp--preset--spacing--50, 1.5rem); border-top: 1px solid var(--mf-border-on-dark); }
.mf-footer__bottom p { color: var(--mf-on-dark-dim); font-size: .85rem; margin: 0; }
.mf-footer__bottom a { color: var(--mf-on-dark-dim); text-decoration: none; }
.mf-footer__bottom a:hover { color: var(--mf-coral); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.mf-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.mf-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .mf-reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   CATALOG (archive · taxonomy · single stone)
   ============================================================ */
.mf-catalog, .mf-stone-section { padding-top: var(--wp--preset--spacing--70, 3rem); padding-bottom: var(--wp--preset--spacing--90, 6rem); }
.mf-back { display: inline-block; font-family: var(--mf-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mf-muted); text-decoration: none; margin-bottom: 1.5rem; }
.mf-back:hover { color: var(--mf-coral-text); }
.mf-lead-2 { color: var(--mf-muted); font-size: 1.075rem; max-width: 62ch; margin: 0 0 2rem; }
.mf-filter { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-bottom: clamp(2rem,4vw,3rem); border-bottom: 1px solid var(--mf-border); padding-bottom: 1.1rem; }
.mf-filter a { font-family: var(--mf-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: var(--mf-muted); transition: color .2s ease; }
.mf-filter a:hover, .mf-filter a.is-active { color: var(--mf-coral-text); }
.mf-filter a.is-active { text-decoration: underline; text-underline-offset: 4px; }
.mf-stone-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.75rem); }
.mf-stone-card { text-decoration: none; display: block; background: var(--mf-surface); border: 1px solid var(--mf-border); }
.mf-stone-card__img { display: block; overflow: hidden; aspect-ratio: 4/3; }
.mf-stone-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.mf-stone-card:hover .mf-stone-card__img img { transform: scale(1.05); }
.mf-stone-card__body { display: block; padding: 1rem 1.1rem 1.35rem; }
.mf-stone-card__cat { font-family: var(--mf-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mf-coral-text); }
.mf-stone-card__title { display: block; font-family: var(--mf-display); font-size: 1.25rem; color: var(--mf-navy); margin: .25rem 0 .15rem; }
.mf-stone-card__color { display: block; font-size: .85rem; color: var(--mf-muted); }
.mf-stone { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: start; }
.mf-stone__media img { width: 100%; height: auto; }
.mf-stone__info h1 { margin: .25rem 0 1.25rem; }
.mf-stone__desc { font-size: 1.1rem; color: var(--mf-ink); margin: 0 0 2rem; max-width: 46ch; }
.mf-spec { margin: 0 0 2rem; border-top: 1px solid var(--mf-border); }
.mf-spec > div { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--mf-border); }
.mf-spec dt { font-family: var(--mf-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mf-muted); margin: 0; align-self: center; }
.mf-spec dd { margin: 0; color: var(--mf-ink); }
.mf-related-h { margin: clamp(3rem,6vw,5rem) 0 1.5rem; font-size: var(--wp--preset--font-size--x-large); }

/* ============================================================
   BLOG / JOURNAL
   ============================================================ */
.mf-post { padding-top: var(--wp--preset--spacing--70, 3rem); padding-bottom: var(--wp--preset--spacing--90, 6rem); }
.mf-post__title { max-width: 20ch; margin: .5rem 0 1.5rem; }
.mf-post__hero { margin: 0 0 2.5rem; }
.mf-post__hero img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.mf-post__body { max-width: 720px; }
.mf-post__body h2 { font-size: var(--wp--preset--font-size--x-large); margin: 2.5rem 0 .75rem; }
.mf-post__body h3 { font-size: 1.25rem; margin: 1.75rem 0 .5rem; color: var(--mf-navy); }
.mf-post__body p { margin: 0 0 1.1rem; line-height: 1.75; }
.mf-post__body ul { margin: 0 0 1.5rem; padding-left: 1.2rem; }
.mf-post__body li { margin: 0 0 .5rem; line-height: 1.65; }
.mf-post__body strong { color: var(--mf-navy); }
.mf-post__cta { max-width: 720px; margin-top: 2.5rem; }
.mf-faq { max-width: 720px; margin: 3rem 0 0; border-top: 2px solid var(--mf-coral); padding-top: 1.5rem; }
.mf-faq h2 { font-size: var(--wp--preset--font-size--x-large); margin: 0 0 1rem; }
.mf-faq__item { border-bottom: 1px solid var(--mf-border); }
.mf-faq__item summary { cursor: pointer; padding: 1rem 0; font-family: var(--mf-display); font-size: 1.1rem; color: var(--mf-navy); list-style: none; position: relative; padding-right: 2rem; }
.mf-faq__item summary::-webkit-details-marker { display: none; }
.mf-faq__item summary::after { content: "+"; position: absolute; right: .25rem; top: .9rem; color: var(--mf-coral-text); font-size: 1.4rem; line-height: 1; }
.mf-faq__item[open] summary::after { content: "−"; }
.mf-faq__item p { margin: 0 0 1.1rem; color: var(--mf-muted); line-height: 1.7; max-width: 64ch; }
.mf-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.mf-journal-card { display: block; text-decoration: none; background: var(--mf-surface); border: 1px solid var(--mf-border); }
.mf-journal-card__img { display: block; overflow: hidden; aspect-ratio: 16/10; }
.mf-journal-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.mf-journal-card:hover .mf-journal-card__img img { transform: scale(1.04); }
.mf-journal-card__body { display: block; padding: 1.25rem 1.35rem 1.6rem; }
.mf-journal-card__date { font-family: var(--mf-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mf-coral-text); }
.mf-journal-card__title { display: block; font-family: var(--mf-display); font-size: 1.3rem; line-height: 1.25; color: var(--mf-navy); margin: .4rem 0 .5rem; }
.mf-journal-card__exc { display: block; font-size: .92rem; color: var(--mf-muted); line-height: 1.6; }

/* ============================================================
   HOME LANDING MODULES + PAGE TEASERS
   ============================================================ */
/* USP / value strip */
.mf-usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.mf-usp { border-top: 2px solid var(--mf-coral); padding-top: 1.1rem; }
.mf-usp__title { font-family: var(--mf-display); font-size: 1.15rem; color: var(--mf-navy); margin: .25rem 0 .45rem; }
.mf-usp__desc { color: var(--mf-muted); font-size: .95rem; line-height: 1.6; margin: 0; }
.mf-section--navy .mf-usp__title { color: var(--mf-on-dark); }
.mf-section--navy .mf-usp__desc { color: var(--mf-on-dark-muted); }

/* Stats */
.mf-stats { display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 5rem); }
.mf-stat__value { display: block; font-family: var(--mf-display); font-size: clamp(2.5rem, 1.5rem + 4vw, 4rem); line-height: 1; color: var(--mf-coral); }
.mf-stat__label { display: block; font-family: var(--mf-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mf-muted); margin-top: .5rem; }
.mf-section--navy .mf-stat__value { color: var(--mf-coral); }
.mf-section--navy .mf-stat__label { color: var(--mf-on-dark-muted); }

/* Teaser (image + text), used on home + as page intros */
.mf-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mf-teaser__media { overflow: hidden; align-self: stretch; }
.mf-teaser__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.mf-teaser--reverse .mf-teaser__media { order: 2; }
.mf-teaser__body p { color: var(--mf-muted); font-size: 1.05rem; line-height: 1.7; }
.mf-section--navy .mf-teaser__body p { color: var(--mf-on-dark-muted); }

/* Arrow link (teaser "more") */
.mf-arrow-link { display: inline-block; margin-top: 1.25rem; font-family: var(--mf-mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mf-coral-text); text-decoration: none; transition: color .2s; }
.mf-arrow-link:hover { color: var(--mf-coral); }
.mf-section--navy .mf-arrow-link, .mf-card__cta { }
.mf-section--navy .mf-arrow-link { color: var(--mf-coral); }

/* CTA band */
.mf-cta-band { background: var(--mf-navy-deep); color: var(--mf-on-dark); text-align: center; }
.mf-cta-band h2 { color: var(--mf-on-dark); margin: 0 0 1rem; }
.mf-cta-band p { color: var(--mf-on-dark-muted); max-width: 52ch; margin: 0 auto 2rem; }

/* Category quick-links under the collection preview */
.mf-cat-links { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .65rem; font-family: var(--mf-mono); font-size: .8rem; letter-spacing: .04em; padding-top: 1.25rem; border-top: 1px solid var(--mf-border); }
.mf-cat-links__label { text-transform: uppercase; letter-spacing: .12em; color: var(--mf-muted); }
.mf-cat-links a { color: var(--mf-navy); text-decoration: none; transition: color .2s; }
.mf-cat-links a:hover { color: var(--mf-coral-text); }
.mf-cat-links .mf-dot { color: var(--mf-border); }
.mf-cat-links__all { margin-left: auto; color: var(--mf-coral-text) !important; text-transform: uppercase; letter-spacing: .1em; }

/* Page intro spacing (e.g. before the contact form section) */
.mf-page-content { padding-bottom: var(--wp--preset--spacing--70, 3rem); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.mf-inquiry { grid-template-columns: 1fr; }
	.mf-stone-grid { grid-template-columns: repeat(2, 1fr); }
	.mf-journal-grid { grid-template-columns: repeat(2, 1fr); }
	.mf-stone { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
	.mf-nav { position: fixed; inset: 0; background: var(--mf-navy-deep); flex-direction: column; justify-content: center; gap: 1.75rem; transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.6,.2,1); z-index: 200; }
	.mf-nav a { color: var(--mf-on-dark) !important; font-size: 1.6rem; font-family: var(--mf-display); white-space: normal; }
	.mf-nav.is-open { transform: none; }
	body.mf-menu-open { overflow: hidden; }
	.mf-header__actions { display: none; }
	.mf-burger { margin-left: auto; }
	.mf-nav .mf-nav__lang { display: flex; gap: .75rem; align-items: center; margin-top: 1.25rem; font-family: var(--mf-mono); font-size: 1.1rem; }
	.mf-nav__lang a { color: var(--mf-on-dark) !important; text-decoration: none; font-family: var(--mf-mono) !important; padding: .4rem .5rem; }
	.mf-nav__lang a[aria-current] { color: var(--mf-coral) !important; }
	.mf-nav__lang span { opacity: .4; }
	.mf-logo img { height: 38px; }
	.mf-burger { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; justify-content: center; align-items: center; background: none; border: 0; cursor: pointer; padding: 0; z-index: 210; }
	.mf-burger span { display: block; width: 24px; height: 2px; background: var(--mf-navy); transition: transform .3s, opacity .3s; }
	body.home .mf-header:not(.is-scrolled) .mf-burger span { background: var(--mf-on-dark); }
	.mf-burger.is-open { position: fixed; right: clamp(1.25rem,5vw,4rem); top: 1.05rem; }
	.mf-burger.is-open span { background: var(--mf-on-dark) !important; }
	.mf-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.mf-burger.is-open span:nth-child(2) { opacity: 0; }
	.mf-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 781px) {
	.mf-collections { grid-template-columns: 1fr; }
	.mf-services { grid-template-columns: 1fr; }
	.mf-vm { grid-template-columns: 1fr; }
	.mf-gallery .g-wide { grid-column: span 12; }
	.mf-gallery .g-tall { grid-column: span 6; }
	.mf-form .row2 { grid-template-columns: 1fr; }
	.mf-hero { min-height: 88svh; }
	.mf-footer__cols { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
	.mf-stone-grid { grid-template-columns: 1fr; }
	.mf-journal-grid { grid-template-columns: 1fr; }
	.mf-spec > div { grid-template-columns: 7rem 1fr; }
}