/*
Theme Name: MSS Rozi — Modern (Astra Child)
Theme URI: https://mssrozienterprises.com
Description: Astra child theme for M.S.S Rozi Enterprises, cloning the exact design language of Modern Bakery UAE (modernbakery.com) — cream + chocolate-brown bakery palette, huge editorial display type, pill-shaped warm-orange CTAs. Built for Astra parent + Elementor sections.
Author: Bestway Solutions
Version: 2.0.0
Template: astra
Text Domain: astra-mssrozi
*/

/* ============================================================
   DESIGN TOKENS — Modern Bakery's EXACT palette (extracted
   from cdn.prod.website-files.com modernbakery.webflow.css)
   ============================================================ */
:root {
  /* Brand swatches (exact from Modern Bakery) */
  --swatch-light-dough:   #f3e9d7;   /* primary cream bg */
  --swatch-medium-dough:  #ebdabc;   /* alt section bg */
  --swatch-brown:         #5b3217;   /* primary text / dark sections */
  --swatch-brown-deep:    #2b1d15;   /* deepest brown / footer */
  --swatch-orange:        #ec5e2a;   /* accent — heading highlights */
  --swatch-orange-cta:    #f7931e;   /* button background — warmer orange */
  --swatch-orange-dark:   #d6791a;   /* button hover */
  --swatch-yellow:        #f3c244;   /* secondary accent / promo bg */
  --swatch-green:         #546824;   /* tertiary / sustainability bg */

  /* Semantic mapping — LIGHT mode (default) */
  --t-bg:                 var(--swatch-light-dough);
  --t-bg-alt:             var(--swatch-medium-dough);
  --t-text:               var(--swatch-brown);
  --t-heading:            var(--swatch-brown);
  --t-muted:              rgba(91,50,23,0.65);
  --t-line:               rgba(91,50,23,0.15);
  --t-line-strong:        rgba(91,50,23,0.28);

  /* Type scale (Modern Bakery's exact px values — fluid via clamp) */
  --f-hero:               clamp(64px, 9.8vw, 128px);   /* hero h1 */
  --f-h1:                 clamp(56px, 7.5vw, 104px);   /* section h1 */
  --f-h2:                 clamp(44px, 5.6vw, 80px);    /* large section heading */
  --f-h3:                 clamp(28px, 3.0vw, 44px);    /* card heading */
  --f-h4:                 22px;
  --f-eyebrow:            12px;
  --f-body:               18px;
  --f-body-sm:            15px;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px; --s-9: 140px;

  /* Layout */
  --layout-max:    1440px;
  --layout-narrow: 920px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   0.18s;
  --t-med:    0.32s;
  --t-slow:   0.64s;
}

/* ============================================================
   THEMING — section bg variants (mirrors Modern Bakery's
   .color-mode-light / .color-mode-dark / .swatch-* sections)
   ============================================================ */
.mss-bg-cream  { --t-bg: var(--swatch-light-dough);  --t-text: var(--swatch-brown);        --t-heading: var(--swatch-brown);        background: var(--t-bg); color: var(--t-text); }
.mss-bg-dough  { --t-bg: var(--swatch-medium-dough); --t-text: var(--swatch-brown);        --t-heading: var(--swatch-brown);        background: var(--t-bg); color: var(--t-text); }
.mss-bg-brown  { --t-bg: var(--swatch-brown);        --t-text: var(--swatch-light-dough);  --t-heading: var(--swatch-light-dough);  background: var(--t-bg); color: var(--t-text); }
.mss-bg-dark   { --t-bg: var(--swatch-brown-deep);   --t-text: var(--swatch-light-dough);  --t-heading: var(--swatch-light-dough);  background: var(--t-bg); color: var(--t-text); }
.mss-bg-orange { --t-bg: var(--swatch-orange);       --t-text: var(--swatch-brown);        --t-heading: var(--swatch-brown);        background: var(--t-bg); color: var(--t-text); }
.mss-bg-yellow { --t-bg: var(--swatch-yellow);       --t-text: var(--swatch-brown);        --t-heading: var(--swatch-brown);        background: var(--t-bg); color: var(--t-text); }
.mss-bg-green  { --t-bg: var(--swatch-green);        --t-text: var(--swatch-light-dough);  --t-heading: var(--swatch-light-dough);  background: var(--t-bg); color: var(--t-text); }

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

body.astra-mssrozi-body,
body {
  background: var(--swatch-light-dough);
  color: var(--swatch-brown);
  font-family: 'Inter', 'Season Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--f-body);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Season Sans', sans-serif;
  color: var(--t-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.92;     /* Modern Bakery: 0.9em for headings */
  margin: 0 0 var(--s-4);
}
h1 { font-size: var(--f-h1); }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); font-weight: 500; }
h4 { font-size: var(--f-h4); font-weight: 600; letter-spacing: -0.005em; line-height: 1.2; }

p {
  color: var(--t-text);
  font-size: var(--f-body);
  line-height: 1.55;
  margin: 0 0 var(--s-3);
  font-weight: 400;
}

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--swatch-orange); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--swatch-orange-cta); color: var(--swatch-brown); }

/* ============================================================
   LAYOUT — containers & section
   ============================================================ */
.mss-container        { max-width: var(--layout-max);    margin: 0 auto; padding: 0 var(--s-6); }
.mss-container-narrow { max-width: var(--layout-narrow); margin: 0 auto; padding: 0 var(--s-6); }

.mss-section            { padding: var(--s-9) 0; position: relative; }
.mss-section--tight     { padding: var(--s-8) 0; }
.mss-section--xl        { padding: 160px 0; }

/* Rounded-top sections — clone of Modern Bakery's section--rounded-top */
.mss-section--rounded   { border-top-left-radius: 2em; border-top-right-radius: 2em; overflow: hidden; position: relative; z-index: 1; }
.mss-section--rounded-stack { margin-top: -2em; }   /* pulls the rounded section up over the previous one */

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.mss-display  { font-size: var(--f-hero); font-weight: 500; letter-spacing: -0.018em; line-height: 0.9; margin: 0 0 var(--s-5); color: var(--t-heading); }
.mss-h2       { font-size: var(--f-h2); font-weight: 500; line-height: 0.92; letter-spacing: -0.01em; margin: 0 0 var(--s-4); color: var(--t-heading); }
.mss-eyebrow  { display: inline-block; font-size: var(--f-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--t-text); opacity: 0.7; font-weight: 500; margin-bottom: var(--s-4); }
.mss-eyebrow--orange { color: var(--swatch-orange); opacity: 1; }
.mss-eyebrow--yellow { color: var(--swatch-yellow); opacity: 1; }
.mss-lede     { font-size: 20px; line-height: 1.5; color: var(--t-text); max-width: 640px; opacity: 0.85; }
.mss-text-center { text-align: center; }
.mss-text-center .mss-lede { margin-left: auto; margin-right: auto; }

.mss-section-head { max-width: 880px; margin-bottom: var(--s-7); }
.mss-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* highlight word (orange splash, Modern Bakery hero style) */
.mss-highlight { color: var(--swatch-orange); font-style: italic; font-weight: 400; }

/* ============================================================
   BUTTONS — pill-shape (border-radius: 100vw), Modern Bakery style
   ============================================================ */
.mss-btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0 1.5em;
  height: 3.5em;
  font-family: inherit; font-size: 17px; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent; border-radius: 100vw;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.mss-btn--primary { background: var(--swatch-orange-cta); color: var(--swatch-brown); }
.mss-btn--primary:hover { background: var(--swatch-orange-dark); color: var(--swatch-brown); transform: translateY(-1px); }

.mss-btn--dark { background: var(--swatch-brown); color: var(--swatch-light-dough); }
.mss-btn--dark:hover { background: var(--swatch-brown-deep); color: var(--swatch-light-dough); transform: translateY(-1px); }

.mss-btn--outline { background: transparent; color: var(--t-text); border-color: var(--t-line-strong); }
.mss-btn--outline:hover { background: var(--swatch-brown); color: var(--swatch-light-dough); border-color: var(--swatch-brown); }

.mss-btn--outline-light { background: transparent; color: var(--swatch-light-dough); border-color: rgba(243,233,215,0.4); }
.mss-btn--outline-light:hover { background: var(--swatch-light-dough); color: var(--swatch-brown); border-color: var(--swatch-light-dough); }

.mss-btn .mss-arrow { display: inline-flex; align-items: center; transition: transform var(--t-fast) var(--ease-out); }
.mss-btn:hover .mss-arrow { transform: translateX(4px); }

.mss-btn-group { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* ============================================================
   HERO — video background, huge display text
   ============================================================ */
.mss-hero { position: relative; height: 100vh; min-height: 720px; max-height: 1000px; overflow: hidden; background: var(--swatch-brown); color: var(--swatch-light-dough); }
.mss-hero__media { position: absolute; inset: 0; }
.mss-hero__media video,
.mss-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.mss-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,29,21,0.15) 0%, rgba(43,29,21,0.05) 40%, rgba(43,29,21,0.65) 100%);
}
.mss-hero__content {
  position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: var(--s-8); color: var(--swatch-light-dough);
}
.mss-hero__content .mss-container { width: 100%; }
.mss-hero h1 { color: var(--swatch-light-dough); font-size: var(--f-hero); font-weight: 500; letter-spacing: -0.018em; line-height: 0.9; max-width: 1100px; margin-bottom: var(--s-5); }
.mss-hero .mss-eyebrow { color: var(--swatch-light-dough); opacity: 0.85; margin-bottom: var(--s-4); }
.mss-hero p.mss-lede { color: var(--swatch-light-dough); opacity: 0.85; max-width: 620px; margin-bottom: var(--s-6); font-size: 20px; }

.mss-hero__scroll {
  position: absolute; bottom: var(--s-5); right: var(--s-6);
  color: var(--swatch-light-dough); opacity: 0.7; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
}
.mss-hero__scroll::after { content: ''; width: 1px; height: 32px; background: currentColor; animation: mss-bob 2.4s var(--ease-out) infinite; }
@keyframes mss-bob { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(8px); opacity: 1; } }

/* ============================================================
   HERITAGE / NARRATIVE — "Big on baking" Modern Bakery style
   Dark brown bg + photo on one side, narrative on the other
   --tight variant: smaller version after brands (user spec)
   ============================================================ */
.mss-heritage { padding: var(--s-9) 0; }
.mss-heritage__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-8); align-items: center; }
.mss-heritage__photo {
  aspect-ratio: 4/5; overflow: hidden; border-radius: 1.5em;
  background: var(--swatch-medium-dough);
}
.mss-heritage__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.mss-heritage__photo:hover img { transform: scale(1.03); }
.mss-heritage__text .mss-eyebrow { opacity: 0.7; }
.mss-heritage__text h2 { font-size: var(--f-h2); font-weight: 500; line-height: 0.95; margin-bottom: var(--s-5); letter-spacing: -0.015em; }
.mss-heritage__text p { font-size: 18px; line-height: 1.55; margin-bottom: var(--s-4); }

/* TIGHT variant — smaller, more compact (used when section is mid-page) */
.mss-heritage--tight { padding: var(--s-7) 0; }
.mss-heritage--tight .mss-heritage__inner { grid-template-columns: 0.85fr 1fr; gap: var(--s-6); }
.mss-heritage--tight .mss-heritage__photo { aspect-ratio: 1/1; border-radius: 1em; max-width: 420px; }
.mss-heritage--tight .mss-heritage__text h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: var(--s-3); line-height: 1; }
.mss-heritage--tight .mss-heritage__text p { font-size: 16px; line-height: 1.55; margin-bottom: var(--s-3); }

/* ============================================================
   BRANDS MARQUEE — "We bake for" infinite horizontal scroll
   --xl variant: large 18vw square tiles per Modern Bakery
   ============================================================ */
.mss-marquee { padding: var(--s-7) 0; overflow: hidden; }
.mss-marquee__label { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; margin-bottom: var(--s-5); }
.mss-marquee__scroll { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); }
.mss-marquee__track { display: flex; flex-wrap: nowrap; animation: mss-marquee-scroll 36s linear infinite; }
.mss-marquee__track:hover { animation-play-state: paused; }
.mss-marquee__item {
  flex-shrink: 0; width: 14vw; min-width: 180px; max-width: 240px; aspect-ratio: 3/1.6;
  margin: 0 var(--s-2);
  background: var(--swatch-medium-dough); color: var(--swatch-brown);
  border-radius: 1vw;
  display: flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: 'Inter', sans-serif; font-size: 22px; letter-spacing: -0.01em; font-weight: 500;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.mss-marquee__item:hover { background: var(--swatch-brown); color: var(--swatch-light-dough); }
.mss-marquee__item--brow {
  background: var(--swatch-brown-deep); color: var(--swatch-light-dough);
  flex-direction: column; padding: var(--s-3); gap: 4px;
}
.mss-marquee__item--brow strong { font-size: 24px; letter-spacing: 0.04em; }
.mss-marquee__item--brow small { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--swatch-orange-cta); }
.mss-marquee__item--brow:hover { background: var(--swatch-orange-cta); color: var(--swatch-brown); }
.mss-marquee__item--brow:hover small { color: var(--swatch-brown); }
@keyframes mss-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* XL marquee — Modern Bakery size: 18vw square tiles */
.mss-marquee--xl { padding: var(--s-9) 0; }
.mss-marquee--xl .mss-marquee__label { margin-bottom: var(--s-6); font-size: 14px; }
.mss-marquee--xl .mss-marquee__item {
  width: 18vw; min-width: 260px; max-width: 360px; aspect-ratio: 1/1;
  margin: 0 1vw;
  border-radius: 1.5vw;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 500;
}
.mss-marquee--xl .mss-marquee__item--brow strong { font-size: clamp(36px, 3vw, 52px); }
.mss-marquee--xl .mss-marquee__item--brow small { font-size: 13px; letter-spacing: 0.18em; }
.mss-marquee--xl .mss-marquee__track { animation-duration: 60s; }   /* slower because tiles are bigger */

/* ============================================================
   YELLOW PATTERN BG — clone of "Become a partner" section
   ============================================================ */
.mss-bg-yellow-pattern {
  background-color: var(--swatch-yellow);
  background-image:
    linear-gradient(90deg, rgba(243,194,68,0.7), #f3c244),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%235b3217' stroke-opacity='0.12' stroke-width='1'><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='14'/><path d='M40 4v72M4 40h72'/></g></svg>");
  background-size: auto, 280px 280px;
  background-position: 0 0, 0 0;
  color: var(--swatch-brown);
}
.mss-bg-yellow-pattern h2, .mss-bg-yellow-pattern h3 { color: var(--swatch-brown); }
.mss-bg-yellow-pattern .mss-eyebrow { color: var(--swatch-brown); opacity: 0.75; }
.mss-bg-yellow-pattern p { color: var(--swatch-brown); }

/* ============================================================
   NARRATIVE BLOCK — "Big on baking" style
   ============================================================ */
.mss-narrative { padding: 160px 0; }
.mss-narrative__lead { font-size: clamp(36px, 4vw, 56px); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; max-width: 1200px; margin: 0 0 var(--s-6); }
.mss-narrative__sub { font-size: 19px; line-height: 1.55; max-width: 720px; opacity: 0.85; margin-bottom: var(--s-6); }

/* ============================================================
   CLIENTS / "We supply to" LOGO STRIP
   ============================================================ */
.mss-clients { padding: var(--s-8) 0; border-top: 1px solid var(--t-line); border-bottom: 1px solid var(--t-line); }
.mss-clients__label { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; margin-bottom: var(--s-5); }
.mss-clients__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-5); align-items: center; }
.mss-clients__cell {
  aspect-ratio: 3/1.6; display: grid; place-items: center;
  font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: 0.04em; font-weight: 500;
  color: var(--t-text); opacity: 0.6;
  border: 1px solid var(--t-line);
  transition: opacity var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.mss-clients__cell:hover { opacity: 1; border-color: var(--t-line-strong); }

/* ============================================================
   WHAT WE SUPPLY — spread 5-card row (was stacked carousel)
   ============================================================ */
.mss-featured { position: relative; padding: var(--s-8) 0 var(--s-7); overflow: hidden; }

/* Category cards — 3+2 layout at desktop (MB featured-card scale ~460px wide)
   Row 1: 3 cards across · Row 2: 2 cards centered */
.mss-cats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.mss-cat-card { grid-column: span 2; }                /* default: each card spans 2 of 6 cols → 3 per row */
.mss-cat-card:nth-child(4) { grid-column: 2 / span 2; } /* 4th card starts at col 2 (centers row of 2) */
.mss-cat-card:nth-child(5) { grid-column: 4 / span 2; } /* 5th card starts at col 4 */

.mss-cat-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--swatch-medium-dough);
  border: 0; border-radius: 22px;
  overflow: hidden; cursor: pointer;
  font-family: inherit; text-align: left;
  aspect-ratio: 4/4.4;                                /* bigger image area, taller card */
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
  padding: 0;
}
.mss-cat-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(91,50,23,0.22); }
.mss-cat-card__img { flex: 1; overflow: hidden; background: var(--swatch-medium-dough); }
.mss-cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.mss-cat-card:hover .mss-cat-card__img img { transform: scale(1.06); }
.mss-cat-card__body {
  background: var(--swatch-light-dough); padding: var(--s-5) var(--s-5) var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.mss-cat-card__num { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--swatch-orange); font-weight: 500; }
.mss-cat-card__name { font-size: 26px; font-weight: 500; line-height: 1.1; letter-spacing: -0.012em; margin: 0; color: var(--swatch-brown); }
.mss-cat-card__cta { font-size: 14px; font-weight: 600; color: var(--swatch-brown); display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s-2); }
.mss-cat-card:hover .mss-cat-card__cta { color: var(--swatch-orange); }
.mss-cat-card:hover .mss-cat-card__cta .mss-arrow { transform: translateX(4px); }

/* (legacy stacked carousel styles kept below for ref but unused now) */

/* Huge faint watermark text behind everything */
.mss-featured__watermark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1;
  color: var(--swatch-brown);
  opacity: 0.08;
  pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap;
}

.mss-featured__inner { position: relative; z-index: 1; }

/* Top eyebrow + tagline above the layout */
.mss-featured__head { text-align: center; margin-bottom: var(--s-6); }
.mss-featured__head .mss-eyebrow { margin-bottom: var(--s-2); }
.mss-featured__head p { max-width: 720px; margin: 0 auto; opacity: 0.8; }

/* Main 3-column layout: title — card stack — description */
.mss-featured__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: center;
  gap: var(--s-5);
  min-height: 580px;
}

/* Left: HUGE product title */
.mss-featured__title {
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 500; line-height: 0.95;
  letter-spacing: -0.018em;
  color: var(--swatch-brown);
  margin: 0;
  max-width: 480px;
}

/* Center: stacked fanned cards */
.mss-featured__stack {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.mss-featured__card {
  position: absolute; inset: 0;
  background: var(--swatch-medium-dough);
  border-radius: 18px;
  padding: 24px;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
/* 5-card fanned stack positions (left to right behind → front) */
.mss-featured__card--peek-far-left  { transform: translate(-34%, 6%)  scale(0.80); z-index: 1; opacity: 0.78; }
.mss-featured__card--peek-left      { transform: translate(-22%, 4%)  scale(0.86); z-index: 2; opacity: 0.85; }
.mss-featured__card--peek-mid       { transform: translate(-11%, 2%)  scale(0.93); z-index: 3; opacity: 0.92; }
.mss-featured__card--peek-right     { transform: translate(0, 0)      scale(0.98); z-index: 4; opacity: 0.96; }
.mss-featured__card--front          { transform: translate(0, 0)      scale(1);    z-index: 5; box-shadow: 0 24px 60px rgba(91,50,23,0.18); cursor: pointer; }
.mss-featured__card--front:hover    { transform: translate(0, -4px) scale(1.01); }

.mss-featured__pill {
  display: inline-flex; align-items: center;
  background: var(--swatch-light-dough); color: var(--swatch-brown);
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  padding: 8px 18px; border-radius: 100vw;
  align-self: flex-start;
}
.mss-featured__card-img {
  flex: 1; display: grid; place-items: center;
  margin-top: var(--s-3);
  border-radius: 12px; overflow: hidden;
  background: rgba(91,50,23,0.04);
}
.mss-featured__card-img img { width: 100%; height: 100%; object-fit: cover; }

/* Right: small heading + description */
.mss-featured__details { max-width: 380px; }
.mss-featured__details h3 { font-size: 30px; font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: var(--s-3); color: var(--swatch-brown); }
.mss-featured__details p { font-size: 17px; line-height: 1.55; color: var(--swatch-brown); opacity: 0.85; margin: 0; }

/* Bottom row: pagination — CTA — arrows */
.mss-featured__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: var(--s-7);
  gap: var(--s-4);
}
.mss-featured__counter { font-size: 16px; font-weight: 500; color: var(--swatch-brown); opacity: 0.7; letter-spacing: 0.04em; }
.mss-featured__cta { justify-self: center; }

.mss-featured__arrows { display: flex; gap: var(--s-3); justify-self: end; }
.mss-featured__arrow {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--t-line-strong);
  background: transparent; color: var(--swatch-brown);
  font-size: 20px; cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.mss-featured__arrow:hover { background: var(--swatch-brown); color: var(--swatch-light-dough); border-color: var(--swatch-brown); }
.mss-featured__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.mss-featured__arrow:disabled:hover { background: transparent; color: var(--swatch-brown); border-color: var(--t-line-strong); }

/* STATE B — products grid view (after clicking a category) */
.mss-featured__state[hidden] { display: none !important; }
.mss-featured__back {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: transparent; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500;
  color: var(--swatch-brown); padding: 0; margin-bottom: var(--s-6);
  transition: color var(--t-fast) var(--ease-out);
}
.mss-featured__back:hover { color: var(--swatch-orange); }
.mss-featured__back .mss-arrow { transition: transform var(--t-fast) var(--ease-out); }
.mss-featured__back:hover .mss-arrow { transform: rotate(180deg) translateX(4px); }

.mss-featured__cat-head { text-align: center; max-width: 720px; margin: 0 auto var(--s-7); }
.mss-featured__cat-head .mss-featured__pill { display: inline-flex; margin-bottom: var(--s-3); }
.mss-featured__cat-head h2 { font-size: var(--f-h2); font-weight: 500; line-height: 0.95; letter-spacing: -0.015em; margin-bottom: var(--s-3); color: var(--swatch-brown); }
.mss-featured__cat-head p { font-size: 17px; line-height: 1.55; opacity: 0.85; }

.mss-featured__products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.mss-featured__products-grid .mss-product { background: var(--swatch-light-dough); border: 1px solid var(--t-line); border-radius: 14px; padding: var(--s-3); transition: border-color var(--t-fast) var(--ease-out), transform var(--t-med) var(--ease-out); display: flex; flex-direction: column; }
.mss-featured__products-grid .mss-product:hover { border-color: var(--swatch-brown); transform: translateY(-3px); }
.mss-featured__products-grid .mss-product__img { aspect-ratio: 4/3; overflow: hidden; background: var(--swatch-medium-dough); border-radius: 10px; margin-bottom: var(--s-3); }
.mss-featured__products-grid .mss-product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.mss-featured__products-grid .mss-product:hover .mss-product__img img { transform: scale(1.04); }
.mss-featured__products-grid .mss-product__body { padding: 0 var(--s-3) var(--s-3); display: flex; flex-direction: column; flex: 1; }
.mss-featured__products-grid .mss-product h3 { font-size: 22px; font-weight: 500; margin-bottom: var(--s-2); line-height: 1.1; letter-spacing: -0.005em; }
.mss-featured__products-grid .mss-product p { font-size: 14px; line-height: 1.5; margin-bottom: var(--s-3); opacity: 0.85; }
.mss-featured__products-grid .mss-product__cta { font-size: 13px; letter-spacing: -0.005em; font-weight: 600; padding-top: var(--s-3); border-top: 1px solid var(--t-line); margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--swatch-brown); }
.mss-featured__products-grid .mss-product__cta:hover { color: var(--swatch-orange); }

/* Responsive */
@media (max-width: 1024px) {
  .mss-featured__layout { grid-template-columns: 1fr; text-align: center; gap: var(--s-6); }
  .mss-featured__title { margin: 0 auto; }
  .mss-featured__details { margin: 0 auto; }
  .mss-featured__stack { max-width: 320px; }
  .mss-featured__watermark { font-size: clamp(80px, 30vw, 200px); }
  .mss-featured__products-grid { grid-template-columns: 1fr 1fr; }
  /* 3+2 cards → 2-col grid on tablet (no special centering, just wrap) */
  .mss-cats-row { grid-template-columns: 1fr 1fr; }
  .mss-cat-card,
  .mss-cat-card:nth-child(4),
  .mss-cat-card:nth-child(5) { grid-column: span 1; }
  /* 4-col navigator → 2-col on tablet */
  .mss-nav-section__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .mss-nav-brand { grid-column: 1 / -1; }
  /* Heritage tight → single column on tablet */
  .mss-heritage--tight .mss-heritage__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .mss-heritage--tight .mss-heritage__photo { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .mss-featured__nav { grid-template-columns: 1fr; gap: var(--s-4); text-align: center; }
  .mss-featured__cta, .mss-featured__counter { justify-self: center; }
  .mss-featured__arrows { justify-self: center; }
  .mss-featured__products-grid { grid-template-columns: 1fr; }
  .mss-featured__card--peek-far-left { display: none; }
  /* Cards → 1 col on mobile */
  .mss-cats-row { grid-template-columns: 1fr; gap: var(--s-3); }
  .mss-cat-card { aspect-ratio: 4/4; }
  .mss-cat-card__name { font-size: 22px; }
  /* Navigator → 1 col on mobile */
  .mss-nav-section__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .mss-nav-bottom { flex-direction: column; align-items: flex-start; }
  /* Big marquee scales down */
  .mss-marquee--xl .mss-marquee__item { min-width: 200px; max-width: 240px; aspect-ratio: 1/1; }
}

/* ============================================================
   SOLUTIONS GRID — large image cards (3-up)
   ============================================================ */
.mss-solutions { padding: var(--s-9) 0; }
.mss-solutions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.mss-solution {
  aspect-ratio: 3/4; position: relative; overflow: hidden; border-radius: 12px;
  background: var(--swatch-brown); color: var(--swatch-light-dough);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s-6);
}
.mss-solution::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(91,50,23,0.2) 0%, rgba(91,50,23,0.8) 100%);
  z-index: 1;
}
.mss-solution__img { position: absolute; inset: 0; z-index: 0; }
.mss-solution__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.mss-solution:hover .mss-solution__img img { transform: scale(1.05); }
.mss-solution__body { position: relative; z-index: 2; }
.mss-solution__num { font-size: 13px; letter-spacing: 0.16em; opacity: 0.85; margin-bottom: var(--s-3); display: block; }
.mss-solution h3 { font-size: 32px; font-weight: 500; line-height: 1.05; margin-bottom: var(--s-3); color: var(--swatch-light-dough); }
.mss-solution p { font-size: 15px; line-height: 1.55; margin-bottom: var(--s-4); color: var(--swatch-light-dough); opacity: 0.85; }
.mss-solution__more { font-size: 13px; letter-spacing: -0.005em; font-weight: 600; color: var(--swatch-light-dough); border-bottom: 1px solid currentColor; padding-bottom: 3px; }

/* ============================================================
   STATS BAND — under hero
   ============================================================ */
.mss-stats { background: var(--swatch-light-dough); border-bottom: 1px solid var(--t-line); }
.mss-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.mss-stats__item { padding: var(--s-7) var(--s-5); border-right: 1px solid var(--t-line); text-align: center; }
.mss-stats__item:last-child { border-right: 0; }
.mss-stats__num { font-size: clamp(48px, 5.5vw, 80px); font-weight: 500; color: var(--swatch-brown); letter-spacing: -0.02em; line-height: 0.95; margin-bottom: var(--s-2); display: block; }
.mss-stats__label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; }

/* ============================================================
   QUOTE / EDITORIAL CALLOUT
   ============================================================ */
.mss-quote { padding: var(--s-9) 0; text-align: center; }
.mss-quote__inner { max-width: 1000px; margin: 0 auto; }
.mss-quote__text { font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.1; letter-spacing: -0.012em; margin-bottom: var(--s-5); font-style: italic; }
.mss-quote__by { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; }

/* ============================================================
   CTA / PARTNER BAND — orange or brown
   ============================================================ */
.mss-cta { padding: var(--s-9) 0; }
.mss-cta__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: end; }
.mss-cta h2 { font-size: var(--f-h2); margin: 0 0 var(--s-3); line-height: 0.92; }
.mss-cta p { font-size: 18px; opacity: 0.85; margin: 0; max-width: 560px; }
.mss-cta__actions { display: flex; gap: var(--s-3); justify-content: flex-end; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   --tight variant: shorter padding, matches MB Become-A-Partner height
   ============================================================ */
.mss-contact { padding: var(--s-9) 0; }
.mss-contact__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--s-7); }
/* TIGHT contact — form aligns with heading on right, even shorter overall */
.mss-contact--tight { padding: var(--s-5) 0; }                              /* was s-6, now s-5 = 32px top/bottom */
.mss-contact--tight .mss-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;                                          /* left = heading/info, right = form */
  gap: var(--s-6);
  align-items: start;                                                        /* CRITICAL: form starts at top, aligns with heading */
}
.mss-contact--tight .mss-contact__left { padding-top: 0; }
.mss-contact--tight .mss-contact__left .mss-eyebrow { margin-bottom: var(--s-2); }
.mss-contact--tight .mss-contact__left h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: var(--s-2); line-height: 1; letter-spacing: -0.012em; }
.mss-contact--tight .mss-contact__left .mss-lede { font-size: 15px; margin-bottom: var(--s-4); max-width: 460px; }
.mss-contact--tight .mss-contact__info { padding-top: var(--s-3); border-top: 1px solid rgba(91,50,23,0.18); }
.mss-contact--tight .mss-info-row { padding: var(--s-2) 0; border-bottom: 1px solid rgba(91,50,23,0.10); }
.mss-contact--tight .mss-info-row:last-child { border-bottom: 0; }
.mss-contact--tight .mss-info-row__label { font-size: 10px; margin-bottom: 2px; }
.mss-contact--tight .mss-info-row__val { font-size: 14px; }

/* Form (right column) — starts at top of grid, aligned with heading */
.mss-contact--tight .mss-form {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  padding: var(--s-4) var(--s-4);
  border-radius: 16px;
  margin-top: 0;                                                              /* aligned with eyebrow at top of left col */
}
.mss-contact--tight .mss-form h3 { font-size: 18px; margin-bottom: var(--s-1); }
.mss-contact--tight .mss-form > p { margin-bottom: var(--s-3); font-size: 13px; }
.mss-contact--tight .mss-field { margin-bottom: var(--s-2); }
.mss-contact--tight .mss-field label { font-size: 10px; margin-bottom: 4px; }
.mss-contact--tight .mss-field input,
.mss-contact--tight .mss-field select,
.mss-contact--tight .mss-field textarea { padding: 9px 14px; font-size: 13px; }
.mss-contact--tight .mss-field textarea { min-height: 56px; }
.mss-contact--tight .mss-btn { height: 48px !important; font-size: 13px; }

/* ============================================================
   NAVIGATOR — Modern Bakery light-theme footer
   Cream bg, brown editorial text, big brand block + clean columns.
   ============================================================ */
.mss-nav-section { padding: var(--s-8) 0 var(--s-5); position: relative; }
.mss-nav-section__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-6);
}

.mss-nav-brand img {
  width: auto; height: 64px; border-radius: 8px;
  margin-bottom: var(--s-4); display: block;
}
.mss-nav-brand h4 {
  color: var(--swatch-brown);
  font-size: clamp(28px, 3vw, 40px); font-weight: 500;
  letter-spacing: -0.015em; line-height: 1; margin: 0 0 var(--s-3);
}
.mss-nav-brand p {
  color: var(--swatch-brown); opacity: 0.75;
  font-size: 15px; line-height: 1.55;
  margin: 0; max-width: 380px;
}

.mss-nav-col h5 {
  color: var(--swatch-brown);
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 var(--s-4) 0;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid rgba(91,50,23,0.18);
}
.mss-nav-col ul { list-style: none; padding: 0; margin: 0; }
.mss-nav-col li { margin-bottom: var(--s-2); font-size: 15px; line-height: 1.5; }
.mss-nav-col li a, .mss-nav-col li {
  color: var(--swatch-brown);
  transition: color var(--t-fast) var(--ease-out);
}
.mss-nav-col li a:hover { color: var(--swatch-orange); }

.mss-nav-bottom {
  border-top: 1px solid rgba(91,50,23,0.18);
  padding-top: var(--s-4);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-3);
  font-size: 13px; color: var(--swatch-brown); opacity: 0.7;
}
.mss-nav-bottom span:last-child { color: var(--swatch-orange); opacity: 1; font-weight: 500; }
.mss-contact__info h3 { font-size: 24px; font-weight: 500; margin-bottom: var(--s-5); }
.mss-info-row { padding: var(--s-4) 0; border-bottom: 1px solid var(--t-line); }
.mss-info-row:last-child { border-bottom: 0; }
.mss-info-row__label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; margin-bottom: var(--s-1); }
.mss-info-row__val { font-size: 17px; }

.mss-form { background: var(--swatch-medium-dough); padding: var(--s-7) var(--s-6); border-radius: 12px; }
.mss-form h3 { font-size: 24px; font-weight: 500; margin-bottom: var(--s-2); }
.mss-form > p { font-size: 14px; opacity: 0.7; margin-bottom: var(--s-5); }
.mss-field { margin-bottom: var(--s-4); }
.mss-field label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; margin-bottom: var(--s-2); font-weight: 500; }
.mss-field input,
.mss-field select,
.mss-field textarea {
  width: 100%; padding: 16px 18px;
  background: var(--swatch-light-dough); border: 1px solid var(--t-line); border-radius: 100vw;
  font-family: inherit; font-size: 16px; color: var(--swatch-brown);
  transition: border-color var(--t-fast) var(--ease-out);
}
.mss-field textarea { border-radius: 20px; resize: vertical; }
.mss-field input:focus,
.mss-field select:focus,
.mss-field textarea:focus { border-color: var(--swatch-brown); outline: none; }
.mss-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

/* ============================================================
   FULL-WIDTH HOMEPAGE — break out of Astra's .ast-container
   Critical: Astra applies `display:flex` to .ast-container at min-width:922px,
   which breaks our edge-to-edge sections on desktop ONLY. Half-screen worked
   because the flex media query didn't fire. We must override both display AND
   width/padding/margin.
   ============================================================ */
body.is-mss-home #content,
body.is-mss-home .site-content,
body.is-mss-home .site-content > .ast-container,
body.is-mss-home .ast-container,
body.is-mss-home #primary,
body.is-mss-home main#main,
body.is-mss-home article.ast-article-post,
body.is-mss-home article.ast-article-single,
body.is-mss-home .entry-content,
body.is-mss-home .ast-no-sidebar #primary {
  display: block !important;
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex: none !important;     /* in case flex layout still applies */
}
body.is-mss-home .site-content { padding: 0 !important; }

/* Hide Astra's blog-post-as-homepage chrome (entry title, meta, pagination, thumbnail) */
body.is-mss-home .entry-header,
body.is-mss-home .entry-title,
body.is-mss-home .ast-pagination,
body.is-mss-home .entry-meta,
body.is-mss-home .post-thumb-img-content,
body.is-mss-home .ast-blog-meta-container,
body.is-mss-home .ast-article-post > .ast-article-inner > header { display: none !important; }

body.is-mss-home .entry-content > *:first-child { margin-top: 0 !important; }
body.is-mss-home .entry-content { display: block !important; }

/* Wipe Astra's "separate container" white wrapper + box-shadow around content */
body.is-mss-home.ast-separate-container .ast-article-post,
body.is-mss-home.ast-separate-container .ast-article-single,
body.is-mss-home.ast-separate-container #primary,
body.is-mss-home.ast-separate-container #content,
body.is-mss-home.ast-separate-container { background: transparent !important; }
body.is-mss-home.ast-separate-container .ast-article-post,
body.is-mss-home.ast-separate-container .ast-article-single {
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Astra might add bottom padding/margin to .site-content on blog homepage */
body.is-mss-home #content.site-content { padding-top: 0 !important; padding-bottom: 0 !important; }

body.is-mss-home .elementor-section-stretched { width: 100% !important; }

/* ============================================================
   ASTRA HEADER / FOOTER OVERRIDES
   ============================================================ */
.ast-theme-transparent-header .main-header-bar { background: transparent !important; box-shadow: none !important; }
.main-header-bar { transition: background var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out); }
body.scrolled .main-header-bar {
  background: rgba(243,233,215,0.95) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--t-line) !important;
}

.ast-site-identity .site-title a { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; color: var(--swatch-brown) !important; }
.ast-theme-transparent-header .site-title a { color: var(--swatch-light-dough) !important; }
body.scrolled .site-title a { color: var(--swatch-brown) !important; }

.ast-site-identity .site-logo-img { display: flex; align-items: center; }
.ast-site-identity img.custom-logo { max-height: 44px; width: auto; height: auto; }
body.wp-custom-logo .ast-site-title-wrap { display: none; }

.main-header-menu .menu-item > a { font-family: 'Inter', sans-serif !important; font-size: 15px !important; font-weight: 500 !important; letter-spacing: -0.005em; color: var(--swatch-brown) !important; }
.ast-theme-transparent-header .main-header-menu .menu-item > a { color: var(--swatch-light-dough) !important; }
body.scrolled .main-header-menu .menu-item > a { color: var(--swatch-brown) !important; }
.main-header-menu .menu-item > a:hover { color: var(--swatch-orange) !important; }

.site-footer { background: var(--swatch-brown-deep) !important; color: rgba(243,233,215,0.75) !important; padding: var(--s-8) 0 var(--s-5) !important; }
.site-footer a { color: rgba(243,233,215,0.9) !important; }
.site-footer a:hover { color: var(--swatch-orange) !important; }
.site-footer .widget-title { color: var(--swatch-light-dough) !important; font-family: 'Inter', sans-serif !important; font-size: 14px !important; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ============================================================
   ELEMENTOR OVERRIDES — keep our type/colors winning
   ============================================================ */
.elementor-widget-heading .elementor-heading-title { color: var(--t-heading); font-family: 'Inter', sans-serif; letter-spacing: -0.012em; line-height: 0.92; font-weight: 500; }
.elementor-widget-text-editor p { color: var(--t-text); line-height: 1.55; font-size: var(--f-body); }
.elementor-button { font-family: 'Inter', sans-serif !important; font-weight: 600 !important; letter-spacing: -0.005em !important; border-radius: 100vw !important; padding: 0 28px !important; height: 56px !important; }
.elementor-button.elementor-button-primary { background: var(--swatch-orange-cta) !important; color: var(--swatch-brown) !important; }
.elementor-button.elementor-button-primary:hover { background: var(--swatch-orange-dark) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --s-9: 100px; --s-8: 72px; }
  .mss-heritage__inner { grid-template-columns: 1fr; gap: var(--s-6); align-items: start; }
  .mss-products__head { grid-template-columns: 1fr; gap: var(--s-4); }
  .mss-products__grid { grid-template-columns: repeat(2, 1fr); }
  .mss-solutions__grid { grid-template-columns: 1fr 1fr; }
  .mss-clients__grid { grid-template-columns: repeat(4, 1fr); }
  .mss-cta__inner { grid-template-columns: 1fr; }
  .mss-cta__actions { justify-content: flex-start; }
  .mss-contact__grid { grid-template-columns: 1fr; }
  .mss-stats__grid { grid-template-columns: 1fr 1fr; }
  .mss-stats__item:nth-child(2) { border-right: 0; }
  .mss-stats__item:nth-child(1),
  .mss-stats__item:nth-child(2) { border-bottom: 1px solid var(--t-line); }
}

@media (max-width: 640px) {
  :root { --s-9: 72px; --s-8: 56px; --s-7: 40px; }
  .mss-container, .mss-container-narrow { padding: 0 var(--s-4); }
  .mss-hero { height: auto; min-height: 90vh; }
  .mss-hero__content { padding-top: 120px; padding-bottom: var(--s-7); }
  .mss-products__grid { grid-template-columns: 1fr; }
  .mss-solutions__grid { grid-template-columns: 1fr; }
  .mss-clients__grid { grid-template-columns: repeat(2, 1fr); }
  .mss-field-row { grid-template-columns: 1fr; }
  .mss-stats__grid { grid-template-columns: 1fr; }
  .mss-stats__item { border-right: 0 !important; border-bottom: 1px solid var(--t-line); }
  .mss-form { padding: var(--s-5) var(--s-4); }
}
