/* Matzevot plugin: shortcode components, floating quote panel and home-page sections (light "marble & slate" theme). */
:root {
  --mz-bg: #f5f6f8;
  --mz-surface: #ffffff;
  --mz-surface-2: #f0f2f5;
  --mz-ink: #14181d;
  --mz-muted: #5a6270;
  --mz-faint: #5b6270;
  --mz-line: #e3e7ec;
  --mz-line-strong: #cfd5dd;
  --mz-primary: #1b2a3d;
  --mz-primary-2: #0f1a29;
  --mz-accent: #2f5f8f;
  --mz-accent-2: #e6eef7;
  --mz-accent-3: #4b7fb3;
  --mz-accent-dark: #244a70;
  --mz-dark: #1b2a3d;
  --mz-gold: #c9a765;
  --mz-radius: 18px;
  --mz-radius-l: 28px;
  --mz-shadow: 0 1px 2px rgba(20, 24, 29, 0.04), 0 24px 48px -28px rgba(20, 24, 29, 0.25);
  --mz-shadow-lg: 0 40px 80px -36px rgba(20, 24, 29, 0.4);
  --mz-shadow-primary: 0 14px 30px -14px rgba(27, 42, 61, 0.55);
  --mz-font: var(--wp--preset--font-family--body, Heebo, sans-serif);
  --mz-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s7-6.5 7-12a7 7 0 0 0-14 0c0 5.5 7 12 7 12Z'/%3E%3Ccircle cx='12' cy='10' r='2.6' fill='%23000'/%3E%3C/svg%3E");
}

.mz-lead { font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem); line-height: 1.7; color: var(--mz-muted); }
.mz-eyebrow { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mz-accent); font-weight: 700; margin-bottom: 0.6rem; }

.mz-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.85rem 1.6rem; border-radius: 999px; border: 1px solid var(--mz-line-strong); color: var(--mz-ink); background: #fff; font-weight: 600; text-decoration: none; line-height: 1.2; font-family: var(--mz-font); transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s; cursor: pointer; }
.mz-btn:hover { transform: translateY(-2px); border-color: var(--mz-accent); color: var(--mz-ink); box-shadow: var(--mz-shadow); }
.mz-btn--primary, .mz-btn--gold { background: linear-gradient(135deg, #24384f 0%, #1b2a3d 60%, #0f1a29 100%); border-color: transparent; color: #fff; box-shadow: var(--mz-shadow-primary); font-weight: 700; }
.mz-btn--primary:hover, .mz-btn--gold:hover { color: #fff; box-shadow: 0 20px 40px -14px rgba(27, 42, 61, 0.6); }
.mz-btn--light { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: rgba(255, 255, 255, 0.08); }
.mz-btn--light:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.16); }
.mz-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }

/* -------------------------------------------------------------------------
   Sections
   ---------------------------------------------------------------------- */
.mz-section { padding-block: clamp(3.4rem, 2.4rem + 3.5vw, 6.5rem); position: relative; }
.mz-section--stone { background: #fff; border-block: 1px solid var(--mz-line); }
.mz-section--dark { background: radial-gradient(80% 90% at 100% 0%, rgba(75, 127, 179, 0.35), transparent 55%), linear-gradient(160deg, #26405e 0%, #1b2a3d 55%, #0f1a29 100%); color: rgba(255, 255, 255, 0.85); }
.mz-section--dark h2, .mz-section--dark h3 { color: #fff; }
.mz-section--dark p { color: rgba(255, 255, 255, 0.75); }
.mz-section--dark .mz-section__kicker { color: #9fc0e3; }
.mz-section--dark .mz-section__kicker::before { background: #9fc0e3; }
.mz-section--tight { padding-block: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem); }
.mz-section__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 0.8rem 2rem; margin-bottom: 2.2rem; }
.mz-section__head > * { margin: 0; }
.mz-section__title { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 3rem); margin-bottom: 1.8rem; letter-spacing: -0.025em; font-weight: 800; line-height: 1.12; color: var(--mz-primary); }
.mz-section--dark .mz-section__title { color: #fff; }
.mz-section__head .mz-section__title { margin-bottom: 0; }
.mz-section__kicker { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mz-accent); font-weight: 700; margin: 0 0 0.6rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.mz-section__kicker::before { content: ''; width: 22px; height: 1.5px; background: var(--mz-accent); }
.mz-section__intro { max-width: 60ch; color: var(--mz-muted); margin-top: -1rem; margin-bottom: 2rem; font-size: 1.05rem; }
.mz-section__more { font-weight: 600; text-decoration: none; color: var(--mz-accent); white-space: nowrap; }
.mz-section__more:hover { color: var(--mz-accent-dark); text-decoration: underline; }

/* -------------------------------------------------------------------------
   Hero (light)
   ---------------------------------------------------------------------- */
.mz-hero { position: relative; overflow: hidden; color: var(--mz-ink); padding-block: clamp(3.5rem, 2rem + 5vw, 7rem) clamp(3rem, 2rem + 4vw, 6rem); background: linear-gradient(180deg, #ffffff 0%, var(--mz-bg) 100%); }
.mz-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 60% at 85% 10%, rgba(47, 95, 143, 0.14), transparent 65%), radial-gradient(40% 40% at 5% 95%, rgba(201, 167, 101, 0.12), transparent 70%); pointer-events: none; }
.mz-hero::after { content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 1px; background: var(--mz-line); }
.mz-hero > * { position: relative; z-index: 1; }
.mz-hero h1, .mz-hero .mz-hero__title { color: var(--mz-primary); font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4.6rem); line-height: 1.04; letter-spacing: -0.035em; margin-block: 0.6rem 1.2rem; font-weight: 800; }
.mz-hero .mz-hero__title em { font-style: normal; color: var(--mz-accent); }
.mz-hero .mz-lead { color: var(--mz-muted); max-width: 34em; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); }
.mz-hero .mz-eyebrow { color: var(--mz-accent); display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid rgba(47, 95, 143, 0.25); background: #fff; font-size: 0.72rem; box-shadow: var(--mz-shadow); }
.mz-hero .mz-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--mz-accent); box-shadow: 0 0 0 4px rgba(47, 95, 143, 0.18); }
.mz-hero__cols { gap: clamp(1.5rem, 1rem + 3vw, 5rem) !important; }
.mz-hero__visual { position: relative; }
.mz-hero__image { margin: 0; position: relative; }
.mz-hero__image img { border-radius: 26px; box-shadow: var(--mz-shadow-lg), 0 0 0 1px rgba(20, 24, 29, 0.06); width: 100%; height: auto; display: block; }
.mz-hero__image::after { content: ''; position: absolute; inset: -16px; border: 1px solid rgba(47, 95, 143, 0.25); border-radius: 36px; pointer-events: none; -webkit-mask: linear-gradient(160deg, #000 40%, transparent 90%); mask: linear-gradient(160deg, #000 40%, transparent 90%); }
.mz-hero__chips { list-style: none; padding: 0; margin: 0; position: absolute; inset-inline-start: -1.2rem; bottom: 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; z-index: 2; }
.mz-hero__chips li { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.92); border: 1px solid var(--mz-line); color: var(--mz-ink); font-size: 0.85rem; font-weight: 600; box-shadow: var(--mz-shadow); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); width: max-content; }
.mz-hero__chips li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--mz-accent); box-shadow: 0 0 0 3px rgba(47, 95, 143, 0.18); }
.mz-hero__buttons { margin-top: 1.8rem; }
.mz-hero__buttons .wp-block-button__link { border-radius: 999px; padding: 1rem 1.8rem; font-weight: 700; }
.mz-button-primary .wp-block-button__link { background: linear-gradient(135deg, #24384f 0%, #1b2a3d 60%, #0f1a29 100%) !important; color: #fff !important; border-radius: 999px; padding: 0.95rem 1.7rem; font-weight: 700; box-shadow: var(--mz-shadow-primary); }
.mz-button-primary .wp-block-button__link:hover { background: linear-gradient(135deg, #2c4460 0%, #22344a 60%, #142238 100%) !important; }
.mz-button-light .wp-block-button__link { color: var(--mz-primary) !important; border: 1px solid var(--mz-line-strong) !important; border-radius: 999px; padding: 0.95rem 1.7rem; background: #fff !important; }
.mz-button-light .wp-block-button__link:hover { border-color: var(--mz-accent) !important; box-shadow: var(--mz-shadow); }
.mz-section--dark .mz-button-light .wp-block-button__link { color: #fff !important; background: rgba(255, 255, 255, 0.08) !important; border-color: rgba(255, 255, 255, 0.45) !important; }
.mz-section--dark .mz-button-primary .wp-block-button__link { background: #fff !important; color: var(--mz-primary) !important; box-shadow: none; }
.mz-button-dark .wp-block-button__link { background: var(--mz-primary) !important; color: #fff !important; border-radius: 999px; padding: 0.95rem 1.7rem; font-weight: 700; }
.mz-button-dark .wp-block-button__link:hover { background: var(--mz-primary-2) !important; }
.mz-ticks { list-style: none; padding: 0 !important; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; font-size: 0.93rem; color: var(--mz-muted); }
.mz-ticks li { display: inline-flex; align-items: center; gap: 0.45rem; margin: 0; }
.mz-ticks li::before { content: ''; width: 18px; height: 18px; flex: none; border-radius: 50%; background: var(--mz-accent-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%232f5f8f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat; }
.mz-ticks--dark { flex-direction: column; color: var(--mz-ink); gap: 0.7rem; }

/* Stats strip */
.mz-stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mz-line); border: 1px solid var(--mz-line); border-radius: var(--mz-radius); overflow: hidden; box-shadow: var(--mz-shadow); }
.mz-stats li { background: #fff; padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.15rem; }
.mz-stats strong { font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--mz-primary); }
.mz-stats span { color: var(--mz-muted); font-size: 0.92rem; }

/* Trust strip */
.mz-trust { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mz-trust li { display: flex; align-items: center; gap: 0.85rem; padding: 1.05rem 1.15rem; border-radius: var(--mz-radius); background: #fff; border: 1px solid var(--mz-line); box-shadow: var(--mz-shadow); }
.mz-trust .mz-icon { width: 42px; height: 42px; padding: 9px; border-radius: 13px; background: var(--mz-accent-2); color: var(--mz-accent); }
.mz-trust strong { display: block; font-size: 0.98rem; line-height: 1.3; color: var(--mz-ink); }
.mz-trust span { display: block; font-size: 0.85rem; color: var(--mz-muted); }

/* "What now" cards */
.mz-now { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.mz-now a { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.7rem 1.6rem; border-radius: var(--mz-radius); background: var(--mz-bg); border: 1px solid var(--mz-line); color: var(--mz-ink); text-decoration: none; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.mz-now a::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--mz-accent), transparent); }
.mz-now a:hover { transform: translateY(-3px); border-color: var(--mz-accent); box-shadow: var(--mz-shadow); background: #fff; }
.mz-now .mz-icon { width: 40px; height: 40px; color: var(--mz-accent); }
.mz-now strong { font-size: 1.25rem; font-weight: 700; color: var(--mz-primary); }
.mz-now span { color: var(--mz-muted); font-size: 0.95rem; line-height: 1.55; }
.mz-now em { font-style: normal; color: var(--mz-accent); font-weight: 600; font-size: 0.9rem; margin-top: auto; padding-top: 0.5rem; }

/* Steps */
.mz-steps-row { counter-reset: step; gap: 1.1rem !important; }
.mz-steps-row .wp-block-column { position: relative; padding: 1.9rem 1.5rem 1.6rem; border-radius: var(--mz-radius); background: #fff; border: 1px solid var(--mz-line); counter-increment: step; overflow: hidden; box-shadow: var(--mz-shadow); transition: border-color 0.2s, transform 0.2s; }
.mz-steps-row .wp-block-column:hover { border-color: var(--mz-accent); transform: translateY(-3px); }
.mz-steps-row .wp-block-column::before { content: counter(step, decimal-leading-zero); position: absolute; top: 1.1rem; inset-inline-end: 1.2rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--mz-accent); padding: 0.25rem 0.6rem; border: 1px solid rgba(47, 95, 143, 0.35); border-radius: 999px; background: var(--mz-accent-2); }
.mz-steps-row h3 { font-size: 1.2rem; margin: 0.4rem 0 0.5rem; font-weight: 700; padding-inline-end: 3.2rem; color: var(--mz-primary); }
@media (max-width: 781px) { .mz-steps-row > .wp-block-column { flex-basis: 100% !important; } }
.mz-steps-row p { color: var(--mz-muted); font-size: 0.97rem; margin: 0; }

/* Split feature */
.mz-rounded-image { margin: 0; }
.mz-rounded-image img { border-radius: var(--mz-radius-l); box-shadow: var(--mz-shadow-lg), 0 0 0 1px rgba(20, 24, 29, 0.06); }
.mz-split .wp-block-columns { gap: clamp(2rem, 1.5rem + 3vw, 5rem) !important; }
.mz-split h2 { color: var(--mz-primary); }

/* Services */
.mz-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.mz-service { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.7rem 1.6rem 1.5rem; border-radius: var(--mz-radius); border: 1px solid var(--mz-line); background: #fff; color: var(--mz-ink); text-decoration: none; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; box-shadow: var(--mz-shadow); }
.mz-service:hover { border-color: var(--mz-accent); transform: translateY(-3px); box-shadow: var(--mz-shadow-lg); }
.mz-service .mz-icon { width: 46px; height: 46px; padding: 10px; border-radius: 14px; background: var(--mz-accent-2); color: var(--mz-accent); margin-bottom: 0.5rem; transition: background 0.2s, color 0.2s; }
.mz-service:hover .mz-icon { background: var(--mz-primary); color: #fff; }
.mz-service strong { font-size: 1.2rem; font-weight: 700; color: var(--mz-primary); }
.mz-service span { color: var(--mz-muted); font-size: 0.96rem; line-height: 1.55; }
.mz-service em { margin-top: auto; padding-top: 0.6rem; font-style: normal; color: var(--mz-accent); font-weight: 600; font-size: 0.9rem; }

.mz-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; margin: 1.5rem 0; }
.mz-card { display: flex; flex-direction: column; gap: 0.45rem; padding: 1.5rem 1.5rem; border-radius: var(--mz-radius); background: #fff; border: 1px solid var(--mz-line); color: var(--mz-ink); text-decoration: none; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; box-shadow: var(--mz-shadow); }
.mz-card:hover { transform: translateY(-3px); border-color: var(--mz-accent); box-shadow: var(--mz-shadow-lg); }
.mz-card strong { font-size: 1.1rem; font-weight: 700; line-height: 1.3; color: var(--mz-primary); }
.mz-card span { color: var(--mz-muted); font-size: 0.94rem; line-height: 1.55; }
.mz-card em { margin-top: auto; padding-top: 0.5rem; font-style: normal; color: var(--mz-accent); font-weight: 600; font-size: 0.9rem; }

.mz-price-cols .wp-block-column { padding: 1.6rem 1.5rem; border-radius: var(--mz-radius); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); }
.mz-price-cols h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 700; }
.mz-price-cols h3::before { content: ''; display: block; width: 32px; height: 3px; border-radius: 3px; background: #9fc0e3; margin-bottom: 0.8rem; }
.mz-price-cols p { margin: 0; font-size: 0.97rem; }

/* -------------------------------------------------------------------------
   Materials: real textures in a snap scroller
   ---------------------------------------------------------------------- */
.mz-materials { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(196px, 1fr); gap: 1rem; margin: 1.5rem 0 2.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.4rem 0.2rem 1rem; scrollbar-width: thin; scrollbar-color: var(--mz-line-strong) transparent; }
.mz-material { display: flex; flex-direction: column; gap: 0.15rem; scroll-snap-align: start; }
.mz-material__swatch { aspect-ratio: 1; border-radius: 18px; background-size: 140%; background-position: center; position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(20, 24, 29, 0.08), 0 24px 40px -22px rgba(20, 24, 29, 0.55); margin-bottom: 0.7rem; transition: transform 0.25s, box-shadow 0.25s; }
.mz-material__swatch::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.06) 30%, transparent 55%, rgba(0, 0, 0, 0.22) 100%); mix-blend-mode: soft-light; }
.mz-material__swatch::before { content: ''; position: absolute; inset: auto -20% -30% -20%; height: 60%; background: radial-gradient(closest-side, rgba(0, 0, 0, 0.3), transparent); }
.mz-material:hover .mz-material__swatch { transform: translateY(-4px) scale(1.02); box-shadow: inset 0 0 0 2px var(--mz-accent), 0 30px 50px -24px rgba(20, 24, 29, 0.6); }
.mz-material strong { font-size: 1rem; font-weight: 700; color: var(--mz-ink); }
.mz-material span { font-size: 0.85rem; color: var(--mz-muted); }

.mz-gallery-title { margin-top: 2.5rem; }
.mz-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.mz-gallery__item { margin: 0; }
.mz-gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; display: block; box-shadow: var(--mz-shadow); }
.mz-gallery__item figcaption { display: flex; flex-direction: column; margin-top: 0.5rem; font-size: 0.95rem; }
.mz-gallery__item figcaption span { color: var(--mz-muted); font-size: 0.88rem; }

/* -------------------------------------------------------------------------
   Cities with location pins
   ---------------------------------------------------------------------- */
.mz-regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.mz-region { padding: 1.2rem 1.2rem 1rem; border-radius: var(--mz-radius); background: #fff; border: 1px solid var(--mz-line); box-shadow: var(--mz-shadow); }
.mz-region h3 { font-size: 1rem; margin: 0 0 0.7rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--mz-line); display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--mz-primary); }
.mz-region h3::before { content: ''; width: 18px; height: 18px; flex: none; background: var(--mz-accent); -webkit-mask: var(--mz-pin) center / contain no-repeat; mask: var(--mz-pin) center / contain no-repeat; }
.mz-region ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.15rem; }
.mz-region li { margin: 0; font-size: 0.95rem; }
.mz-region a, .mz-region li > span { display: flex; align-items: center; gap: 0.5rem; padding: 0.32rem 0.45rem; margin-inline: -0.45rem; border-radius: 8px; color: var(--mz-muted); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.15s, background 0.15s; }
.mz-region a::before, .mz-region li > span::before { content: ''; width: 14px; height: 14px; flex: none; background: var(--mz-faint); -webkit-mask: var(--mz-pin) center / contain no-repeat; mask: var(--mz-pin) center / contain no-repeat; transition: background 0.15s; }
.mz-region a:hover { color: var(--mz-ink); background: var(--mz-accent-2); }
.mz-region a:hover::before { background: var(--mz-accent); }

.mz-facts { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.mz-facts li { display: flex; flex-direction: column; padding: 1rem 1.2rem; border-radius: var(--mz-radius); background: #fff; border: 1px solid var(--mz-line); box-shadow: var(--mz-shadow); }
.mz-facts span { font-size: 0.85rem; color: var(--mz-muted); }
.mz-facts strong { font-size: 1.3rem; font-weight: 800; color: var(--mz-primary); }
.mz-steps { padding-inline-start: 0 !important; list-style: none; counter-reset: mzs; }
.mz-steps li { position: relative; padding-inline-start: 2.9rem; margin-bottom: 0.9rem; counter-increment: mzs; }
.mz-steps li::before { content: counter(mzs); position: absolute; inset-inline-start: 0; top: 0.1rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--mz-accent-2); border: 1px solid rgba(47, 95, 143, 0.4); color: var(--mz-accent); font-weight: 800; display: grid; place-items: center; font-size: 0.9rem; }
.mz-chips { list-style: none; padding: 0 !important; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mz-chips li { margin: 0 !important; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.95rem; border-radius: 999px; background: #fff; border: 1px solid var(--mz-line-strong); font-size: 0.93rem; color: var(--mz-ink); white-space: nowrap; }
.mz-chips li::before { content: ''; width: 13px; height: 13px; background: var(--mz-accent); -webkit-mask: var(--mz-pin) center / contain no-repeat; mask: var(--mz-pin) center / contain no-repeat; }
.mz-chips a { text-decoration: none; color: inherit; }
.mz-chips li:hover { border-color: var(--mz-accent); }


/* City page extras */
.mz-cemeteries { list-style: none; padding: 0 !important; margin: 1rem 0 1.2rem; display: grid; gap: 0.5rem; }
.mz-cemeteries li { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.9rem; border-radius: 12px; background: #fff; border: 1px solid var(--mz-line); font-weight: 600; color: var(--mz-primary); }
.mz-cemeteries li::before { content: ''; width: 16px; height: 16px; flex: none; background: var(--mz-accent); -webkit-mask: var(--mz-pin) center / contain no-repeat; mask: var(--mz-pin) center / contain no-repeat; }
.mz-stone-chips { list-style: none; padding: 0 !important; margin: 1rem 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mz-stone-chips li { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.35rem 0.9rem 0.35rem 0.4rem; border-radius: 999px; background: #fff; border: 1px solid var(--mz-line); font-size: 0.93rem; font-weight: 600; margin: 0 !important; }
.mz-stone-chips__swatch { width: 30px; height: 30px; border-radius: 50%; background-size: 220%; background-position: center; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
.mz-guide-links { padding-inline-start: 1.2rem; columns: 2; column-gap: 2rem; }
.mz-guide-links li { break-inside: avoid; }
.mz-inline-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; margin: 2.5rem 0; padding: 1.6rem 1.8rem; border-radius: var(--mz-radius); background: linear-gradient(135deg, #fff 0%, var(--mz-accent-2) 100%); border: 1px solid var(--mz-line-strong); box-shadow: var(--mz-shadow); }
.mz-inline-cta__body { flex: 1 1 320px; }
.mz-inline-cta .mz-eyebrow { margin-bottom: 0.3rem; }
.mz-inline-cta h3 { margin: 0 0 0.4rem; font-size: 1.25rem; color: var(--mz-primary); }
.mz-inline-cta p { margin: 0; color: var(--mz-muted); font-size: 0.97rem; }
.mz-inline-cta .mz-actions { margin: 0; flex: none; }
@media (max-width: 600px) { .mz-guide-links { columns: 1; } }

/* -------------------------------------------------------------------------
   FAQ, related, CTA
   ---------------------------------------------------------------------- */
.mz-faq { margin: 2.5rem 0; }
.mz-faq h2 { margin-bottom: 0.6rem; color: var(--mz-primary); }
.mz-faq__item { border-bottom: 1px solid var(--mz-line); }
.mz-faq__item summary { cursor: pointer; padding: 1.05rem 0; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--mz-ink); }
.mz-faq__item summary::-webkit-details-marker { display: none; }
.mz-faq__item summary::after { content: ''; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--mz-line-strong); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='%232f5f8f' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform 0.25s, background-color 0.2s; }
.mz-faq__item[open] summary::after { transform: rotate(45deg); background-color: var(--mz-accent-2); }
.mz-faq__item summary:hover { color: var(--mz-accent); }
.mz-faq__item div { padding: 0 0 1.2rem; color: var(--mz-muted); max-width: 70ch; }
.mz-faq__item p { margin: 0; }

.mz-related { margin: 2.5rem 0; padding: 1.4rem 1.6rem; border-radius: var(--mz-radius); background: #fff; border: 1px solid var(--mz-line); box-shadow: var(--mz-shadow); }
.mz-related h2 { font-size: 1.15rem; margin: 0 0 0.6rem; }
.mz-related h2::before { display: none !important; }
.mz-related ul { margin: 0; padding-inline-start: 1.1rem; }
.mz-related li { margin-bottom: 0.3rem; }

.mz-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; margin: 2.5rem 0; padding: 2.3rem 2.5rem; border-radius: var(--mz-radius-l); color: #fff; background: radial-gradient(80% 90% at 100% 0%, rgba(75, 127, 179, 0.35), transparent 55%), linear-gradient(160deg, #26405e 0%, #1b2a3d 55%, #0f1a29 100%); box-shadow: var(--mz-shadow-primary); position: relative; overflow: hidden; }
.mz-cta > * { position: relative; }
.mz-cta h2 { color: #fff; margin: 0 0 0.4rem; font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem); }
.mz-cta h2::before { display: none !important; }
.mz-cta p { margin: 0; color: rgba(255, 255, 255, 0.75); max-width: 46ch; }
.mz-cta .mz-actions { margin: 0; }
.mz-cta .mz-btn--primary { background: #fff; color: var(--mz-primary); box-shadow: none; }
.mz-cta .mz-btn--primary:hover { background: #eef3f9; color: var(--mz-primary); }

/* -------------------------------------------------------------------------
   Floating dock + slide-over quote form
   ---------------------------------------------------------------------- */
.mz-dock { position: fixed; inset-inline-end: 18px; bottom: 18px; z-index: 60; display: flex; flex-direction: row-reverse; align-items: center; gap: 0.5rem; padding: 0.4rem; border-radius: 999px; background: rgba(255, 255, 255, 0.9); border: 1px solid var(--mz-line); box-shadow: var(--mz-shadow-lg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.mz-dock .mz-dock__btn--call, .mz-dock .mz-dock__btn--wa { width: 44px; height: 44px; padding: 0; justify-content: center; box-shadow: none; border-color: var(--mz-line); }
.mz-dock .mz-dock__btn--call span, .mz-dock .mz-dock__btn--wa span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mz-dock .mz-dock__btn--quote { box-shadow: none; padding: 0.7rem 1.2rem; }
.mz-dock__btn { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.75rem 1.1rem; border-radius: 999px; border: 1px solid var(--mz-line-strong); background: rgba(255, 255, 255, 0.92); color: var(--mz-ink); text-decoration: none; font-weight: 600; font-size: 0.92rem; font-family: var(--mz-font); cursor: pointer; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--mz-shadow-lg); transition: transform 0.2s, border-color 0.2s; }
.mz-dock__btn:hover { transform: translateY(-2px); border-color: var(--mz-accent); color: var(--mz-ink); }
.mz-dock__btn .mz-icon { width: 20px; height: 20px; color: var(--mz-accent); }
.mz-dock__btn--wa .mz-icon { color: #1fa855; }
.mz-dock__btn--quote { background: linear-gradient(135deg, #24384f 0%, #1b2a3d 60%, #0f1a29 100%); color: #fff; border-color: transparent; box-shadow: var(--mz-shadow-primary); padding: 0.85rem 1.3rem; font-weight: 700; }
.mz-dock__btn--quote .mz-icon { color: #9fc0e3; }
.mz-dock__btn--quote:hover { color: #fff; }
.mz-has-designer .mz-dock { display: none; }

.mz-quote { position: fixed; inset: 0; z-index: 90; display: flex; justify-content: flex-start; }
.mz-quote[hidden] { display: none; }
.mz-quote__backdrop { position: absolute; inset: 0; background: rgba(20, 24, 29, 0.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: mz-fade 0.25s ease; }
.mz-quote__panel { position: relative; width: min(520px, 100%); height: 100%; overflow-y: auto; padding: 2rem 1.8rem 2.5rem; background: #fff; box-shadow: 40px 0 80px -30px rgba(20, 24, 29, 0.5); animation: mz-slide 0.35s cubic-bezier(.2,.8,.2,1); }
.mz-quote__close { position: absolute; top: 1rem; inset-inline-end: 1rem; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--mz-line-strong); background: #fff; color: var(--mz-ink); font-size: 1.3rem; cursor: pointer; display: grid; place-items: center; }
.mz-quote__close:hover { border-color: var(--mz-accent); }
.mz-quote__panel h2 { font-size: 1.6rem; margin: 0 0 0.4rem; padding-inline-end: 3rem; color: var(--mz-primary); }
.mz-quote__panel > p { color: var(--mz-muted); margin: 0 0 1.2rem; }
.mz-quote .mz-form { margin: 0; padding: 0; background: none; border: 0; box-shadow: none; }
@keyframes mz-slide { from { transform: translateX(-30px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes mz-fade { from { opacity: 0; } to { opacity: 1; } }
body.mz-quote-open { overflow: hidden; }

/* Designer page */
.mz-designer-shell { margin-block: 1rem 3rem; }
.mz-designer-loading { min-height: 60vh; display: grid; place-content: center; justify-items: center; gap: 0.75rem; border-radius: 20px; background: linear-gradient(#e6ebee, #efe9df); color: #5c6166; }
.mz-designer-loading__spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid rgba(0, 0, 0, 0.12); border-top-color: var(--mz-accent); animation: mz-spin 0.9s linear infinite; }
@keyframes mz-spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------------
   Contact form
   ---------------------------------------------------------------------- */
.mz-form { margin: 0 0 2rem; padding: 1.8rem; border-radius: 22px; background: #fff; border: 1px solid var(--mz-line); box-shadow: var(--mz-shadow); }
.mz-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; }
.mz-field { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 500; font-size: 0.93rem; color: var(--mz-muted); }
.mz-field--wide { grid-column: 1 / -1; }
.mz-field input, .mz-field select, .mz-field textarea { font: inherit; padding: 0.8rem 0.95rem; border: 1px solid var(--mz-line-strong); border-radius: 12px; background: var(--mz-bg); color: var(--mz-ink); font-weight: 400; transition: border-color 0.15s, box-shadow 0.15s, background 0.15s; }
.mz-field input:focus, .mz-field select:focus, .mz-field textarea:focus { outline: none; border-color: var(--mz-accent); background: #fff; box-shadow: 0 0 0 4px rgba(47, 95, 143, 0.15); }
.mz-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--mz-muted); }
.mz-consent input { margin-top: 0.3rem; width: 1.1rem; height: 1.1rem; accent-color: var(--mz-accent); }
.mz-hp { position: absolute; inset-inline-start: -9999px; }
.mz-form__status { min-height: 1.4em; margin: 1rem 0 0.5rem; color: var(--mz-muted); }
.mz-form__status.is-error { color: #b3261e; }
.mz-form__hint { font-size: 0.88rem; color: var(--mz-muted); margin-top: 0.8rem; }
.mz-form button { cursor: pointer; font: inherit; }
.mz-form__done h3 { margin-top: 0; }

.mz-contact-card { padding: 1.6rem; border-radius: 22px; background: linear-gradient(160deg, #26405e 0%, #1b2a3d 55%, #0f1a29 100%); box-shadow: var(--mz-shadow-primary); color: #fff; }
.mz-contact-card h2 { color: #fff; font-size: 1.35rem; margin: 0 0 0.6rem; }
.mz-contact-card p { color: rgba(255, 255, 255, 0.72); margin: 0 0 1rem; font-size: 0.95rem; }
.mz-contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.mz-contact-card li a, .mz-contact-card li > span { display: flex; align-items: flex-start; gap: 0.6rem; color: #fff; text-decoration: none; font-weight: 600; line-height: 1.35; }
.mz-contact-card li a > span:last-child, .mz-contact-card li > span > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.mz-contact-card li span[dir="ltr"] { white-space: nowrap; }
.mz-contact-card li a:hover { color: #cfe0f3; }
.mz-contact-card .mz-icon { color: #9fc0e3; width: 22px; height: 22px; margin-top: 0.1rem; }
.mz-contact-card small { display: block; color: rgba(255, 255, 255, 0.6); font-weight: 400; font-size: 0.85rem; }

/* -------------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .mz-steps-row { flex-wrap: wrap !important; }
  .mz-steps-row > .wp-block-column { flex-basis: calc(50% - 0.55rem) !important; flex-grow: 0; }
  .mz-trust, .mz-stats { grid-template-columns: repeat(2, 1fr); }
  .mz-services { grid-template-columns: repeat(2, 1fr); }
  .mz-now { grid-template-columns: 1fr; }
}
@media (max-width: 781px) {
  .mz-form__grid { grid-template-columns: 1fr; }
  .mz-cta { padding: 1.7rem; }
  .mz-hero { padding-block: 2.4rem 2.4rem; }
  .mz-hero__cols { flex-direction: column-reverse !important; }
  .mz-hero__chips { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 1rem; }
  .mz-hero__image::after { display: none; }
  .mz-services { grid-template-columns: 1fr; }
  .mz-materials { grid-auto-columns: minmax(150px, 1fr); }
  .mz-dock { inset-inline-end: 12px; bottom: 12px; }
  .mz-dock__btn span { display: none; }
  .mz-dock__btn { padding: 0.8rem; }
  .mz-dock__btn--quote span { display: inline; }
  .mz-quote__panel { width: 100%; }
}
@media (max-width: 600px) { .mz-trust, .mz-stats { grid-template-columns: 1fr; } }

/* Accessibility helpers */
.mz-req { color: #b3261e; text-decoration: none; border: 0; font-weight: 700; }
.mz-field__hint { color: var(--mz-muted); font-size: 0.82rem; font-weight: 400; }
.mz-form__req { font-size: 0.85rem; color: var(--mz-muted); margin: 1rem 0 0; }
.mz-field input[aria-invalid="true"], .mz-field select[aria-invalid="true"], .mz-field textarea[aria-invalid="true"] { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.18); }
.mz-consent input[aria-invalid="true"] { outline: 2px solid #b3261e; outline-offset: 2px; }
.mz-materials:focus-visible { outline: 3px solid var(--mz-accent); outline-offset: 4px; border-radius: 18px; }
.mz-quote__panel:focus { outline: none; }
.mz-form__done:focus { outline: 2px solid var(--mz-accent); outline-offset: 4px; border-radius: 8px; }
