:root {
  --fms-red: #b20a28;
  --fms-red-strong: #ca1034;
  --fms-red-dark: #790016;
  --fms-ink: #11151a;
  --fms-ink-soft: #1a2027;
  --fms-slate: #2b333d;
  --fms-muted: #66717d;
  --fms-line: #d8dde2;
  --fms-paper: #f4f6f7;
  --fms-white: #fff;
  --fms-shell: 1400px;
  --fms-radius: 18px;
  --fms-shadow: 0 22px 60px rgba(17,21,26,.12);
  --fms-heading: "Bahnschrift Condensed", "Arial Narrow", system-ui, sans-serif;
  --fms-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--fms-ink); background: var(--fms-white); font-family: var(--fms-body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.fms-menu-open, body.fms-lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }
::selection { color: #fff; background: var(--fms-red); }

.screen-reader-text, .fms-honeypot { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.fms-skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; background: #fff; color: #111; border-radius: 8px; box-shadow: var(--fms-shadow); }
.fms-skip-link:focus { top: 16px; }
.fms-shell { width: min(calc(100% - 48px), var(--fms-shell)); margin-inline: auto; }
.fms-icon { width: 1.3em; height: 1.3em; fill: currentColor; flex: 0 0 auto; }

h1, h2, h3, h4 { margin: 0 0 .55em; font-family: var(--fms-heading); line-height: 1.02; letter-spacing: -.025em; }
h1 { font-size: clamp(3.5rem, 7vw, 7.2rem); font-weight: 800; }
h2 { font-size: clamp(2.45rem, 4.3vw, 4.7rem); font-weight: 780; }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 760; }
p { margin: 0 0 1.4em; }
.fms-eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; color: var(--fms-red); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.fms-section--ink .fms-eyebrow, .fms-page-hero .fms-eyebrow, .fms-footer__cta .fms-eyebrow { color: #ff7a92; }
.fms-section { padding: clamp(74px, 8vw, 130px) 0; }
.fms-section--compact { padding: clamp(50px, 5vw, 82px) 0; }
.fms-section--paper { background: var(--fms-paper); }
.fms-section--ink { position: relative; color: #fff; background: var(--fms-ink); overflow: hidden; }
.fms-section--ink::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 42px 42px; pointer-events: none; }
.fms-section--ink > * { position: relative; }
.fms-center { display: flex; justify-content: center; margin-top: 42px; }

.fms-button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 52px; padding: 13px 21px; border: 1px solid transparent; border-radius: 9px; font-size: .93rem; font-weight: 800; line-height: 1.2; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; cursor: pointer; }
.fms-button:hover { transform: translateY(-2px); }
.fms-button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(202,16,52,.35); outline-offset: 3px; }
.fms-button--primary { color: #fff; background: var(--fms-red); box-shadow: 0 12px 28px rgba(178,10,40,.25); }
.fms-button--primary:hover { background: var(--fms-red-strong); box-shadow: 0 15px 34px rgba(178,10,40,.32); }
.fms-button--dark { color: #fff; background: var(--fms-ink); }
.fms-button--dark:hover { background: var(--fms-slate); }
.fms-button--light { color: var(--fms-ink); background: #fff; }
.fms-button--light:hover { background: #f0f1f2; }
.fms-button--outline { color: var(--fms-ink); border-color: #bbc2c9; background: transparent; }
.fms-button--outline:hover { border-color: var(--fms-red); color: var(--fms-red); }
.fms-button--ghost-light { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.fms-button--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.fms-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fms-text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--fms-red); font-weight: 800; }
.fms-text-link svg { width: 1.15rem; transition: transform .2s ease; }
.fms-text-link:hover svg { transform: translateX(4px); }
.fms-text-link--light { color: #fff; }

/* Header */
.fms-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(17,21,26,.09); transition: box-shadow .2s ease, background .2s ease; }
.fms-header.is-scrolled { box-shadow: 0 14px 36px rgba(17,21,26,.11); }
.fms-topbar { color: #fff; background: var(--fms-ink); font-size: .78rem; }
.fms-topbar__inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.fms-topbar__inner > span, .fms-topbar__links, .fms-topbar a { display: flex; align-items: center; gap: 8px; }
.fms-topbar__links { gap: 22px; }
.fms-topbar a:hover { color: #ff9aad; }
.fms-header__inner { min-height: 92px; display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 28px; }
.fms-brand { display: inline-flex; align-items: center; max-width: 300px; }
.fms-brand img, .fms-brand .custom-logo { width: min(100%, 285px); height: auto; }
.fms-nav { justify-self: end; }
.fms-nav__list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.fms-nav__list > li { position: relative; display: flex; align-items: center; }
.fms-nav__list > li > a { padding: 16px 12px; font-size: .9rem; font-weight: 760; white-space: nowrap; }
.fms-nav__list > li > a:hover, .fms-nav__list > .current-menu-item > a, .fms-nav__list > .current-menu-ancestor > a { color: var(--fms-red); }
.fms-submenu-toggle { display: none; }
.fms-nav .sub-menu { position: absolute; top: calc(100% + 7px); left: 0; min-width: 315px; margin: 0; padding: 12px; list-style: none; background: #fff; border: 1px solid var(--fms-line); border-radius: 14px; box-shadow: var(--fms-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.fms-nav .sub-menu::before { content: ""; position: absolute; left: 20px; top: -7px; width: 14px; height: 14px; background: #fff; border-top: 1px solid var(--fms-line); border-left: 1px solid var(--fms-line); transform: rotate(45deg); }
.fms-nav .sub-menu li { position: relative; z-index: 1; }
.fms-nav .sub-menu a { display: block; padding: 11px 12px; border-radius: 8px; color: var(--fms-slate); font-size: .87rem; font-weight: 700; }
.fms-nav .sub-menu a:hover { color: var(--fms-red); background: var(--fms-paper); }
.fms-nav__list > li:hover > .sub-menu, .fms-nav__list > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fms-button--header { min-height: 46px; color: #fff; background: var(--fms-red); }
.fms-menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.fms-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--fms-ink); transition: .2s ease; }
.fms-breadcrumbs { padding: 11px 0; border-bottom: 1px solid var(--fms-line); background: #fff; color: var(--fms-muted); font-size: .78rem; }
.fms-breadcrumbs .fms-shell { display: flex; flex-wrap: wrap; gap: 8px; }
.fms-breadcrumbs a:hover { color: var(--fms-red); }

/* Hero */
.fms-hero { position: relative; min-height: min(790px, calc(100vh - 110px)); display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--fms-ink); }
.fms-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.fms-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,13,17,.96) 0%, rgba(10,13,17,.82) 42%, rgba(10,13,17,.25) 73%, rgba(10,13,17,.12) 100%), linear-gradient(0deg, rgba(10,13,17,.58), transparent 48%); }
.fms-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); align-items: end; gap: 78px; padding-block: 115px 90px; }
.fms-hero__content { max-width: 850px; }
.fms-hero__content h1 { max-width: 780px; text-transform: uppercase; }
.fms-hero__content > p { max-width: 740px; color: rgba(255,255,255,.86); font-size: clamp(1.08rem, 1.5vw, 1.35rem); line-height: 1.55; }
.fms-hero__proof { display: flex; flex-wrap: wrap; gap: 20px 28px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.82); font-size: .87rem; font-weight: 720; }
.fms-hero__proof li { display: flex; align-items: center; gap: 7px; }
.fms-hero__proof svg { color: #ff607f; }
.fms-hero-card { align-self: end; padding: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; background: rgba(17,21,26,.65); backdrop-filter: blur(14px); box-shadow: 0 25px 80px rgba(0,0,0,.26); }
.fms-hero-card__kicker { display: block; margin-bottom: 14px; color: #ff8ba0; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fms-hero-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.fms-hero-card p { color: rgba(255,255,255,.74); }

.fms-trust-strip { color: #fff; background: var(--fms-red-dark); }
.fms-trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fms-trust-strip__grid > div { min-height: 104px; display: flex; flex-direction: column; justify-content: center; padding: 20px 30px; border-left: 1px solid rgba(255,255,255,.16); }
.fms-trust-strip__grid > div:last-child { border-right: 1px solid rgba(255,255,255,.16); }
.fms-trust-strip strong { font-family: var(--fms-heading); font-size: 1.85rem; line-height: 1; }
.fms-trust-strip span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: .78rem; }

/* Common heading blocks */
.fms-heading-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 80px; margin-bottom: 48px; }
.fms-heading-row h2 { max-width: 930px; }
.fms-heading-row > p { color: var(--fms-muted); font-size: 1.03rem; }
.fms-section--ink .fms-heading-row > p { color: rgba(255,255,255,.68); }
.fms-section-heading { max-width: 850px; margin-bottom: 52px; }
.fms-section-heading--center { margin-inline: auto; text-align: center; }
.fms-section-heading p { color: var(--fms-muted); font-size: 1.02rem; }
.fms-section--ink .fms-section-heading p { color: rgba(255,255,255,.68); }

/* Service cards */
.fms-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fms-service-grid--three { grid-template-columns: repeat(3, 1fr); }
.fms-service-card { position: relative; min-height: 315px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--fms-line); border-radius: var(--fms-radius); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.fms-service-card::after { content: ""; position: absolute; right: -55px; bottom: -55px; width: 160px; height: 160px; border: 28px solid rgba(178,10,40,.055); border-radius: 50%; transition: transform .25s ease; }
.fms-service-card:hover { transform: translateY(-6px); border-color: rgba(178,10,40,.34); box-shadow: var(--fms-shadow); }
.fms-service-card:hover::after { transform: scale(1.15); }
.fms-service-card__icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 14px; color: #fff; background: var(--fms-red); box-shadow: 0 12px 25px rgba(178,10,40,.24); }
.fms-service-card__icon svg { width: 27px; height: 27px; }
.fms-service-card h3 { position: relative; z-index: 1; font-size: 2rem; }
.fms-service-card h3 a::after { content: ""; position: absolute; inset: 0; }
.fms-service-card p { position: relative; z-index: 1; color: var(--fms-muted); }
.fms-service-card .fms-text-link { position: relative; z-index: 2; margin-top: auto; align-self: flex-start; }

/* Feature section */
.fms-feature-split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); align-items: center; gap: clamp(55px, 7vw, 110px); }
.fms-feature-split__content > p { max-width: 710px; color: rgba(255,255,255,.72); font-size: 1.04rem; }
.fms-check-list { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.fms-check-list li { display: flex; align-items: flex-start; gap: 10px; }
.fms-check-list svg { margin-top: .25rem; color: var(--fms-red-strong); }
.fms-section--ink .fms-check-list svg { color: #ff718d; }
.fms-image-stack { position: relative; min-height: 590px; }
.fms-image-stack figure { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.fms-image-stack img { width: 100%; height: 100%; object-fit: cover; }
.fms-image-stack__large { position: absolute; inset: 0 12% 12% 0; }
.fms-image-stack__small { position: absolute; right: 0; bottom: 0; width: 48%; height: 43%; border: 7px solid var(--fms-ink); }
.fms-image-stack__badge { position: absolute; left: -28px; bottom: 60px; min-width: 190px; display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; padding: 18px 20px; border-radius: 14px; color: var(--fms-ink); background: #fff; box-shadow: var(--fms-shadow); }
.fms-image-stack__badge svg { grid-row: 1/3; width: 32px; height: 32px; color: var(--fms-red); }
.fms-image-stack__badge strong { line-height: 1.1; }
.fms-image-stack__badge small { color: var(--fms-muted); }

/* Process */
.fms-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fms-process-grid article { position: relative; min-height: 255px; padding: 30px; border: 1px solid var(--fms-line); border-radius: 16px; background: #fff; }
.fms-process-grid article::after { content: ""; position: absolute; left: 30px; right: 30px; top: 69px; height: 1px; background: var(--fms-line); }
.fms-process-grid article > span { display: inline-flex; margin-bottom: 48px; color: var(--fms-red); font-family: var(--fms-heading); font-size: 1.6rem; font-weight: 800; }
.fms-process-grid h3 { font-size: 1.65rem; }
.fms-process-grid p { margin: 0; color: var(--fms-muted); }

/* Event promo */
.fms-event-promo { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 570px; border-radius: 22px; overflow: hidden; color: #fff; background: var(--fms-ink); box-shadow: var(--fms-shadow); }
.fms-event-promo__image { min-height: 570px; }
.fms-event-promo__image img { width: 100%; height: 100%; object-fit: cover; }
.fms-event-promo__content { align-self: center; padding: clamp(44px, 6vw, 84px); }
.fms-event-promo__content p { color: rgba(255,255,255,.72); font-size: 1.03rem; }
.fms-event-promo__content .fms-button--outline { color: #fff; border-color: rgba(255,255,255,.35); }

/* Projects */
.fms-project-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 270px); gap: 20px; }
.fms-project-card { position: relative; display: block; min-height: 270px; border-radius: 18px; overflow: hidden; color: #fff; background: var(--fms-ink); }
.fms-project-card--large { grid-row: 1 / 3; }
.fms-project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,11,14,.92), rgba(8,11,14,.08) 64%); }
.fms-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fms-project-card:hover img { transform: scale(1.035); }
.fms-project-card > span { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 24px; display: grid; gap: 3px; }
.fms-project-card small { color: #ff8ca2; font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fms-project-card strong { font-family: var(--fms-heading); font-size: clamp(1.6rem, 2.5vw, 2.7rem); line-height: 1.05; }

.fms-local-cta, .fms-contact-band { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 44px 50px; border: 1px solid var(--fms-line); border-radius: 18px; background: #fff; box-shadow: 0 16px 42px rgba(17,21,26,.07); }
.fms-local-cta h2, .fms-contact-band h2 { max-width: 900px; font-size: clamp(2.25rem, 4vw, 4rem); }
.fms-local-cta p { max-width: 910px; margin-bottom: 0; color: var(--fms-muted); }
.fms-contact-band .fms-eyebrow { margin-bottom: .4rem; }

/* Page hero */
.fms-page-hero { position: relative; overflow: hidden; }
.fms-page-hero--service, .fms-page-hero--about, .fms-page-hero--contact { min-height: 630px; display: flex; align-items: end; color: #fff; background: var(--fms-ink); }
.fms-page-hero--service > img, .fms-page-hero--about > img, .fms-page-hero--contact > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fms-page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,12,16,.95), rgba(9,12,16,.78) 48%, rgba(9,12,16,.22)), linear-gradient(0deg, rgba(9,12,16,.72), transparent 58%); }
.fms-page-hero__content { position: relative; padding-block: 110px 78px; }
.fms-page-hero__content h1 { max-width: 980px; font-size: clamp(3.8rem, 7vw, 7.4rem); text-transform: uppercase; }
.fms-page-hero__content > p { max-width: 820px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.4vw, 1.28rem); }
.fms-page-hero--simple { padding: clamp(90px, 9vw, 145px) 0; background: linear-gradient(135deg, #fff 0%, #f2f4f6 100%); border-bottom: 1px solid var(--fms-line); }
.fms-page-hero--simple .fms-shell { position: relative; }
.fms-page-hero--simple .fms-shell::after { content: ""; position: absolute; right: 0; top: 50%; width: 280px; height: 280px; border: 55px solid rgba(178,10,40,.055); border-radius: 50%; transform: translateY(-50%); }
.fms-page-hero--simple h1 { position: relative; z-index: 1; max-width: 1050px; font-size: clamp(3.4rem, 6.2vw, 6.6rem); text-transform: uppercase; }
.fms-page-hero--simple p { position: relative; z-index: 1; max-width: 850px; color: var(--fms-muted); font-size: 1.12rem; }
.fms-page-hero--simple .fms-actions { position: relative; z-index: 1; margin-top: 28px; }
.fms-page-hero--offer { background: linear-gradient(135deg, #fff 0%, #eef1f3 70%, #fff 100%); }

/* Service template */
.fms-result-box { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 34px 38px; border-left: 6px solid var(--fms-red); border-radius: 14px; background: var(--fms-paper); }
.fms-result-box__icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: var(--fms-red); }
.fms-result-box__icon svg { width: 34px; height: 34px; }
.fms-result-box .fms-eyebrow { margin-bottom: .4rem; }
.fms-result-box h2 { margin: 0; font-size: clamp(2rem, 3.7vw, 3.65rem); }
.fms-scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fms-scope-grid article { display: grid; grid-template-columns: auto 1fr; gap: 0 18px; padding: 30px; border: 1px solid var(--fms-line); border-radius: 15px; background: #fff; }
.fms-scope-grid article > span { grid-row: 1/3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--fms-red); background: rgba(178,10,40,.09); }
.fms-scope-grid h3 { font-size: 1.8rem; }
.fms-scope-grid p { margin: 0; color: var(--fms-muted); }
.fms-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.fms-two-column > div > p { color: rgba(255,255,255,.7); }
.fms-tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.fms-tag-list span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.05); font-size: .82rem; font-weight: 700; }
.fms-deliverables { padding: 36px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.055); }
.fms-deliverables ul { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.fms-deliverables li { display: flex; align-items: center; gap: 11px; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.11); }
.fms-deliverables li:last-child { padding-bottom: 0; border-bottom: 0; }
.fms-deliverables svg { color: #ff708b; }
.fms-faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.fms-faq-layout > div:first-child { position: sticky; top: 150px; }
.fms-faq-layout > div:first-child p { color: var(--fms-muted); }
.fms-faq { display: grid; gap: 12px; }
.fms-faq details { border: 1px solid var(--fms-line); border-radius: 13px; background: #fff; overflow: hidden; }
.fms-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 24px; font-weight: 800; cursor: pointer; list-style: none; }
.fms-faq summary::-webkit-details-marker { display: none; }
.fms-faq summary span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--fms-red); font-size: 1.3rem; transition: transform .2s ease; }
.fms-faq details[open] summary span { transform: rotate(45deg); }
.fms-faq details > div { padding: 0 24px 22px; color: var(--fms-muted); }
.fms-faq details p { margin: 0; }
.fms-stat-panel { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.fms-stat-panel > div { min-height: 170px; display: flex; flex-direction: column; justify-content: end; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(255,255,255,.05); }
.fms-stat-panel strong { color: #fff; font-family: var(--fms-heading); font-size: 3rem; line-height: 1; }
.fms-stat-panel span { margin-top: 8px; color: rgba(255,255,255,.62); font-size: .82rem; }

/* About */
.fms-about-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.fms-about-intro > div:last-child { color: var(--fms-muted); font-size: 1.04rem; }
.fms-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.fms-values-grid article { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(255,255,255,.05); }
.fms-values-grid article > span { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; color: #fff; background: var(--fms-red); }
.fms-values-grid h3 { font-size: 1.7rem; }
.fms-values-grid p { margin: 0; color: rgba(255,255,255,.64); }
.fms-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.fms-timeline > div { position: relative; min-height: 260px; padding: 36px; border-left: 1px solid var(--fms-line); }
.fms-timeline > div:last-child { border-right: 1px solid var(--fms-line); }
.fms-timeline > div::before { content: ""; position: absolute; left: -7px; top: 41px; width: 13px; height: 13px; border-radius: 50%; background: var(--fms-red); box-shadow: 0 0 0 7px rgba(178,10,40,.12); }
.fms-timeline span { color: var(--fms-red); font-family: var(--fms-heading); font-size: 1.8rem; font-weight: 800; }
.fms-timeline h3 { margin-top: 28px; }
.fms-timeline p { color: var(--fms-muted); }

/* Gallery */
.fms-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; gap: 16px; }
.fms-gallery__item { position: relative; display: block; padding: 0; border: 0; border-radius: 15px; overflow: hidden; color: #fff; background: var(--fms-ink); cursor: zoom-in; }
.fms-gallery__item--wide { grid-column: span 2; }
.fms-gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,10,13,.88), rgba(8,10,13,0) 58%); }
.fms-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.fms-gallery__item:hover img { transform: scale(1.04); }
.fms-gallery__item > span { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; display: grid; text-align: left; }
.fms-gallery__item small { color: #ff91a5; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fms-gallery__item strong { font-family: var(--fms-heading); font-size: 1.65rem; line-height: 1.1; }
.fms-lightbox { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: 40px; background: rgba(5,7,10,.92); backdrop-filter: blur(9px); }
.fms-lightbox[hidden] { display: none; }
.fms-lightbox img { max-width: min(1400px, 92vw); max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.fms-lightbox button { position: absolute; right: 24px; top: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-size: 2rem; cursor: pointer; }

/* Contact */
.fms-contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 8vw, 110px); align-items: start; }
.fms-contact-details > p { color: var(--fms-muted); }
.fms-contact-cards { display: grid; gap: 12px; margin: 30px 0; }
.fms-contact-cards a { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: 0 15px; padding: 20px; border: 1px solid var(--fms-line); border-radius: 13px; background: #fff; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.fms-contact-cards a:hover { transform: translateY(-3px); border-color: rgba(178,10,40,.35); box-shadow: 0 14px 30px rgba(17,21,26,.08); }
.fms-contact-cards a > span { grid-row: 1/3; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--fms-red); }
.fms-contact-cards small { color: var(--fms-muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.fms-contact-cards strong { font-size: .98rem; overflow-wrap: anywhere; }
.fms-contact-note { padding: 28px; border-radius: 15px; background: var(--fms-paper); }
.fms-contact-form-wrap { padding: clamp(30px, 5vw, 52px); border: 1px solid var(--fms-line); border-radius: 20px; background: #fff; box-shadow: var(--fms-shadow); }
.fms-contact-form-wrap > p { color: var(--fms-muted); }
.fms-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fms-field { display: grid; gap: 7px; }
.fms-field--full { grid-column: 1/-1; }
.fms-field > span { font-size: .78rem; font-weight: 800; }
.fms-field input, .fms-field textarea, .fms-field select { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #cbd1d7; border-radius: 8px; color: var(--fms-ink); background: #fff; }
.fms-field textarea { resize: vertical; min-height: 150px; }
.fms-field input:focus, .fms-field textarea:focus, .fms-field select:focus { border-color: var(--fms-red); box-shadow: 0 0 0 3px rgba(178,10,40,.09); }
.fms-check { display: flex; align-items: flex-start; gap: 10px; color: var(--fms-muted); font-size: .8rem; }
.fms-check input { margin-top: 4px; accent-color: var(--fms-red); }
.fms-form__help { margin: -7px 0 0; color: var(--fms-muted); font-size: .78rem; }
.fms-check a { color: var(--fms-red); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.fms-form .fms-button { margin-top: 22px; width: 100%; }
.fms-alert { margin-bottom: 20px; padding: 15px 17px; border-radius: 9px; font-weight: 700; }
.fms-alert--success { color: #0a5a33; background: #e5f6ed; border: 1px solid #a9dfc2; }
.fms-alert--error { color: #861127; background: #fee9ed; border: 1px solid #f4b5c0; }
.fms-area-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.fms-area-grid p { color: var(--fms-muted); }
.fms-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.fms-city-list span { padding: 11px 15px; border: 1px solid var(--fms-line); border-radius: 999px; background: #fff; font-size: .82rem; font-weight: 750; }

/* Posts and prose */
.fms-prose { max-width: 920px; }
.fms-prose > *:first-child { margin-top: 0; }
.fms-prose h2 { margin-top: 1.35em; font-size: clamp(2rem, 3vw, 3.15rem); }
.fms-prose h3 { margin-top: 1.2em; }
.fms-prose p, .fms-prose li { color: #4e5863; }
.fms-prose a { color: var(--fms-red); text-decoration: underline; text-underline-offset: 3px; }
.fms-prose img { border-radius: 14px; }
.fms-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fms-post-card { border: 1px solid var(--fms-line); border-radius: 15px; overflow: hidden; background: #fff; }
.fms-post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fms-post-card > div { padding: 26px; }
.fms-post-card > div > span { color: var(--fms-red); font-size: .75rem; font-weight: 800; }
.fms-post-card h2 { margin-top: 8px; font-size: 2rem; }
.fms-post-card p { color: var(--fms-muted); }
.fms-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 70px; padding-block: 90px; }
.fms-article-cta { position: sticky; top: 150px; padding: 28px; border-radius: 15px; color: #fff; background: var(--fms-ink); }
.fms-article-cta p { color: rgba(255,255,255,.7); }
.fms-article-image { margin: 0 0 40px; }
.fms-post-meta { color: var(--fms-muted); }

/* Footer */
.fms-footer { color: rgba(255,255,255,.72); background: #0b0e12; }
.fms-footer__cta { color: #fff; background: var(--fms-red-dark); }
.fms-footer__cta-inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 55px; padding-block: 42px; }
.fms-footer__cta h2 { max-width: 900px; margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.fms-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr .8fr 1.1fr; gap: 55px; padding-block: 75px 60px; }
.fms-footer h3 { color: #fff; font-size: 1.5rem; }
.fms-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.fms-footer a:hover { color: #ff8ba1; }
.fms-footer__brand img { width: 285px; padding: 8px; border-radius: 5px; background: #fff; }
.fms-footer__brand p { max-width: 360px; margin-top: 22px; }
.fms-footer__area { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; }
.fms-footer__contact li, .fms-footer__contact a { display: flex; align-items: flex-start; gap: 9px; }
.fms-footer__bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.11); font-size: .76rem; }
.fms-footer__bottom > div { display: flex; gap: 24px; }
.fms-mobile-bar { display: none; }

.fms-error-page { min-height: 65vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.fms-error-page__code { color: rgba(178,10,40,.12); font-family: var(--fms-heading); font-size: clamp(8rem, 24vw, 20rem); font-weight: 900; line-height: .7; }
.fms-error-page h1 { margin-top: -20px; font-size: clamp(2.6rem, 5vw, 5rem); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1240px) {
  .fms-header__inner { grid-template-columns: 245px 1fr auto; gap: 15px; }
  .fms-brand { max-width: 235px; }
  .fms-nav__list > li > a { padding-inline: 9px; font-size: .83rem; }
  .fms-button--header { padding-inline: 14px; font-size: .82rem; }
  .fms-hero__grid { grid-template-columns: 1.2fr .8fr; gap: 45px; }
  .fms-service-card { padding: 26px; }
  .fms-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .fms-footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 1024px) {
  .fms-shell { width: min(calc(100% - 38px), var(--fms-shell)); }
  .fms-topbar__inner { justify-content: center; }
  .fms-topbar__links { display: none; }
  .fms-header__inner { min-height: 78px; grid-template-columns: 235px 1fr auto; }
  .fms-menu-toggle { display: block; justify-self: end; }
  .fms-button--header { display: none; }
  .fms-nav { position: fixed; z-index: 1200; inset: 113px 0 0; justify-self: auto; padding: 18px 20px 100px; background: #fff; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; }
  .fms-menu-open .fms-nav { transform: translateX(0); }
  .fms-menu-open .fms-menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .fms-menu-open .fms-menu-toggle > span:nth-child(2) { opacity: 0; }
  .fms-menu-open .fms-menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .fms-nav__list { display: grid; align-items: stretch; gap: 0; }
  .fms-nav__list > li { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--fms-line); }
  .fms-nav__list > li > a { padding: 17px 4px; font-size: 1rem; }
  .fms-submenu-toggle { display: grid; place-items: center; width: 46px; border: 0; background: transparent; cursor: pointer; }
  .fms-submenu-toggle svg { transform: rotate(90deg); }
  .fms-nav .sub-menu { position: static; grid-column: 1/-1; display: none; min-width: 0; padding: 0 0 12px 12px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .fms-nav .sub-menu::before { display: none; }
  .fms-nav .is-submenu-open > .sub-menu { display: block; }
  .fms-nav .is-submenu-open > .fms-submenu-toggle svg { transform: rotate(-90deg); }
  .fms-hero { min-height: 740px; }
  .fms-hero__overlay { background: linear-gradient(90deg, rgba(10,13,17,.94), rgba(10,13,17,.64)), linear-gradient(0deg, rgba(10,13,17,.72), transparent); }
  .fms-hero__grid { grid-template-columns: 1fr; align-items: end; padding-block: 95px 70px; }
  .fms-hero-card { max-width: 620px; }
  .fms-trust-strip__grid { grid-template-columns: repeat(2,1fr); }
  .fms-trust-strip__grid > div:nth-child(3), .fms-trust-strip__grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .fms-heading-row { grid-template-columns: 1fr; gap: 12px; }
  .fms-heading-row > p { max-width: 800px; }
  .fms-service-grid { grid-template-columns: repeat(2,1fr); }
  .fms-feature-split { grid-template-columns: 1fr; }
  .fms-image-stack { max-width: 780px; width: 100%; margin-inline: auto; }
  .fms-process-grid { grid-template-columns: repeat(2,1fr); }
  .fms-event-promo { grid-template-columns: 1fr; }
  .fms-event-promo__image { min-height: 430px; }
  .fms-project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 280px; }
  .fms-project-card--large { grid-column: 1/-1; grid-row: auto; }
  .fms-result-box { grid-template-columns: auto 1fr; }
  .fms-result-box .fms-text-link { grid-column: 2; }
  .fms-two-column, .fms-about-intro, .fms-contact-layout, .fms-area-grid { grid-template-columns: 1fr; }
  .fms-faq-layout { grid-template-columns: 1fr; }
  .fms-faq-layout > div:first-child { position: static; }
  .fms-values-grid { grid-template-columns: repeat(2,1fr); }
  .fms-gallery { grid-template-columns: repeat(2,1fr); }
  .fms-footer__cta-inner { align-items: flex-start; flex-direction: column; }
  .fms-footer__grid { grid-template-columns: 1fr 1fr; }
  .fms-footer__grid > div:last-child { grid-column: auto; }
  .fms-article-layout { grid-template-columns: 1fr; }
  .fms-article-cta { position: static; }
  .fms-post-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  body { padding-bottom: 66px; }
  .fms-shell { width: min(calc(100% - 28px), var(--fms-shell)); }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .fms-section { padding: 68px 0; }
  .fms-section--compact { padding: 44px 0; }
  .fms-topbar__inner { min-height: 31px; font-size: .67rem; }
  .fms-topbar__inner svg { display: none; }
  .fms-header__inner { min-height: 72px; grid-template-columns: 190px 1fr; }
  .fms-brand { max-width: 185px; }
  .fms-nav { inset: 103px 0 66px; }
  .fms-breadcrumbs { display: none; }
  .fms-hero { min-height: 710px; align-items: end; }
  .fms-hero__bg { object-position: 57% center; }
  .fms-hero__overlay { background: linear-gradient(0deg, rgba(8,11,14,.98) 0%, rgba(8,11,14,.88) 58%, rgba(8,11,14,.54) 100%); }
  .fms-hero__grid { gap: 28px; padding-block: 80px 36px; }
  .fms-hero__content h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .fms-hero__content > p { font-size: 1rem; }
  .fms-actions { flex-direction: column; align-items: stretch; }
  .fms-button { width: 100%; }
  .fms-hero__proof { display: grid; gap: 8px; }
  .fms-hero-card { padding: 23px; }
  .fms-hero-card h2 { font-size: 2rem; }
  .fms-trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .fms-trust-strip__grid > div { min-height: 86px; padding: 16px 14px; }
  .fms-trust-strip strong { font-size: 1.45rem; }
  .fms-trust-strip span { font-size: .68rem; }
  .fms-service-grid, .fms-service-grid--three, .fms-scope-grid, .fms-process-grid, .fms-values-grid, .fms-post-grid { grid-template-columns: 1fr; }
  .fms-service-card { min-height: 285px; }
  .fms-image-stack { min-height: 430px; }
  .fms-image-stack__large { inset: 0 8% 14% 0; }
  .fms-image-stack__small { width: 53%; height: 40%; }
  .fms-image-stack__badge { left: 10px; bottom: 20px; min-width: 160px; padding: 13px; }
  .fms-event-promo__image { min-height: 320px; }
  .fms-event-promo__content { padding: 30px 24px; }
  .fms-project-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); }
  .fms-project-card--large { grid-column: auto; }
  .fms-local-cta, .fms-contact-band { align-items: stretch; flex-direction: column; padding: 30px 24px; }
  .fms-page-hero--service, .fms-page-hero--about, .fms-page-hero--contact { min-height: 620px; }
  .fms-page-hero--service > img, .fms-page-hero--about > img, .fms-page-hero--contact > img { object-position: center; }
  .fms-page-hero__overlay { background: linear-gradient(0deg, rgba(8,11,14,.98), rgba(8,11,14,.75)); }
  .fms-page-hero__content { padding-block: 95px 50px; }
  .fms-page-hero__content h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .fms-page-hero--simple { padding: 82px 0; }
  .fms-page-hero--simple .fms-shell::after { width: 150px; height: 150px; border-width: 30px; top: 10%; transform: none; }
  .fms-result-box { grid-template-columns: 1fr; padding: 28px 24px; }
  .fms-result-box .fms-text-link { grid-column: 1; }
  .fms-result-box__icon { width: 58px; height: 58px; }
  .fms-scope-grid article { grid-template-columns: 1fr; }
  .fms-scope-grid article > span { grid-row: auto; margin-bottom: 16px; }
  .fms-stat-panel { grid-template-columns: 1fr; }
  .fms-timeline { grid-template-columns: 1fr; }
  .fms-timeline > div { border-left: 1px solid var(--fms-line); border-right: 1px solid var(--fms-line); border-bottom: 1px solid var(--fms-line); }
  .fms-timeline > div:first-child { border-top: 1px solid var(--fms-line); }
  .fms-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .fms-gallery__item--wide { grid-column: auto; }
  .fms-lightbox { padding: 18px; }
  .fms-form__grid { grid-template-columns: 1fr; }
  .fms-field--full { grid-column: auto; }
  .fms-contact-form-wrap { padding: 25px 20px; }
  .fms-footer__grid { grid-template-columns: 1fr; gap: 40px; padding-block: 58px 42px; }
  .fms-footer__bottom { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .fms-footer__bottom > div { flex-direction: column; gap: 7px; }
  .fms-mobile-bar { position: fixed; z-index: 1500; left: 0; right: 0; bottom: 0; height: 66px; display: grid; grid-template-columns: 1fr 1fr; color: #fff; background: var(--fms-ink); box-shadow: 0 -8px 24px rgba(0,0,0,.2); }
  .fms-mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; font-weight: 800; }
  .fms-mobile-bar a:first-child { background: var(--fms-red); }
  .fms-mobile-bar svg { width: 20px; height: 20px; }
}

/* Production correction 2.0.1: stable header, restrained type and event pages */
html, body { max-width: 100%; overflow-x: clip; }
h1 { max-width: 760px; font-size: clamp(58px, 5.6vw, 82px); line-height: .94; letter-spacing: -.045em; }
h2 { max-width: 700px; font-size: clamp(42px, 4vw, 60px); line-height: 1; letter-spacing: -.035em; }
.fms-section-heading--center h2 { margin-inline: auto; }

.fms-header { height: 88px; min-height: 88px; background: #fff; box-shadow: none; transform: none !important; transition: box-shadow .2s ease; }
.fms-header.is-scrolled { box-shadow: 0 10px 28px rgba(16,22,29,.12); }
.fms-header__utility { display: none; }
.fms-header__inner,
.fms-header.is-scrolled .fms-header__inner { height: 88px; min-height: 88px; transition: none; }
.fms-brand { width: min(100%, 275px); max-width: 275px; }
.fms-brand img,
.fms-brand .custom-logo,
.fms-header.is-scrolled .fms-brand img,
.fms-header.is-scrolled .fms-brand .custom-logo { width: 275px; max-width: 100%; height: auto; transition: none; }
.fms-menu-open { overflow: hidden; }

.fms-edu-hero h1 span { display: block; white-space: nowrap; }
.fms-edu-story__content h2 { max-width: 680px; }

.fms-stage-hero { position: relative; padding: clamp(82px,8vw,126px) 0; overflow: hidden; background: #fff; }
.fms-stage-hero::before { content: ""; position: absolute; right: -15vw; top: -45%; width: 58vw; height: 58vw; min-width: 620px; min-height: 620px; border: 80px solid var(--fms-mint); border-radius: 50%; }
.fms-stage-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: clamp(54px,8vw,120px); }
.fms-stage-hero p,
.fms-event-service-hero p { max-width: 680px; margin: 26px 0 30px; color: var(--fms-ink-soft); font-size: clamp(1.05rem,1.4vw,1.24rem); }
.fms-stage-hero__image { position: relative; min-height: 520px; }
.fms-stage-hero__image img { position: absolute; inset: 0 0 42px; width: 100%; height: calc(100% - 42px); object-fit: cover; border: 8px solid #fff; border-radius: 28% 8% 24% 8%; box-shadow: var(--fms-shadow); }
.fms-stage-hero__image span { position: absolute; right: 22px; bottom: 0; padding: 15px 21px; border-radius: 999px; color: var(--fms-ink); background: var(--fms-gold); font-size: .78rem; font-weight: 850; box-shadow: var(--fms-shadow); }
.fms-section-heading { margin-bottom: clamp(34px,5vw,65px); }
.fms-section-heading > p { max-width: 720px; margin-top: 20px; color: var(--fms-muted); }
.fms-tab-strip,
.fms-stage-tabs { display: flex; gap: 10px; padding-bottom: 4px; overflow-x: auto; scrollbar-width: thin; }
.fms-tab-strip button,
.fms-stage-tabs button { flex: 0 0 auto; min-height: 50px; padding: 12px 20px; border: 1px solid var(--fms-line); border-radius: 999px; color: var(--fms-ink); background: #fff; font: inherit; font-size: .86rem; font-weight: 800; cursor: pointer; }
.fms-tab-strip button:hover,
.fms-tab-strip button:focus-visible,
.fms-tab-strip button.is-active,
.fms-stage-tabs button:hover,
.fms-stage-tabs button:focus-visible,
.fms-stage-tabs button.is-active { color: #fff; border-color: var(--fms-red); outline: none; background: var(--fms-red); }
.fms-audience-panels { margin-top: 24px; }
.fms-audience-panels > div { min-height: 150px; padding: clamp(25px,4vw,48px); border-radius: 22px; color: #fff; background: var(--fms-navy); }
.fms-audience-panels strong { display: block; margin-bottom: 10px; font-size: clamp(1.3rem,2.2vw,2rem); }
.fms-audience-panels p { max-width: 720px; color: rgba(255,255,255,.74); }
.fms-stage-tabs { margin-bottom: 34px; }
.fms-stage-panel[hidden], .fms-audience-panels [hidden] { display: none; }
.fms-stage-panel__intro { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr); align-items: center; gap: clamp(36px,6vw,90px); }
.fms-stage-panel__intro > div:first-child { min-height: 510px; }
.fms-stage-panel__intro > div:first-child img { width: 100%; height: 510px; object-fit: cover; border-radius: 24px; }
.fms-stage-panel__dimensions { display: inline-flex; margin-bottom: 14px; padding: 8px 13px; border-radius: 999px; color: var(--fms-red); background: var(--fms-red-pale); font-size: .78rem; font-weight: 850; }
.fms-stage-panel h3 { max-width: 590px; margin-bottom: 18px; font-size: clamp(2rem,3.3vw,3.6rem); }
.fms-stage-panel p { color: var(--fms-muted); }
.fms-stage-panel ul { display: grid; gap: 11px; margin: 24px 0 30px; padding: 0; list-style: none; }
.fms-stage-panel li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.fms-stage-panel li svg { flex: 0 0 20px; color: var(--fms-red); }
.fms-stage-gallery { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-top: 30px; }
.fms-stage-gallery button { padding: 0; overflow: hidden; border: 0; border-radius: 14px; background: none; cursor: zoom-in; }
.fms-stage-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .25s ease; }
.fms-stage-gallery button:hover img,
.fms-stage-gallery button:focus-visible img { transform: scale(1.035); }
.fms-stage-gallery button:focus-visible { outline: 3px solid var(--fms-red); outline-offset: 3px; }
.fms-event-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.fms-event-card { overflow: hidden; border: 1px solid var(--fms-line); border-radius: 22px; background: #fff; box-shadow: 0 16px 40px rgba(16,22,29,.07); transition: transform .2s ease, box-shadow .2s ease; }
.fms-event-card:hover,
.fms-event-card:focus-visible { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(16,22,29,.13); outline: none; }
.fms-event-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fms-event-card > span { display: block; padding: 25px; }
.fms-event-card h3 { margin-bottom: 12px; font-size: clamp(1.45rem,2vw,2.05rem); }
.fms-event-card p { color: var(--fms-muted); font-size: .93rem; }
.fms-event-card strong { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--fms-red); font-size: .82rem; }
.fms-event-service-hero { padding: clamp(82px,8vw,126px) 0; background: #fff; }
.fms-event-service-hero__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: clamp(50px,8vw,110px); }
.fms-event-service-hero__grid > img { width: 100%; min-height: 490px; max-height: 620px; object-fit: cover; border-radius: 20px 100px 20px 100px; box-shadow: var(--fms-shadow); }
.fms-event-scope { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.75fr); gap: clamp(50px,8vw,120px); }
.fms-event-scope p { max-width: 650px; margin-top: 20px; color: var(--fms-muted); }
.fms-event-scope ol { margin: 0; padding: 0; list-style: none; counter-reset: event-scope; }
.fms-event-scope li { counter-increment: event-scope; padding: 18px 0; border-bottom: 1px solid var(--fms-line); font-weight: 760; }
.fms-event-scope li::before { content: "0" counter(event-scope); margin-right: 17px; color: var(--fms-red); font-size: .75rem; }
.fms-related-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.fms-related-links a { display: grid; gap: 7px; min-height: 145px; padding: 25px; border: 1px solid var(--fms-line); border-radius: 18px; background: #fff; }
.fms-related-links a:hover,
.fms-related-links a:focus-visible { border-color: var(--fms-red); outline: none; box-shadow: 0 14px 34px rgba(16,22,29,.09); }
.fms-related-links strong { font-size: 1.18rem; }
.fms-related-links span { color: var(--fms-muted); font-size: .87rem; }
.fms-lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(7,12,18,.92); }
.fms-lightbox[hidden] { display: none; }
.fms-lightbox img { max-width: min(1200px,92vw); max-height: 86vh; object-fit: contain; }
.fms-lightbox button { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(0,0,0,.35); font-size: 2rem; cursor: pointer; }
.fms-lightbox-open { overflow: hidden; }

@media (max-width: 1024px) {
  .fms-header,
  .fms-header__inner,
  .fms-header.is-scrolled .fms-header__inner { height: 70px; min-height: 70px; }
  .fms-brand { width: 210px; }
  .fms-brand img,
  .fms-brand .custom-logo,
  .fms-header.is-scrolled .fms-brand img,
  .fms-header.is-scrolled .fms-brand .custom-logo { width: 210px; }
  .fms-nav { inset: 70px 0 0; }
  .admin-bar .fms-nav { top: 102px; }
  .fms-stage-hero__grid,
  .fms-stage-panel__intro,
  .fms-event-service-hero__grid,
  .fms-event-scope { grid-template-columns: 1fr; }
  .fms-stage-hero__image { min-height: 480px; }
  .fms-event-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  h1 { max-width: 760px; font-size: clamp(38px,11vw,48px); line-height: .98; }
  h2 { max-width: 700px; font-size: clamp(32px,8.5vw,40px); line-height: 1.04; }
  .fms-header__inner { grid-template-columns: minmax(0,190px) 1fr; }
  .fms-brand,
  .fms-brand img,
  .fms-brand .custom-logo,
  .fms-header.is-scrolled .fms-brand img,
  .fms-header.is-scrolled .fms-brand .custom-logo { width: 185px; }
  .fms-stage-hero,
  .fms-event-service-hero { padding: 72px 0 66px; }
  .fms-stage-hero::before { display: none; }
  .fms-stage-hero__image { min-height: 340px; }
  .fms-stage-hero__image img { border-width: 5px; border-radius: 19% 7% 17% 7%; }
  .fms-stage-hero__image span { right: 8px; max-width: 88%; }
  .fms-tab-strip,
  .fms-stage-tabs { margin-inline: calc(var(--fms-gutter) * -1); padding-inline: var(--fms-gutter); scroll-snap-type: x proximity; }
  .fms-tab-strip button,
  .fms-stage-tabs button { scroll-snap-align: start; }
  .fms-stage-panel__intro > div:first-child,
  .fms-stage-panel__intro > div:first-child img { min-height: 0; height: auto; aspect-ratio: 4/3; }
  .fms-stage-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fms-event-card-grid,
  .fms-related-links { grid-template-columns: 1fr; }
  .fms-event-service-hero__grid > img { min-height: 330px; border-radius: 16px 60px 16px 60px; }
}

/* ========================================================================== 
   Full Media System EDU PRO v2 — light education technology direction
   ========================================================================== */
:root {
  --fms-red: #bd0d2e;
  --fms-red-strong: #d41438;
  --fms-red-dark: #8f0621;
  --fms-ink: #10161d;
  --fms-ink-soft: #18232e;
  --fms-navy: #183048;
  --fms-teal: #0b8f92;
  --fms-mint: #dff4f2;
  --fms-sky: #eaf4fa;
  --fms-gold: #f4c84a;
  --fms-muted: #5e6a75;
  --fms-line: #dce3e8;
  --fms-paper: #f4f7f8;
  --fms-warm: #f7f3ed;
  --fms-white: #fff;
  --fms-radius: 22px;
  --fms-shadow: 0 24px 70px rgba(16, 22, 29, .13);
  --fms-heading: "Arial Narrow", "Roboto Condensed", "Bahnschrift Condensed", system-ui, sans-serif;
}

html, body { overflow-x: clip; }
body { background: #fff; }
h1, h2, h3, h4 { letter-spacing: -.045em; }
h1 { font-size: clamp(4rem, 7.25vw, 8.2rem); line-height: .88; }
h2 { font-size: clamp(2.9rem, 5.1vw, 5.8rem); line-height: .94; }
h3 { line-height: 1.02; }
.fms-eyebrow { color: var(--fms-red); font-size: .76rem; letter-spacing: .17em; }
.fms-section { padding: clamp(84px, 8vw, 138px) 0; }
.fms-section--paper { background: var(--fms-paper); }
.fms-button { min-height: 55px; padding: 14px 24px; border-radius: 999px; }
.fms-button--primary { background: var(--fms-red); box-shadow: 0 14px 30px rgba(189,13,46,.23); }
.fms-button--primary:hover { background: var(--fms-red-strong); }
.fms-button--dark { background: var(--fms-ink); }
.fms-button--outline { border-color: var(--fms-ink); }
.fms-button--outline:hover { color: #fff; border-color: var(--fms-ink); background: var(--fms-ink); }

/* Header inspired by the clear, high navigation rhythm — original FMS implementation */
.fms-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  border: 0;
  background: rgba(255,255,255,.985);
  box-shadow: 0 10px 30px rgba(16,22,29,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.fms-header::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 22px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0 100%);
  filter: drop-shadow(0 8px 7px rgba(16,22,29,.055));
  pointer-events: none;
}
.admin-bar .fms-header { top: 32px; }
.fms-header.is-scrolled { box-shadow: 0 16px 38px rgba(16,22,29,.13); }
.fms-header__utility {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--fms-muted);
  font-size: .73rem;
  transition: min-height .25s ease, opacity .2s ease, transform .25s ease;
}
.fms-header__claim,
.fms-header__utility-links,
.fms-header__utility-links a,
.fms-header__phone { display: flex; align-items: center; gap: 7px; }
.fms-header__claim { color: var(--fms-navy); font-weight: 760; }
.fms-header__claim svg { color: var(--fms-red); }
.fms-header__utility-links { justify-content: flex-end; gap: 19px; }
.fms-header__utility-links a:hover { color: var(--fms-red); }
.fms-header__phone { color: var(--fms-ink); font-weight: 800; }
.fms-header__phone svg { color: var(--fms-red); }
.fms-header__inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(230px, 310px) 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  transition: min-height .25s ease;
}
.fms-header.is-scrolled .fms-header__utility { min-height: 0; height: 0; opacity: 0; transform: translateY(-8px); overflow: hidden; }
.fms-header.is-scrolled .fms-header__inner { min-height: 76px; }
.fms-brand { max-width: 310px; }
.fms-brand img, .fms-brand .custom-logo { width: min(100%, 300px); transition: width .25s ease; }
.fms-header.is-scrolled .fms-brand img,
.fms-header.is-scrolled .fms-brand .custom-logo { width: min(100%, 245px); }
.fms-nav { justify-self: center; }
.fms-nav__list { gap: 13px; }
.fms-nav__list > li > a {
  position: relative;
  padding: 17px 10px;
  color: var(--fms-ink);
  font-size: .96rem;
  font-weight: 810;
}
.fms-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 3px;
  border-radius: 4px;
  background: var(--fms-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.fms-nav__list > li > a:hover::after,
.fms-nav__list > .current-menu-item > a::after,
.fms-nav__list > .current-menu-ancestor > a::after { transform: scaleX(1); }
.fms-nav .sub-menu {
  top: calc(100% + 14px);
  left: 50%;
  min-width: min(760px, 84vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 5px;
  padding: 21px;
  border: 0;
  border-radius: 3px 3px 22px 22px;
  box-shadow: 0 28px 70px rgba(16,22,29,.17);
  transform: translate(-50%, 10px);
}
.fms-nav .sub-menu::before { display: none; }
.fms-nav .sub-menu a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 12px;
  color: var(--fms-ink-soft);
  font-size: .88rem;
}
.fms-nav .sub-menu a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--fms-red);
  box-shadow: 0 0 0 5px rgba(189,13,46,.08);
}
.fms-nav .sub-menu a:hover { color: var(--fms-red); background: #fff3f5; }
.fms-nav__list > li:hover > .sub-menu,
.fms-nav__list > li:focus-within > .sub-menu { transform: translate(-50%, 0); }
.fms-button--header {
  min-height: 49px;
  padding-inline: 23px;
  border-radius: 999px;
  background: var(--fms-red);
  white-space: nowrap;
}
.fms-breadcrumbs { position: relative; z-index: 2; padding-top: 24px; border: 0; background: transparent; }

/* Home hero */
.fms-edu-hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  padding: clamp(82px, 8vw, 128px) 0 clamp(70px, 7vw, 112px);
  background: #fff;
  overflow: hidden;
}
.fms-edu-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -330px;
  bottom: -370px;
  border: 70px solid rgba(11,143,146,.08);
  border-radius: 50%;
}
.fms-edu-hero__shape { position: absolute; pointer-events: none; }
.fms-edu-hero__shape--red {
  width: clamp(430px, 42vw, 760px);
  aspect-ratio: 1;
  right: -9vw;
  top: 2%;
  border-radius: 50% 8% 50% 50%;
  background: var(--fms-red);
  transform: rotate(14deg);
}
.fms-edu-hero__shape--gold {
  width: 180px;
  height: 180px;
  right: 37%;
  bottom: 5%;
  border-radius: 50%;
  border: 34px solid var(--fms-gold);
  opacity: .92;
}
.fms-edu-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(460px, 1.02fr);
  align-items: center;
  gap: clamp(52px, 6vw, 105px);
}
.fms-edu-hero__content { max-width: 820px; }
.fms-edu-hero__content h1 { max-width: 840px; margin-bottom: 30px; text-transform: uppercase; }
.fms-edu-hero__lead { max-width: 700px; color: var(--fms-ink-soft); font-size: clamp(1.1rem, 1.45vw, 1.34rem); line-height: 1.55; }
.fms-edu-hero__facts { display: flex; flex-wrap: wrap; gap: 15px 33px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--fms-line); }
.fms-edu-hero__facts span { display: grid; color: var(--fms-muted); font-size: .78rem; }
.fms-edu-hero__facts strong { color: var(--fms-ink); font-size: .9rem; }
.fms-edu-hero__visual { position: relative; min-height: 570px; }
.fms-edu-hero__photo {
  position: absolute;
  inset: 0 0 36px 2%;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 46% 16% 42% 20%;
  box-shadow: 0 34px 80px rgba(16,22,29,.24);
  transform: rotate(1.5deg);
}
.fms-edu-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03) rotate(-1.5deg); }
.fms-edu-hero__audience {
  position: absolute;
  z-index: 3;
  left: -45px;
  bottom: 0;
  width: min(350px, 72%);
  display: grid;
  gap: 4px;
  padding: 23px 26px;
  border-radius: 18px;
  color: #fff;
  background: var(--fms-navy);
  box-shadow: var(--fms-shadow);
}
.fms-edu-hero__audience > span { margin-bottom: 5px; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.fms-edu-hero__audience strong { font-size: .87rem; }
.fms-edu-hero__seal {
  position: absolute;
  z-index: 4;
  right: -20px;
  top: 40px;
  width: 158px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border: 8px solid #fff;
  border-radius: 50%;
  color: var(--fms-ink);
  background: var(--fms-gold);
  box-shadow: 0 20px 45px rgba(16,22,29,.18);
  transform: rotate(7deg);
}
.fms-edu-hero__seal svg { width: 27px; color: var(--fms-red); }
.fms-edu-hero__seal span { display: grid; line-height: 1.05; }
.fms-edu-hero__seal strong { font-size: .83rem; text-transform: uppercase; }
.fms-edu-hero__seal small { margin-top: 4px; font-size: .62rem; }

.fms-audience-strip { color: #fff; background: var(--fms-teal); }
.fms-audience-strip__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; }
.fms-audience-strip__inner i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.48); }

/* Home: solutions */
.fms-heading-row--bold { align-items: start; }
.fms-heading-row--bold h2 { text-transform: uppercase; }
.fms-solution-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}
.fms-solution-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--fms-line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fms-solution-tile:hover { transform: translateY(-6px); border-color: rgba(189,13,46,.34); box-shadow: var(--fms-shadow); }
.fms-solution-tile::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -68px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(189,13,46,.055);
  border-radius: 50%;
}
.fms-solution-tile--1,
.fms-solution-tile--4 { grid-column: span 7; }
.fms-solution-tile--2,
.fms-solution-tile--3 { grid-column: span 5; }
.fms-solution-tile--5,
.fms-solution-tile--6 { grid-column: span 6; }
.fms-solution-tile--1 { color: #fff; border-color: var(--fms-navy); background: var(--fms-navy); }
.fms-solution-tile--4 { background: var(--fms-mint); }
.fms-solution-tile--5 { background: var(--fms-warm); }
.fms-solution-tile--6 { color: #fff; border-color: var(--fms-red); background: var(--fms-red); }
.fms-solution-tile__number { position: absolute; top: 22px; right: 25px; color: rgba(16,22,29,.18); font-family: var(--fms-heading); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.fms-solution-tile--1 .fms-solution-tile__number,
.fms-solution-tile--6 .fms-solution-tile__number { color: rgba(255,255,255,.18); }
.fms-solution-tile__icon { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 44px; border-radius: 16px; color: #fff; background: var(--fms-red); }
.fms-solution-tile--1 .fms-solution-tile__icon { color: var(--fms-ink); background: var(--fms-gold); }
.fms-solution-tile--6 .fms-solution-tile__icon { color: var(--fms-red); background: #fff; }
.fms-solution-tile__icon svg { width: 27px; height: 27px; }
.fms-solution-tile h3 { position: relative; z-index: 1; max-width: 530px; font-size: clamp(2rem, 2.8vw, 3.35rem); }
.fms-solution-tile p { position: relative; z-index: 1; max-width: 610px; color: var(--fms-muted); }
.fms-solution-tile--1 p,
.fms-solution-tile--6 p { color: rgba(255,255,255,.72); }
.fms-solution-tile .fms-text-link { position: relative; z-index: 2; margin-top: auto; }
.fms-solution-tile--1 .fms-text-link,
.fms-solution-tile--6 .fms-text-link { color: #fff; }

/* Home story */
.fms-edu-story { color: #fff; background: var(--fms-navy); overflow: hidden; }
.fms-edu-story__grid { display: grid; grid-template-columns: minmax(470px, 1fr) minmax(0, .9fr); align-items: center; gap: clamp(70px, 8vw, 130px); }
.fms-edu-story__media { position: relative; min-height: 650px; }
.fms-edu-story__media::before { content: ""; position: absolute; width: 360px; height: 360px; left: -100px; top: 35px; border: 54px solid var(--fms-teal); border-radius: 50%; opacity: .85; }
.fms-edu-story__image { position: absolute; overflow: hidden; border-radius: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.fms-edu-story__image img { width: 100%; height: 100%; object-fit: cover; }
.fms-edu-story__image--main { inset: 0 9% 80px 0; }
.fms-edu-story__image--small { width: 48%; height: 43%; right: 0; bottom: 0; border: 8px solid var(--fms-navy); }
.fms-edu-story__caption { position: absolute; left: -24px; bottom: 34px; max-width: 300px; padding: 18px 22px; border-radius: 14px; color: var(--fms-ink); background: var(--fms-gold); font-size: .8rem; font-weight: 800; box-shadow: var(--fms-shadow); }
.fms-edu-story__content > p { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.fms-edu-story .fms-eyebrow { color: #7ee1dc; }
.fms-check-list--light li { color: rgba(255,255,255,.9); }
.fms-check-list--light svg { color: var(--fms-gold); }

/* Process line */
.fms-process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.fms-process-line::before { content: ""; position: absolute; left: 8%; right: 8%; top: 38px; height: 2px; background: var(--fms-line); }
.fms-process-line article { position: relative; padding: 0 clamp(18px, 2.3vw, 38px); text-align: center; }
.fms-process-line article > span { position: relative; z-index: 2; width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 26px; border: 10px solid var(--fms-paper); border-radius: 50%; color: #fff; background: var(--fms-red); font-family: var(--fms-heading); font-size: 1.35rem; font-weight: 900; box-shadow: 0 8px 20px rgba(189,13,46,.2); }
.fms-process-line article:nth-child(2) > span { background: var(--fms-teal); box-shadow: 0 8px 20px rgba(11,143,146,.2); }
.fms-process-line article:nth-child(3) > span { color: var(--fms-ink); background: var(--fms-gold); box-shadow: 0 8px 20px rgba(244,200,74,.25); }
.fms-process-line article:nth-child(4) > span { background: var(--fms-navy); box-shadow: 0 8px 20px rgba(24,48,72,.22); }
.fms-process-line h3 { font-size: 1.75rem; }
.fms-process-line p { color: var(--fms-muted); }

/* Institution cards */
.fms-institution-fit { background: #fff; }
.fms-institution-fit__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fms-institution-fit__grid article { min-height: 330px; padding: 30px; border: 1px solid var(--fms-line); border-radius: 24px; background: #fff; }
.fms-institution-fit__grid article:nth-child(1) { background: var(--fms-mint); }
.fms-institution-fit__grid article:nth-child(2) { color: #fff; border-color: var(--fms-red); background: var(--fms-red); }
.fms-institution-fit__grid article:nth-child(3) { background: var(--fms-sky); }
.fms-institution-fit__grid article:nth-child(4) { color: #fff; border-color: var(--fms-navy); background: var(--fms-navy); }
.fms-institution-fit__grid article > span { display: inline-flex; margin-bottom: 80px; color: var(--fms-red); font-family: var(--fms-heading); font-size: 2.2rem; font-weight: 900; }
.fms-institution-fit__grid article:nth-child(2) > span,
.fms-institution-fit__grid article:nth-child(4) > span { color: rgba(255,255,255,.55); }
.fms-institution-fit__grid h3 { font-size: 2rem; }
.fms-institution-fit__grid p { margin: 0; color: var(--fms-muted); }
.fms-institution-fit__grid article:nth-child(2) p,
.fms-institution-fit__grid article:nth-child(4) p { color: rgba(255,255,255,.72); }

/* Event block */
.fms-event-promo-v2 { color: #fff; background: var(--fms-red); overflow: hidden; }
.fms-event-promo-v2__grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(50px, 7vw, 110px); }
.fms-event-promo-v2__content { padding-block: 35px; }
.fms-event-promo-v2 .fms-eyebrow { color: #ffd5dd; }
.fms-event-promo-v2__content p { max-width: 650px; color: rgba(255,255,255,.8); font-size: 1.05rem; }
.fms-event-promo-v2__image { position: relative; min-height: 560px; }
.fms-event-promo-v2__image::before { content: ""; position: absolute; z-index: 2; left: -70px; top: 40px; width: 180px; height: 180px; border: 28px solid var(--fms-gold); border-radius: 50%; }
.fms-event-promo-v2__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 42% 12% 38% 12%; box-shadow: 0 30px 70px rgba(78,0,16,.27); }

.fms-project-grid--editorial { grid-template-rows: 460px 330px; }
.fms-project-grid--editorial .fms-project-card { border-radius: 22px; }
.fms-local-cta--education { border-radius: 28px; background: var(--fms-navy); }

/* Service page — individual layout families */
.fms-service-page { --service-accent: var(--fms-red); --service-soft: #fff1f4; }
.fms-service-page--signal { --service-accent: var(--fms-teal); --service-soft: var(--fms-mint); }
.fms-service-page--visual { --service-accent: #3e66d8; --service-soft: var(--fms-sky); }
.fms-service-page--system { --service-accent: var(--fms-navy); --service-soft: #edf1f4; }
.fms-service-page--event { --service-accent: var(--fms-red); --service-soft: #fff0f3; }
.fms-service-hero-v2 { position: relative; padding: clamp(90px, 8vw, 135px) 0 clamp(78px, 7vw, 118px); overflow: hidden; background: #fff; }
.fms-service-hero-v2__shape { position: absolute; width: clamp(460px, 43vw, 780px); height: clamp(460px, 43vw, 780px); right: -12vw; top: -15%; border-radius: 50% 8% 50% 50%; background: var(--service-accent); opacity: .95; transform: rotate(16deg); }
.fms-service-page--visual .fms-service-hero-v2__shape { border-radius: 12% 48% 18% 50%; background: var(--fms-gold); }
.fms-service-page--system .fms-service-hero-v2__shape { border-radius: 0; clip-path: polygon(18% 0,100% 0,100% 88%,0 100%); background: var(--fms-navy); }
.fms-service-page--event .fms-service-hero-v2__shape { border-radius: 50%; background: var(--fms-red); }
.fms-service-hero-v2__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); align-items: center; gap: clamp(55px, 7vw, 115px); }
.fms-service-hero-v2__content h1 { max-width: 800px; margin-bottom: 30px; font-size: clamp(3.65rem, 6.4vw, 7.3rem); text-transform: uppercase; }
.fms-service-hero-v2__content > p { max-width: 700px; color: var(--fms-ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.28rem); }
.fms-service-hero-v2__visual { position: relative; min-height: 560px; }
.fms-service-hero-v2__visual > img { position: absolute; inset: 0 0 50px 0; width: 100%; height: calc(100% - 50px); object-fit: cover; border: 9px solid #fff; border-radius: 26% 10% 32% 12%; box-shadow: var(--fms-shadow); }
.fms-service-page--visual .fms-service-hero-v2__visual > img { border-radius: 16px 120px 16px 120px; }
.fms-service-page--system .fms-service-hero-v2__visual > img { border-radius: 18px; }
.fms-service-page--event .fms-service-hero-v2__visual > img { border-radius: 45% 8% 40% 8%; }
.fms-service-hero-v2__result { position: absolute; left: -42px; right: 45px; bottom: 0; display: grid; gap: 4px; padding: 23px 26px; border-radius: 17px; color: #fff; background: var(--fms-navy); box-shadow: var(--fms-shadow); }
.fms-service-hero-v2__result span { color: rgba(255,255,255,.56); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.fms-service-hero-v2__result strong { font-size: .9rem; line-height: 1.4; }

.fms-signal-panel { background: var(--fms-mint); }
.fms-signal-panel__grid,
.fms-visual-panel__grid,
.fms-system-panel__grid,
.fms-event-flow__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 8vw, 130px); }
.fms-signal-map { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 11px; padding: 40px; border-radius: 24px; background: #fff; box-shadow: var(--fms-shadow); }
.fms-signal-map span { min-height: 80px; display: grid; place-items: center; padding: 12px; border-radius: 14px; color: #fff; background: var(--fms-teal); text-align: center; font-size: .76rem; font-weight: 800; }
.fms-signal-map span:nth-of-type(2) { background: var(--fms-navy); }
.fms-signal-map span:nth-of-type(3) { color: var(--fms-ink); background: var(--fms-gold); }
.fms-signal-map span:nth-of-type(4) { background: var(--fms-red); }
.fms-signal-map i { height: 3px; background: repeating-linear-gradient(90deg,var(--fms-teal) 0 9px,transparent 9px 15px); }

.fms-visual-panel { background: var(--fms-sky); }
.fms-visual-panel__statement { padding-right: 10%; }
.fms-visual-panel__points > p { font-size: 1.08rem; }
.fms-visual-panel__points > div { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.fms-visual-panel__points span { padding: 12px 17px; border-radius: 999px; color: #fff; background: #3e66d8; font-size: .78rem; font-weight: 800; }

.fms-system-panel { color: #fff; background: var(--fms-navy); }
.fms-system-panel .fms-eyebrow { color: #89dbd6; }
.fms-system-panel p { color: rgba(255,255,255,.7); }
.fms-system-panel__status { display: grid; gap: 13px; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.06); }
.fms-system-panel__status span { display: flex; align-items: center; gap: 13px; padding: 17px 18px; border-radius: 13px; background: rgba(255,255,255,.07); font-weight: 800; }
.fms-system-panel__status i { width: 12px; height: 12px; border-radius: 50%; background: #61d9ad; box-shadow: 0 0 0 6px rgba(97,217,173,.12); }

.fms-event-flow { background: var(--fms-warm); }
.fms-event-flow__line { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.fms-event-flow__line span { padding: 12px 16px; border-radius: 999px; color: #fff; background: var(--fms-red); font-size: .76rem; font-weight: 800; }
.fms-event-flow__line span:nth-child(even) { background: var(--fms-navy); }

.fms-scope-grid--editorial article { position: relative; grid-template-columns: auto 1fr; min-height: 250px; border: 0; border-radius: 22px; background: #fff; box-shadow: 0 12px 35px rgba(16,22,29,.07); overflow: hidden; }
.fms-scope-grid--editorial article::after { content: ""; position: absolute; right: -48px; bottom: -48px; width: 130px; height: 130px; border: 25px solid var(--service-soft); border-radius: 50%; }
.fms-scope-grid__index { position: absolute; top: 19px; right: 22px; color: rgba(16,22,29,.15); font-family: var(--fms-heading); font-size: 2.6rem; font-weight: 900; }
.fms-scope-grid__check { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: var(--service-accent); }
.fms-scope-grid--editorial h3,
.fms-scope-grid--editorial p { grid-column: 1 / -1; position: relative; z-index: 1; }

.fms-service-zones { background: #fff; }
.fms-service-zones__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.8fr); align-items: center; gap: clamp(60px, 8vw, 130px); }
.fms-tag-list--education span { color: var(--fms-ink); border-color: var(--fms-line); background: var(--service-soft); }
.fms-deliverables--education { color: #fff; border-radius: 25px; background: var(--fms-navy); }
.fms-deliverables--education .fms-eyebrow { color: #8ae0db; }

/* Existing service cards adjusted to new system */
.fms-service-card { min-height: 330px; border-radius: 22px; }
.fms-service-card__icon { border-radius: 16px; }
.fms-service-card h3 { font-size: 2.15rem; }

/* Responsive */
@media (max-width: 1280px) {
  .fms-header__inner { grid-template-columns: 240px 1fr auto; gap: 15px; }
  .fms-brand { max-width: 240px; }
  .fms-nav__list { gap: 3px; }
  .fms-nav__list > li > a { padding-inline: 8px; font-size: .85rem; }
  .fms-button--header { padding-inline: 17px; font-size: .82rem; }
  .fms-edu-hero__grid,
  .fms-service-hero-v2__grid { grid-template-columns: minmax(0,.95fr) minmax(410px,1.05fr); gap: 55px; }
  .fms-edu-hero__seal { right: 0; }
  .fms-solution-tile { padding: 28px; }
  .fms-institution-fit__grid article { padding: 25px; }
}

@media (max-width: 1024px) {
  .admin-bar .fms-header { top: 32px; }
  .fms-header__utility { justify-content: center; min-height: 29px; }
  .fms-header__utility-links { display: none; }
  .fms-header__inner { min-height: 80px; grid-template-columns: 235px 1fr auto; }
  .fms-header.is-scrolled .fms-header__inner { min-height: 72px; }
  .fms-nav { inset: 109px 0 0; padding-top: 25px; }
  .fms-header.is-scrolled .fms-nav { inset: 72px 0 0; }
  .fms-nav__list > li > a::after { display: none; }
  .fms-nav .sub-menu { position: static; grid-template-columns: 1fr; min-width: 0; transform: none; box-shadow: none; }
  .fms-nav__list > li:hover > .sub-menu,
  .fms-nav__list > li:focus-within > .sub-menu { transform: none; }
  .fms-edu-hero { padding-top: 96px; }
  .fms-edu-hero__grid,
  .fms-service-hero-v2__grid { grid-template-columns: 1fr; }
  .fms-edu-hero__content { max-width: 850px; }
  .fms-edu-hero__shape--red { right: -28vw; top: 35%; }
  .fms-edu-hero__shape--gold { right: 5%; bottom: 4%; }
  .fms-edu-hero__visual { max-width: 800px; width: 100%; margin-inline: auto; }
  .fms-audience-strip__inner { flex-wrap: wrap; justify-content: center; padding-block: 22px; }
  .fms-audience-strip__inner i { display: none; }
  .fms-solution-showcase { grid-template-columns: repeat(2,1fr); grid-auto-rows: auto; }
  .fms-solution-tile,
  .fms-solution-tile--1,
  .fms-solution-tile--2,
  .fms-solution-tile--3,
  .fms-solution-tile--4,
  .fms-solution-tile--5,
  .fms-solution-tile--6 { grid-column: auto; min-height: 330px; }
  .fms-edu-story__grid,
  .fms-event-promo-v2__grid,
  .fms-signal-panel__grid,
  .fms-visual-panel__grid,
  .fms-system-panel__grid,
  .fms-event-flow__grid,
  .fms-service-zones__grid { grid-template-columns: 1fr; }
  .fms-edu-story__media { max-width: 800px; width: 100%; margin-inline: auto; }
  .fms-process-line { grid-template-columns: repeat(2,1fr); gap: 50px 0; }
  .fms-process-line::before { display: none; }
  .fms-institution-fit__grid { grid-template-columns: repeat(2,1fr); }
  .fms-event-promo-v2__image { min-height: 470px; }
  .fms-service-hero-v2__shape { right: -28vw; top: 30%; }
  .fms-service-hero-v2__visual { max-width: 800px; width: 100%; margin-inline: auto; }
  .fms-signal-map { grid-template-columns: 1fr; }
  .fms-signal-map i { width: 3px; height: 30px; margin: auto; background: repeating-linear-gradient(0deg,var(--fms-teal) 0 9px,transparent 9px 15px); }
}

@media (max-width: 782px) {
  .admin-bar .fms-header { top: 46px; }
}

@media (max-width: 720px) {
  h1 { font-size: clamp(3.3rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .fms-section { padding: 76px 0; }
  .fms-header::after { bottom: -10px; height: 15px; }
  .fms-header__utility { min-height: 27px; font-size: .66rem; }
  .fms-header__claim svg { display: none; }
  .fms-header__inner { min-height: 72px; grid-template-columns: minmax(0,190px) 1fr; }
  .fms-header.is-scrolled .fms-header__inner { min-height: 68px; }
  .fms-brand { max-width: 185px; }
  .fms-header.is-scrolled .fms-brand img,
  .fms-header.is-scrolled .fms-brand .custom-logo { width: min(100%, 178px); }
  .fms-nav { inset: 99px 0 66px; }
  .fms-header.is-scrolled .fms-nav { inset: 68px 0 66px; }
  .fms-edu-hero { min-height: 0; padding: 78px 0 64px; }
  .fms-edu-hero__shape--red { width: 570px; right: -360px; top: 43%; }
  .fms-edu-hero__shape--gold { width: 120px; height: 120px; right: -20px; bottom: 4%; border-width: 24px; }
  .fms-edu-hero__content h1 { margin-bottom: 24px; }
  .fms-edu-hero__lead { font-size: 1rem; }
  .fms-edu-hero__facts { display: grid; gap: 13px; }
  .fms-edu-hero__visual { min-height: 470px; }
  .fms-edu-hero__photo { inset: 0 0 65px 0; border-width: 6px; }
  .fms-edu-hero__audience { left: 8px; width: min(310px, 82%); padding: 18px 20px; }
  .fms-edu-hero__seal { width: 120px; height: 120px; right: -5px; top: 20px; border-width: 6px; }
  .fms-edu-hero__seal svg { width: 22px; }
  .fms-edu-hero__seal strong { font-size: .69rem; }
  .fms-edu-hero__seal small { font-size: .53rem; }
  .fms-audience-strip__inner { display: grid; grid-template-columns: 1fr 1fr; text-align: center; font-size: .72rem; }
  .fms-heading-row { margin-bottom: 36px; }
  .fms-solution-showcase { grid-template-columns: 1fr; }
  .fms-solution-tile,
  .fms-solution-tile--1,
  .fms-solution-tile--2,
  .fms-solution-tile--3,
  .fms-solution-tile--4,
  .fms-solution-tile--5,
  .fms-solution-tile--6 { min-height: 315px; padding: 25px; }
  .fms-solution-tile__icon { margin-bottom: 38px; }
  .fms-solution-tile h3 { font-size: 2.35rem; }
  .fms-edu-story__media { min-height: 460px; }
  .fms-edu-story__media::before { width: 250px; height: 250px; left: -90px; top: 10px; border-width: 38px; }
  .fms-edu-story__image--main { inset: 0 6% 70px 0; }
  .fms-edu-story__image--small { width: 54%; height: 38%; }
  .fms-edu-story__caption { left: 8px; bottom: 18px; max-width: 230px; padding: 13px 16px; font-size: .68rem; }
  .fms-process-line { grid-template-columns: 1fr; gap: 44px; }
  .fms-institution-fit__grid { grid-template-columns: 1fr; }
  .fms-institution-fit__grid article { min-height: 280px; }
  .fms-institution-fit__grid article > span { margin-bottom: 55px; }
  .fms-event-promo-v2__image { min-height: 340px; }
  .fms-event-promo-v2__image::before { width: 110px; height: 110px; left: -20px; top: 15px; border-width: 18px; }
  .fms-project-grid--editorial { grid-template-rows: repeat(3, 300px); }
  .fms-service-hero-v2 { padding: 82px 0 70px; }
  .fms-service-hero-v2__shape { width: 560px; height: 560px; right: -390px; top: 38%; }
  .fms-service-hero-v2__content h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
  .fms-service-hero-v2__content > p { font-size: 1rem; }
  .fms-service-hero-v2__visual { min-height: 440px; }
  .fms-service-hero-v2__visual > img { inset: 0 0 80px 0; height: calc(100% - 80px); border-width: 6px; }
  .fms-service-hero-v2__result { left: 8px; right: 8px; padding: 18px 20px; }
  .fms-signal-map { padding: 22px; }
  .fms-visual-panel__statement { padding-right: 0; }
  .fms-service-zones__grid { gap: 45px; }
}
@media (max-width: 1024px) {
  .fms-nav { left: 0; right: 0; width: 100%; transform: translateX(105%); }
  .fms-menu-open .fms-nav { transform: translateX(0); }
}

/* Editorial internal-page heroes */
.fms-editorial-hero { position: relative; padding: clamp(95px, 9vw, 150px) 0 clamp(80px, 8vw, 130px); overflow: hidden; background: #fff; }
.fms-editorial-hero__shape { position: absolute; width: 640px; height: 640px; right: -210px; top: -250px; border: 80px solid var(--fms-mint); border-radius: 50%; }
.fms-editorial-hero--projects .fms-editorial-hero__shape { border: 0; border-radius: 50% 6% 45% 50%; background: var(--fms-red); transform: rotate(18deg); }
.fms-editorial-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(330px,.5fr); align-items: end; gap: clamp(60px, 8vw, 130px); }
.fms-editorial-hero h1 { max-width: 970px; margin-bottom: 28px; font-size: clamp(3.8rem, 7vw, 8rem); text-transform: uppercase; }
.fms-editorial-hero p { max-width: 780px; color: var(--fms-ink-soft); font-size: clamp(1.05rem,1.4vw,1.27rem); }
.fms-editorial-hero__aside { display: grid; gap: 7px; padding: 29px; border-radius: 22px; color: #fff; background: var(--fms-navy); box-shadow: var(--fms-shadow); }
.fms-editorial-hero__aside > span { margin-bottom: 8px; color: rgba(255,255,255,.55); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.fms-editorial-hero__aside strong { padding-block: 5px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .9rem; }
.fms-editorial-hero__aside strong:last-child { border-bottom: 0; }

.fms-about-hero-v2,
.fms-contact-hero-v2 { position: relative; padding: clamp(95px,9vw,145px) 0 clamp(78px,7vw,120px); overflow: hidden; background: #fff; }
.fms-about-hero-v2__shape,
.fms-contact-hero-v2__shape { position: absolute; right: -10vw; top: -16%; width: clamp(480px,44vw,780px); height: clamp(480px,44vw,780px); border-radius: 46% 9% 42% 18%; background: var(--fms-red); transform: rotate(14deg); }
.fms-contact-hero-v2__shape { border-radius: 50%; background: var(--fms-teal); }
.fms-about-hero-v2__grid,
.fms-contact-hero-v2__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.9fr) minmax(450px,1.1fr); align-items: center; gap: clamp(60px,8vw,125px); }
.fms-about-hero-v2 h1,
.fms-contact-hero-v2 h1 { max-width: 800px; margin-bottom: 28px; font-size: clamp(3.8rem,6.8vw,7.6rem); text-transform: uppercase; }
.fms-about-hero-v2 p,
.fms-contact-hero-v2 p { max-width: 720px; color: var(--fms-ink-soft); font-size: clamp(1.05rem,1.4vw,1.26rem); }
.fms-about-hero-v2__image,
.fms-contact-hero-v2__image { position: relative; min-height: 570px; }
.fms-about-hero-v2__image img,
.fms-contact-hero-v2__image img { position: absolute; inset: 0 0 45px; width: 100%; height: calc(100% - 45px); object-fit: cover; border: 9px solid #fff; border-radius: 36% 10% 34% 10%; box-shadow: var(--fms-shadow); }
.fms-contact-hero-v2__image img { border-radius: 20px 120px 20px 120px; }
.fms-about-hero-v2__image > span,
.fms-contact-hero-v2__image > span { position: absolute; right: 25px; bottom: 0; padding: 17px 22px; border-radius: 999px; color: var(--fms-ink); background: var(--fms-gold); font-size: .78rem; font-weight: 850; box-shadow: var(--fms-shadow); }
.fms-contact-hero-v2__quick { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 30px; }
.fms-contact-hero-v2__quick a,
.fms-contact-map { display: flex; align-items: center; gap: 12px; padding: 17px 18px; border: 1px solid var(--fms-line); border-radius: 15px; background: #fff; }
.fms-contact-hero-v2__quick a:hover,
.fms-contact-map:hover { border-color: var(--fms-red); box-shadow: 0 12px 30px rgba(16,22,29,.09); }
.fms-contact-hero-v2__quick svg,
.fms-contact-map svg { color: var(--fms-red); }
.fms-contact-hero-v2__quick span,
.fms-contact-map span { display: grid; }
.fms-contact-hero-v2__quick small,
.fms-contact-map small { color: var(--fms-muted); font-size: .68rem; }
.fms-contact-hero-v2__quick strong,
.fms-contact-map strong { font-size: .83rem; }
.fms-contact-map { margin-top: 24px; }

.fms-system-panel .fms-values-grid article { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.fms-system-panel .fms-values-grid article > span { color: var(--fms-gold); }
.fms-system-panel .fms-values-grid p { color: rgba(255,255,255,.68); }

@media (max-width: 1024px) {
  .fms-editorial-hero__grid,
  .fms-about-hero-v2__grid,
  .fms-contact-hero-v2__grid { grid-template-columns: 1fr; }
  .fms-editorial-hero__aside { max-width: 620px; }
  .fms-about-hero-v2__shape,
  .fms-contact-hero-v2__shape { right: -30vw; top: 34%; }
  .fms-about-hero-v2__image,
  .fms-contact-hero-v2__image { max-width: 800px; width: 100%; margin-inline: auto; }
}
@media (max-width: 720px) {
  .fms-editorial-hero,
  .fms-about-hero-v2,
  .fms-contact-hero-v2 { padding: 80px 0 68px; }
  .fms-editorial-hero h1,
  .fms-about-hero-v2 h1,
  .fms-contact-hero-v2 h1 { font-size: clamp(3.15rem,15vw,4.8rem); }
  .fms-editorial-hero__shape { width: 420px; height: 420px; right: -300px; top: 35%; border-width: 55px; }
  .fms-editorial-hero__aside { padding: 22px; }
  .fms-about-hero-v2__shape,
  .fms-contact-hero-v2__shape { width: 550px; height: 550px; right: -390px; top: 40%; }
  .fms-about-hero-v2__image,
  .fms-contact-hero-v2__image { min-height: 430px; }
  .fms-about-hero-v2__image img,
  .fms-contact-hero-v2__image img { inset: 0 0 70px; height: calc(100% - 70px); border-width: 6px; }
  .fms-contact-hero-v2__quick { grid-template-columns: 1fr; }
}

/* Final cascade guard: values required by the production correction. */
h1,
.fms-edu-hero h1,
.fms-service-hero-v2 h1,
.fms-editorial-hero h1,
.fms-about-hero-v2 h1,
.fms-contact-hero-v2 h1,
.fms-stage-hero h1,
.fms-event-service-hero h1 { max-width: 760px; font-size: clamp(58px,5.6vw,82px); line-height: .94; letter-spacing: -.045em; }
h2,
.fms-edu-hero h2,
.fms-service-page h2,
.fms-editorial-hero h2,
.fms-about-hero-v2 h2,
.fms-contact-hero-v2 h2,
.fms-stage-page h2,
.fms-event-service-page h2 { max-width: 700px; font-size: clamp(42px,4vw,60px); line-height: 1; letter-spacing: -.035em; }
.fms-header { height: 88px; min-height: 88px; background: #fff; box-shadow: none; transform: none !important; transition: box-shadow .2s ease; }
.fms-header.is-scrolled { box-shadow: 0 10px 28px rgba(16,22,29,.12); }
.fms-header__utility,
.fms-header.is-scrolled .fms-header__utility { display: none; }
.fms-header__inner,
.fms-header.is-scrolled .fms-header__inner { height: 88px; min-height: 88px; transition: none; }
.fms-brand { width: min(100%,275px); max-width: 275px; }
.fms-brand img,
.fms-brand .custom-logo,
.fms-header.is-scrolled .fms-brand img,
.fms-header.is-scrolled .fms-brand .custom-logo { width: 275px; max-width: 100%; height: auto; transition: none; }
@media (max-width: 1024px) {
  .fms-header,
  .fms-header__inner,
  .fms-header.is-scrolled .fms-header__inner { height: 70px; min-height: 70px; }
  .fms-brand,
  .fms-brand img,
  .fms-brand .custom-logo,
  .fms-header.is-scrolled .fms-brand img,
  .fms-header.is-scrolled .fms-brand .custom-logo { width: 210px; }
  .fms-nav { inset: 70px 0 0; }
}
@media (max-width: 720px) {
  h1,
  .fms-edu-hero h1,
  .fms-service-hero-v2 h1,
  .fms-editorial-hero h1,
  .fms-about-hero-v2 h1,
  .fms-contact-hero-v2 h1,
  .fms-stage-hero h1,
  .fms-event-service-hero h1 { font-size: clamp(38px,11vw,48px); line-height: .98; }
  h2,
  .fms-edu-hero h2,
  .fms-service-page h2,
  .fms-editorial-hero h2,
  .fms-about-hero-v2 h2,
  .fms-contact-hero-v2 h2,
  .fms-stage-page h2,
  .fms-event-service-page h2 { font-size: clamp(32px,8.5vw,40px); line-height: 1.04; }
  .fms-brand,
  .fms-brand img,
  .fms-brand .custom-logo,
  .fms-header.is-scrolled .fms-brand img,
  .fms-header.is-scrolled .fms-brand .custom-logo { width: 185px; }
}