/* =========================================================
   MS Friseur - Header, footer, hero, gallery, forms
   ========================================================= */

/* ---------------- HEADER ---------------- */
.msf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(17, 17, 17, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--msf-border);
  transition: background-color .3s;
}
.msf-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.msf-header__bar {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: min-height .3s ease;
}
.msf-header__brand { display: flex; align-items: center; }
.msf-header__brand a { display: inline-flex; align-items: center; }
.msf-header__nav { display: none; flex: 1 1 auto; align-items: center; justify-content: center; }
.msf-header__actions { display: flex; align-items: center; gap: 12px; }

@media (min-width: 640px) {
  .msf-header__inner { padding: 0 32px; }
  .msf-header__actions { gap: 16px; }
}
@media (min-width: 1025px) {
  .msf-header__inner { padding: 0 48px; }
  .msf-header__nav { display: flex; }
  .msf-burger { display: none !important; }
}

/* primary nav */
.msf-nav ul { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.msf-nav li { position: relative; }
.msf-nav a {
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--msf-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243, 230, 217, .9);
  transition: color .25s;
}
.msf-nav a:hover,
.msf-nav .current-menu-item > a,
.msf-nav .current_page_item > a { color: var(--msf-primary); }

/* header CTA */
.msf-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  background: var(--msf-primary);
  color: var(--msf-primary-foreground);
  font-family: var(--msf-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background-color .25s;
  white-space: nowrap;
}
.msf-header__cta:hover { background: rgba(201, 153, 119, .9); color: var(--msf-primary-foreground); }
@media (min-width: 640px) { .msf-header__cta { padding: 0 28px; } }

/* burger */
.msf-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--msf-background);
  border: 1px solid var(--msf-border);
  color: var(--msf-foreground);
  cursor: pointer;
  padding: 0;
  transition: border-color .25s, color .25s;
}
.msf-burger:hover { border-color: var(--msf-primary); color: var(--msf-primary); }
.msf-burger svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* ---------------- MOBILE DRAWER ---------------- */
.msf-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 200;
}
.msf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85vw;
  max-width: 384px;
  background: var(--msf-background);
  border-left: 1px solid var(--msf-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
  z-index: 201;
}
body.msf-drawer-open .msf-drawer-backdrop { opacity: 1; visibility: visible; }
body.msf-drawer-open .msf-drawer { transform: translateX(0); }
body.msf-drawer-open { overflow: hidden; }

.msf-drawer__head { margin-bottom: 24px; }
.msf-drawer__sub { color: var(--msf-muted-foreground); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.msf-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; color: var(--msf-muted-foreground); cursor: pointer;
}
.msf-drawer__close:hover { color: var(--msf-primary); }
.msf-drawer__close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.msf-drawer nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.msf-drawer nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--msf-foreground);
  border-bottom: 1px solid rgba(55, 44, 37, .5);
  transition: color .25s;
}
.msf-drawer nav a:hover { color: var(--msf-primary); }
.msf-drawer__foot { padding-top: 24px; border-top: 1px solid var(--msf-border); margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.msf-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--msf-primary);
  color: var(--msf-primary-foreground);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.msf-drawer__cta:hover { background: rgba(201, 153, 119, .9); color: var(--msf-primary-foreground); }
.msf-drawer__cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.msf-drawer__meta { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--msf-muted-foreground); }
.msf-drawer__meta > div { display: flex; align-items: center; gap: 8px; color: rgba(243, 230, 217, .8); }
.msf-drawer__meta svg { width: 12px; height: 12px; color: var(--msf-primary); stroke: currentColor; fill: none; }
.msf-drawer__meta span.msf-drawer__place { font-size: 11px; color: var(--msf-muted-foreground); }

/* ---------------- HERO ---------------- */
.msf-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--msf-background);
}
@media (min-width: 768px) { .msf-hero { min-height: 100vh; } }
.msf-hero__bg { position: absolute; inset: 0; z-index: 0; }
.msf-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.msf-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 153, 119, .12) 0%, transparent 70%),
    rgba(17, 17, 17, .8);
}
.msf-hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 128px;
  z-index: 1;
  background: linear-gradient(to top, var(--msf-background), transparent);
  pointer-events: none;
}
.msf-hero__topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(to right, transparent, rgba(201, 153, 119, .35), transparent);
}
.msf-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 576px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(55, 44, 37, .4);
  text-align: center;
  font-size: 12px;
  color: var(--msf-muted-foreground);
}
.msf-hero-stats__item { display: flex; flex-direction: column; align-items: center; }
.msf-hero-stats__item strong { color: var(--msf-foreground); font-weight: 500; margin-bottom: 2px; font-family: var(--msf-font-sans); }
.msf-hero-stats__item:last-child { grid-column: span 2; }
@media (min-width: 768px) {
  .msf-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .msf-hero-stats__item:last-child { grid-column: auto; }
}

/* ---------------- CTA BAND (background image section) ---------------- */
.msf-band { position: relative; overflow: hidden; }
.msf-band__bg { position: absolute; inset: 0; z-index: 0; }
.msf-band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.msf-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 153, 119, .12) 0%, transparent 70%),
    rgba(17, 17, 17, .85);
}
.msf-band__rule {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(to right, transparent, rgba(201, 153, 119, .3), transparent);
}
.msf-band__rule--top { top: 0; }
.msf-band__rule--bottom { bottom: 0; }

/* ---------------- TESTIMONIALS ---------------- */
.msf-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--msf-primary);
}
.msf-quote__stars { display: flex; align-items: center; gap: 4px; }
.msf-quote__stars svg { width: 16px; height: 16px; fill: var(--msf-primary); stroke: var(--msf-primary); }
.msf-quote__mark svg { width: 24px; height: 24px; stroke: currentColor; fill: none; color: rgba(201, 153, 119, .3); transition: color .3s; }
.msf-card:hover .msf-quote__mark svg { color: rgba(201, 153, 119, .6); }
.msf-blockquote {
  margin: 0 0 32px;
  padding: 0;
  border: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(243, 230, 217, .95);
  font-family: var(--msf-font-sans);
}
.msf-author { padding-top: 24px; border-top: 1px solid var(--msf-border); display: flex; flex-direction: column; }
.msf-author__name { font-size: 14px; font-weight: 500; color: var(--msf-foreground); }
.msf-author__meta { font-size: 12px; color: var(--msf-muted-foreground); font-weight: 300; }

/* ---------------- PROCESS STEPS ---------------- */
.msf-step__num { font-family: var(--msf-font-serif); font-size: 24px; font-weight: 400; color: rgba(201, 153, 119, .8); line-height: 1; }
.msf-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--msf-border);
  background: var(--msf-background);
  color: rgba(201, 153, 119, .7);
  border-radius: var(--msf-radius);
}
.msf-step__icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.msf-step-corner { position: relative; }
.msf-step-corner::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 16px; height: 16px;
  border-top: 1px solid rgba(201, 153, 119, .2);
  border-right: 1px solid rgba(201, 153, 119, .2);
  pointer-events: none;
}

/* ---------------- PRICING / OFFERS ---------------- */
.msf-price { display: flex; align-items: baseline; gap: 12px; }
.msf-price__now { font-family: var(--msf-font-serif); font-size: 30px; font-weight: 500; color: var(--msf-primary); line-height: 1; }
.msf-price__was { font-size: 14px; color: var(--msf-muted-foreground); text-decoration: line-through; }
.msf-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--msf-primary);
  color: var(--msf-primary-foreground);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--msf-radius);
}
.msf-ribbon svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
.msf-includes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.msf-includes li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 300; color: rgba(243, 230, 217, .9); line-height: 1.6; }
.msf-includes li > span:first-child {
  flex: 0 0 auto;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 9999px;
  background: rgba(201, 153, 119, .15);
  color: var(--msf-primary);
}
.msf-includes li svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.msf-meta-inline { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--msf-muted-foreground); }
.msf-meta-inline svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ---------------- GALLERY ---------------- */
.msf-gfilter { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.msf-gfilter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  font-family: var(--msf-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--msf-border);
  background: transparent;
  color: rgba(243, 230, 217, .8);
  cursor: pointer;
  border-radius: 0;
  transition: background-color .25s, color .25s, border-color .25s;
}
.msf-gfilter button:hover { border-color: rgba(201, 153, 119, .6); color: var(--msf-foreground); }
.msf-gfilter button.is-active {
  background: var(--msf-primary);
  border-color: transparent;
  color: var(--msf-primary-foreground);
}
.msf-ggrid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 24px; }
@media (min-width: 768px) { .msf-ggrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1025px) { .msf-ggrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.msf-gitem { position: relative; background: var(--msf-card); border: 1px solid var(--msf-border); transition: border-color .3s; }
.msf-gitem:hover { border-color: rgba(201, 153, 119, .45); }
.msf-gitem[hidden] { display: none; }
.msf-gitem__media { position: relative; width: 100%; overflow: hidden; background: var(--msf-muted); }
.msf-gitem__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.msf-gitem:hover .msf-gitem__media img { transform: scale(1.05); }
.msf-gitem__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.95) 0%, rgba(17,17,17,.45) 45%, rgba(17,17,17,0) 100%);
  pointer-events: none;
}
.msf-gitem__chip { position: absolute; top: 16px; left: 16px; z-index: 3; }
.msf-gitem__zoom {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,.8);
  border: 1px solid var(--msf-border);
  color: var(--msf-foreground);
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s, border-color .25s, color .25s;
}
.msf-gitem:hover .msf-gitem__zoom { opacity: 1; }
.msf-gitem__zoom:hover { border-color: var(--msf-primary); color: var(--msf-primary); }
.msf-gitem__zoom svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.msf-gitem__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.msf-gitem__title { font-family: var(--msf-font-serif); font-size: 20px; color: var(--msf-foreground); margin: 0 0 4px; font-weight: 400; }
.msf-gitem__text { font-size: 12px; color: var(--msf-muted-foreground); font-weight: 300; line-height: 1.6; margin: 0; }
.msf-gitem__foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(55,44,37,.6); display: flex; align-items: center; justify-content: space-between; }
.msf-gitem__more {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--msf-primary);
  font-family: var(--msf-font-sans);
}
.msf-gitem__more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.msf-gitem__more:hover { color: #dcb497; }

/* home gallery teaser (6 tiles, no filter) */
.msf-ggrid--teaser .msf-gitem__foot { display: none; }
.msf-ggrid--teaser .msf-gitem__text { display: none; }
.msf-ggrid--teaser .msf-gitem__zoom { display: none; }
.msf-gitem__kicker { display: flex; align-items: center; gap: 6px; color: rgba(201,153,119,.8); margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.msf-gitem__kicker svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

/* lightbox */
.msf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.msf-lightbox.is-open { opacity: 1; visibility: visible; }
.msf-lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; object-fit: contain; border: 1px solid var(--msf-border); }
.msf-lightbox__cap { margin-top: 16px; text-align: center; }
.msf-lightbox__cap h3 { font-family: var(--msf-font-serif); font-size: 22px; color: var(--msf-foreground); margin: 0 0 4px; }
.msf-lightbox__cap p { font-size: 13px; color: var(--msf-muted-foreground); margin: 0; }
.msf-lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,.8); border: 1px solid var(--msf-border);
  color: var(--msf-foreground); cursor: pointer;
}
.msf-lightbox__close:hover { border-color: var(--msf-primary); color: var(--msf-primary); }
.msf-lightbox__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* ---------------- MAP ---------------- */
.msf-map { position: relative; width: 100%; border: 1px solid var(--msf-border); background: var(--msf-card); }
.msf-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05) brightness(.85); }
.msf-map--tall iframe { height: 520px; }
.msf-map--short iframe { height: 256px; }
.msf-map__card {
  position: absolute;
  left: 16px; bottom: 16px;
  max-width: 320px;
  padding: 12px 14px;
  background: rgba(17,17,17,.95);
  border: 1px solid var(--msf-border);
  backdrop-filter: blur(6px);
}
.msf-map__card h4 { display: flex; align-items: center; gap: 8px; margin: 0 0 4px; font-family: var(--msf-font-sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--msf-foreground); }
.msf-map__card h4 svg { width: 14px; height: 14px; color: var(--msf-primary); stroke: currentColor; fill: none; }
.msf-map__card p { margin: 0; font-size: 12px; color: var(--msf-muted-foreground); line-height: 1.5; }
.msf-map__foot { margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--msf-border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.msf-map__state { display: inline-flex; align-items: center; padding: 2px 8px; border: 1px solid rgba(201,153,119,.4); color: var(--msf-primary); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.msf-map__route { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 500; color: var(--msf-primary); }
.msf-map__route svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
.msf-map__pill {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(24,24,24,.9);
  border: 1px solid var(--msf-border);
  font-size: 12px; color: var(--msf-foreground); font-weight: 500;
}
.msf-map__pill i { width: 8px; height: 8px; border-radius: 9999px; background: var(--msf-primary); display: inline-block; }

/* ---------------- SOCIAL STRIP ---------------- */
.msf-social-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(55,44,37,.6);
  background: rgba(31,31,31,.4);
}
.msf-social-strip__l { display: flex; align-items: center; gap: 12px; }
.msf-social-strip__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--msf-background);
  border: 1px solid var(--msf-border);
  color: var(--msf-primary);
}
.msf-social-strip__icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.msf-social-strip__t { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--msf-foreground); }
.msf-social-strip__s { font-size: 12px; color: var(--msf-muted-foreground); }
.msf-social-strip__a { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--msf-primary); }
.msf-social-strip__a svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

/* ---------------- CONTACT FORM ---------------- */
.msf-form { display: flex; flex-direction: column; gap: 20px; }
.msf-form__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .msf-form__grid { grid-template-columns: 1fr 1fr; } }
.msf-field { display: flex; flex-direction: column; gap: 6px; }
.msf-field label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--msf-muted-foreground);
}
.msf-field input,
.msf-field textarea {
  width: 100%;
  background: rgba(31,31,31,.4);
  border: 1px solid var(--msf-border);
  color: var(--msf-foreground);
  border-radius: 0;
  padding: 0 16px;
  height: 44px;
  font-family: var(--msf-font-sans);
  font-size: 15px;
  transition: border-color .25s, box-shadow .25s;
}
.msf-field textarea { height: auto; min-height: 132px; padding: 14px 16px; resize: vertical; }
.msf-field input:focus,
.msf-field textarea:focus { outline: none; border-color: var(--msf-primary); box-shadow: 0 0 0 3px rgba(201,153,119,.15); }
.msf-field input::placeholder, .msf-field textarea::placeholder { color: rgba(182,166,150,.5); }
.msf-form__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 48px;
  background: var(--msf-primary);
  color: var(--msf-primary-foreground);
  border: 0; border-radius: 0;
  font-family: var(--msf-font-sans);
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s;
}
.msf-form__submit:hover { background: rgba(201,153,119,.9); }
.msf-form__submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.msf-form__msg { font-size: 14px; padding: 12px 16px; border: 1px solid var(--msf-border); }
.msf-form__msg--ok { border-color: rgba(201,153,119,.5); color: var(--msf-primary); background: rgba(201,153,119,.08); }
.msf-form__msg--err { border-color: rgba(186,44,44,.6); color: #e08b8b; background: rgba(186,44,44,.08); }
.msf-hp { position: absolute !important; left: -9999px !important; }

/* ---------------- FOOTER ---------------- */
.msf-footer { position: relative; border-top: 1px solid var(--msf-border); background: var(--msf-background); color: var(--msf-foreground); }
.msf-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,153,119,.35), transparent);
}
.msf-footer__inner { max-width: 1280px; margin: 0 auto; padding: 64px 20px; }
@media (min-width: 640px) { .msf-footer__inner { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 768px) { .msf-footer__inner { padding-top: 80px; padding-bottom: 80px; } }
@media (min-width: 1025px) { .msf-footer__inner { padding-left: 48px; padding-right: 48px; } }
.msf-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .msf-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1025px) { .msf-footer__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.msf-footer h3 { font-family: var(--msf-font-serif); font-size: 18px; letter-spacing: .03em; color: var(--msf-foreground); margin: 0 0 16px; display: flex; align-items: center; gap: 8px; }
.msf-footer h3 svg { width: 16px; height: 16px; color: var(--msf-primary); stroke: currentColor; fill: none; }
.msf-footer__tag { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--msf-primary); font-weight: 500; margin: 0 0 16px; }
.msf-footer__loc { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--msf-muted-foreground); margin-bottom: 12px; }
.msf-footer__loc svg { width: 16px; height: 16px; margin-top: 3px; color: var(--msf-primary); stroke: currentColor; fill: none; flex: 0 0 auto; }
.msf-footer__contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--msf-muted-foreground); }
.msf-footer__contact a { display: inline-flex; align-items: center; gap: 8px; }
.msf-footer__contact svg { width: 14px; height: 14px; color: var(--msf-primary); stroke: currentColor; fill: none; }
.msf-footer nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.msf-footer nav a { font-size: 14px; color: var(--msf-muted-foreground); transition: color .25s; }
.msf-footer nav a:hover { color: var(--msf-primary); }
.msf-footer__social { display: flex; align-items: center; gap: 12px; padding-top: 8px; }
.msf-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--msf-border);
  background: var(--msf-card);
  color: var(--msf-muted-foreground);
  border-radius: var(--msf-radius);
  transition: color .25s, border-color .25s;
}
.msf-footer__social a:hover { color: var(--msf-primary); border-color: var(--msf-primary); }
.msf-footer__social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.msf-footer__link { display: inline-flex; align-items: center; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--msf-primary); margin-top: 8px; }
.msf-footer__bottom { margin-top: 56px; padding-top: 32px; }
.msf-footer__rule { height: 1px; background: var(--msf-border); margin-bottom: 24px; }
.msf-footer__legal { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; font-size: 12px; color: var(--msf-muted-foreground); }
.msf-footer__legal p { margin: 0; }
.msf-footer__legal div { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
@media (min-width: 768px) { .msf-footer__legal { flex-direction: row; } }

/* ---------------- misc ---------------- */
.msf-inline-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px; font-size: 12px; color: var(--msf-muted-foreground); letter-spacing: .04em; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* ---------------- button glyphs (exact Lucide shapes via mask) ---------------- */
.msf-btn--arrow .elementor-button-content-wrapper::after,
.msf-btn--phone .elementor-button-content-wrapper::before,
.msf-btn--wa .elementor-button-content-wrapper::before,
.msf-btn--cal .elementor-button-content-wrapper::before,
.msf-btn--send .elementor-button-content-wrapper::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: transform .3s;
}
.msf-btn--arrow .elementor-button-content-wrapper::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}
.msf-btn--arrow .elementor-button:hover .elementor-button-content-wrapper::after { transform: translateX(4px); }
.msf-btn--phone .elementor-button-content-wrapper::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384'/%3E%3C/svg%3E");
}
.msf-btn--wa .elementor-button-content-wrapper::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719'/%3E%3C/svg%3E");
}
.msf-btn--cal .elementor-button-content-wrapper::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
}
.msf-btn--send .elementor-button-content-wrapper::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z'/%3E%3Cpath d='m21.854 2.147-10.94 10.939'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z'/%3E%3Cpath d='m21.854 2.147-10.94 10.939'/%3E%3C/svg%3E");
}

/* reveal-on-scroll */
.msf-reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.msf-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .msf-reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   Elementor structure adapters
   ========================================================= */

/* sections: keep decorative glows behind the content */
.msf-sec > .e-con-inner { position: relative; z-index: 1; }
.msf-hero > .e-con-inner { position: relative; z-index: 2; }
.msf-textcenter { text-align: center; }
.msf-textcenter .elementor-widget-container { text-align: center; }

/* HERO built on an Elementor container background image */
.msf-hero { position: relative; overflow: hidden; }
.msf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent, #372c25, transparent) top left / 100% 1px no-repeat,
    linear-gradient(to top, #111111 0, rgba(17,17,17,0) 128px) bottom left / 100% 128px no-repeat,
    radial-gradient(ellipse at center, rgba(201, 153, 119, .12) 0%, transparent 70%);
}
/* CTA band: same treatment, thinner rules top and bottom */
.msf-band { position: relative; overflow: hidden; }
.msf-band > .e-con-inner { position: relative; z-index: 2; }
.msf-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent, rgba(201, 153, 119, .3), transparent) top left / 100% 1px no-repeat,
    linear-gradient(to right, transparent, rgba(201, 153, 119, .3), transparent) bottom left / 100% 1px no-repeat,
    radial-gradient(ellipse at center, rgba(201, 153, 119, .12) 0%, transparent 70%);
}

/* media container holding an Elementor image widget */
.msf-media > .elementor-widget-image,
.msf-media > .elementor-widget-image > .elementor-widget-container,
.msf-media > .elementor-widget-image .elementor-image,
.msf-media > .elementor-widget-image a { height: 100%; display: block; }
.msf-media > .elementor-widget { width: 100%; height: 100%; }

/* gallery tile: image widget + absolutely positioned overlay layer */
.msf-gitem { position: relative; overflow: hidden; }
.msf-gitem > .elementor-widget-image { position: absolute; inset: 0; z-index: 1; }
.msf-gitem > .elementor-widget-image > .elementor-widget-container,
.msf-gitem > .elementor-widget-image .elementor-image { height: 100%; }
.msf-gitem > .elementor-widget-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.msf-gitem:hover > .elementor-widget-image img { transform: scale(1.05); }
.msf-gitem--45 { aspect-ratio: 4 / 5; }
.msf-gitem--34 { aspect-ratio: 3 / 4; }
.msf-gitem__layer { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.msf-gitem__layer > .elementor-widget-container { height: 100%; }
.msf-gitem__layer a, .msf-gitem__layer button { pointer-events: auto; }
.msf-gitem__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,.95) 0%, rgba(17,17,17,.45) 45%, rgba(17,17,17,0) 100%); }

/* card that must stretch to the row height */
.msf-stretch { height: 100%; }
.msf-grow > .elementor-widget-container { height: 100%; }

/* offers card needs room for the ribbon */
.msf-card--featured { position: relative; }

/* Elementor image widget defaults we do not want */
.elementor-widget-image .elementor-image { line-height: 0; }
.elementor-widget-image figure, .elementor-widget-image figcaption { margin: 0; }

/* eyebrow variant: rule + pill badge */
.msf-eyebrow-badge { display: flex; align-items: center; gap: 12px; }
.msf-rule8 { display: block; width: 32px; height: 1px; background: rgba(201, 153, 119, .6); flex: 0 0 auto; }
.msf-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(201, 153, 119, .3);
  background: rgba(201, 153, 119, .05);
  color: var(--msf-primary);
  font-family: var(--msf-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 4px 12px;
}
.msf-badge-inline svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
.msf-badge-inline--soft { border-color: rgba(201, 153, 119, .4); background: rgba(201, 153, 119, .1); font-weight: 500; padding: 4px 14px; letter-spacing: .12em; }

/* card head: icon + serif title */
.msf-cardhead { display: flex; align-items: center; gap: 10px; color: var(--msf-primary); }
.msf-cardhead__i svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.msf-cardhead__t { margin: 0; font-family: var(--msf-font-serif); font-size: 20px; font-weight: 500; letter-spacing: -.01em; color: var(--msf-foreground); }
@media (min-width: 768px) { .msf-cardhead__t { font-size: 24px; } }

/* contact tiles inner spans */
.msf-tile > span { display: flex; flex-direction: column; }
.msf-tile__k, .msf-tile__v { display: block; }

/* social strip inner */
.msf-social-strip__l > span { display: block; }

/* media image inside an HTML widget */
.msf-media__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* stats block inside hero */
.msf-hero-stats { list-style: none; }

/* caption plate over an image */
.msf-media__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(17,17,17,.95) 0%, rgba(17,17,17,.5) 55%, rgba(17,17,17,0) 100%);
}
.msf-media__caption-t { margin: 0; font-family: var(--msf-font-serif); font-size: 18px; color: var(--msf-foreground); }
.msf-media__caption-s { margin: 2px 0 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--msf-primary); }

/* small heading with a leading icon */
.msf-subhead { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.msf-subhead svg { width: 16px; height: 16px; color: var(--msf-primary); stroke: currentColor; fill: none; }
.msf-subhead h4 { margin: 0; font-family: var(--msf-font-sans); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--msf-foreground); }

/* hairline block with vertical padding (feature list) */
.msf-pad-y > .elementor-widget-container { padding: 24px 0; }
.msf-hairline.msf-pad-y { border-bottom: 1px solid var(--msf-border); }

/* wider tracking eyebrow used in the hero */
.msf-eyebrow--wide .elementor-heading-title { letter-spacing: .2em; }

/* Elementor grid fallback when a custom template string is not applied */
.msf-sec .e-grid { align-items: start; }

/* full-bleed decorative layer inside hero / CTA band containers */
/* (kept for reference: the hero/band decoration is drawn by ::after on the section) */
.msf-fx { display: none; }
.msf-fx--hero {
  background:
    linear-gradient(to right, transparent, #372c25, transparent) top left / 100% 1px no-repeat,
    linear-gradient(to top, #111111 0%, rgba(17,17,17,.4) 45%, rgba(17,17,17,0) 100%) bottom left / 100% 128px no-repeat,
    radial-gradient(ellipse at center, rgba(201, 153, 119, .12) 0%, transparent 70%);
}
.msf-fx--band {
  background:
    linear-gradient(to right, transparent, rgba(201, 153, 119, .3), transparent) top left / 100% 1px no-repeat,
    linear-gradient(to right, transparent, rgba(201, 153, 119, .3), transparent) bottom left / 100% 1px no-repeat,
    radial-gradient(ellipse at center, rgba(201, 153, 119, .12) 0%, transparent 70%);
}

/* header bar: Elementor containers default to width:100%, override the flex sizing */
.e-con.msf-header__brand,
.e-con.msf-header__actions { width: auto; flex: 0 0 auto; }
.e-con.msf-header__nav { width: auto; flex: 1 1 auto; min-width: 0; }
.msf-nav a { white-space: nowrap; }
.msf-header__bar > .e-con-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* icon+text blocks: the text column is a span wrapper */
.msf-icontext > span:last-child { display: flex; flex-direction: column; }
.msf-icontext__title, .msf-icontext__text { display: block; }
.msf-icontext__title { margin-bottom: 2px; }

/* =========================================================
   Page components: Leistungen / Über uns / Angebote / Kontakt
   ========================================================= */

.msf-rule6 { display: block; width: 24px; height: 1px; background: rgba(201, 153, 119, .6); flex: 0 0 auto; }
.msf-eyebrow-plain {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--msf-font-sans);
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--msf-primary);
}
.msf-eyebrow-plain--strong { font-weight: 600; }
.msf-eyebrow-plain svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.msf-eyebrow-after { display: flex; align-items: center; gap: 12px; font-family: var(--msf-font-sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--msf-primary); }
.msf-eyebrow-after .msf-rule8 { background: rgba(201, 153, 119, .4); }
.msf-rule-grad { width: 96px; height: 1px; margin: 0 auto; background: linear-gradient(to right, transparent, rgba(201, 153, 119, .6), transparent); }
.msf-divider-soft { height: 1px; background: rgba(55, 44, 37, .6); margin: 4px 0; }
.msf-pad-t > .elementor-widget-container { padding-top: 24px; }
.msf-pad-t-48 > .elementor-widget-container { padding-top: 48px; }
.msf-shrink { flex: 0 0 auto !important; width: auto !important; }
.msf-h3--lg .elementor-heading-title { font-size: 24px; font-weight: 400; }

/* CTA rows */
.msf-cta__t { margin: 0; font-family: var(--msf-font-serif); font-size: 20px; color: var(--msf-foreground); }
.msf-cta__h { margin: 0; font-family: var(--msf-font-serif); font-size: 20px; font-weight: 500; color: var(--msf-foreground); }
.msf-cta__s { margin: 4px 0 0; font-size: 14px; color: var(--msf-muted-foreground); }
@media (min-width: 640px) { .msf-cta__t, .msf-cta__h { font-size: 24px; } }

/* process steps */
.msf-step { padding: 24px; }
.msf-step + .msf-step { margin-top: 0; }
.msf-step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.msf-step__body { display: flex; flex-direction: column; gap: 6px; }
.msf-step__title { margin: 0; font-family: var(--msf-font-serif); font-size: 20px; font-weight: 500; color: var(--msf-foreground); }
.msf-step__text { margin: 0; font-size: 14px; line-height: 1.7; color: var(--msf-muted-foreground); }
.msf-step:hover { border-color: rgba(201, 153, 119, .4); background: var(--msf-card); }
.msf-step:hover .msf-step-corner::after { border-color: rgba(201, 153, 119, .6); }
@media (min-width: 640px) {
  .msf-step { padding: 28px; }
  .msf-step__head { flex-direction: column; align-items: center; gap: 8px; float: left; margin-right: 24px; }
  .msf-step__title { font-size: 24px; }
  .msf-step__text { font-size: 16px; }
}

/* quote plate over the consultation portrait */
.msf-quotecard-wrap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 24px; }
.msf-quotecard { border: 1px solid rgba(55, 44, 37, .7); background: rgba(17, 17, 17, .85); backdrop-filter: blur(8px); padding: 20px; border-radius: var(--msf-radius); }
.msf-quotecard__q { margin: 0; font-family: var(--msf-font-serif); font-style: italic; font-size: 16px; color: var(--msf-foreground); }
.msf-quotecard__a { margin: 8px 0 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--msf-primary); }
@media (min-width: 640px) { .msf-quotecard__q { font-size: 18px; } }

/* stats pair */
.msf-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.msf-stat__n { display: block; font-family: var(--msf-font-serif); font-size: 24px; font-weight: 500; color: var(--msf-foreground); margin-bottom: 4px; }
.msf-stat__k { display: block; font-size: 12px; letter-spacing: .03em; color: var(--msf-muted-foreground); }

/* name plate over the story portrait */
.msf-plate {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px;
  background: rgba(17, 17, 17, .9);
  border-top: 1px solid var(--msf-border);
  backdrop-filter: blur(6px);
}
.msf-plate__t { margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--msf-primary); font-weight: 500; }
.msf-plate__s { margin: 2px 0 0; font-size: 12px; color: var(--msf-muted-foreground); }
.msf-plate__dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--msf-primary); flex: 0 0 auto; }

/* team cards */
.msf-teambadge {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: rgba(17, 17, 17, .85);
  border: 1px solid rgba(201, 153, 119, .3);
  color: var(--msf-primary);
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.msf-teambadge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
.msf-team__body > .elementor-widget-container { padding: 24px; }
.msf-team__name { margin: 0 0 4px; font-family: var(--msf-font-serif); font-size: 24px; font-weight: 500; letter-spacing: -.01em; color: var(--msf-card-foreground); }
.msf-team__role { margin: 0 0 16px; font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(201, 153, 119, .9); }
.msf-team__bio { margin: 0; font-size: 14px; line-height: 1.7; color: var(--msf-muted-foreground); }
.msf-team__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: 0 24px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(55, 44, 37, .7);
}
.msf-team__foot > span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--msf-muted-foreground); }
.msf-team__foot a { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--msf-primary); }

/* offers */
.msf-offer { position: relative; }
.msf-offer__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.msf-offer__title { font-family: var(--msf-font-serif); font-size: 24px; font-weight: 400; color: var(--msf-foreground); }
.msf-offer__sub { margin: 4px 0 0; font-size: 12px; color: var(--msf-muted-foreground); }
.msf-offer__price { margin: 24px 0; padding-bottom: 24px; border-bottom: 1px solid rgba(55, 44, 37, .8); }
.msf-offer__incl-k { display: block; margin-bottom: 16px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--msf-muted-foreground); }
.msf-btn--rounded .elementor-button { border-radius: var(--msf-radius); }

/* contact form head */
.msf-formhead__k { display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--msf-primary); }
.msf-formhead__t { margin: 4px 0 0; font-family: var(--msf-font-serif); font-size: 24px; font-weight: 400; color: var(--msf-foreground); }
.msf-formhead__s { margin: 4px 0 0; font-size: 12px; color: var(--msf-muted-foreground); }

/* icon + inline title (opening hours card head) */
.msf-icontext--row { align-items: center; }
.msf-icontext--row .msf-icontext__icon { width: 32px; height: 32px; margin-top: 0; }
.msf-icontext--row .msf-icontext__icon svg { width: 16px; height: 16px; }

/* footer navigation uses the same shortcode as the header - reset the header styling */
.msf-footer .msf-nav ul { flex-direction: column; align-items: flex-start; gap: 10px; }
.msf-footer .msf-nav a {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: var(--msf-tracking);
  text-transform: none;
  color: var(--msf-muted-foreground);
}
.msf-footer .msf-nav a:hover { color: var(--msf-primary); }

/* offer ribbon must anchor to the card, not to the widget wrapper */
.msf-offer > .elementor-widget { position: static; }
.msf-ribbon { top: -12px; right: 24px; }

/* map filters, matching the original per page */
.msf-map--tall iframe { filter: grayscale(1) contrast(1.25); opacity: .9; transition: opacity .3s; }
.msf-map--short iframe { filter: grayscale(1) invert(1) contrast(1.25); opacity: .75; transition: opacity .3s; }
.msf-map iframe:hover { opacity: 1; }

/* the drawer lives in a clipped fixed shell so the off-screen transform
   never widens the document on mobile */
.msf-drawer-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 200;
}
body.msf-drawer-open .msf-drawer-shell { pointer-events: auto; }
.msf-drawer-shell .msf-drawer-backdrop,
.msf-drawer-shell .msf-drawer { position: absolute; }
.msf-drawer-shell .msf-drawer-backdrop { inset: 0; z-index: 1; }
.msf-drawer-shell .msf-drawer { top: 0; right: 0; bottom: 0; left: auto; z-index: 2; }
/* no overflow on html/body: it would turn them into scroll containers and break
   position:sticky. Horizontal overflow is prevented at the source (drawer shell). */

/* header CTA glyph + inline separators */
.msf-header__cta svg { width: 14px; height: 14px; margin-right: 6px; stroke: currentColor; fill: none; }
.msf-sep { display: none; }
@media (min-width: 640px) { .msf-sep { display: inline; } }

/* leading-relaxed (1.625) as in the original */
.msf-lead, .msf-lead p, .msf-body, .msf-body p, .msf-small, .msf-small p { line-height: 1.625; }

/* testimonial avatar */
.msf-author { flex-direction: row; align-items: center; gap: 14px; }
.msf-author__txt { display: flex; flex-direction: column; }
.msf-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--msf-border);
  background: var(--msf-muted);
  color: var(--msf-foreground);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}

/* "Termine nach Vereinbarung" note on the homepage map */
.msf-map__note {
  position: absolute;
  top: 12px; right: 12px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(17, 17, 17, .9);
  border: 1px solid var(--msf-border);
  font-size: 11px;
  color: var(--msf-muted-foreground);
}
.msf-map__note svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
@media (min-width: 640px) { .msf-map__note { display: inline-flex; } }

/* blockquote is 18px from sm upwards */
@media (min-width: 640px) { .msf-blockquote { font-size: 18px; } }


/* simple templates: 404 and search */
.msf-simple { padding: 112px 48px; background: var(--msf-background); }
.msf-simple__inner { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.msf-simple .msf-textcenter, .msf-simple__inner.msf-textcenter { align-items: center; }
.msf-simple__title { margin: 0; font-family: var(--msf-font-serif); font-weight: 400; font-size: 30px; line-height: 1.15; letter-spacing: -.02em; color: var(--msf-foreground); }
.msf-simple__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.msf-plainbtn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid transparent; transition: background-color .25s, border-color .25s, color .25s;
}
.msf-plainbtn--primary { background: var(--msf-primary); color: var(--msf-primary-foreground); }
.msf-plainbtn--primary:hover { background: rgba(201,153,119,.9); color: var(--msf-primary-foreground); }
.msf-plainbtn--outline { background: var(--msf-background); border-color: var(--msf-border); color: var(--msf-foreground); }
.msf-plainbtn--outline:hover { border-color: var(--msf-primary); background: rgba(201,153,119,.1); }
.msf-results { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; width: 100%; }
.msf-results li { padding-bottom: 20px; border-bottom: 1px solid rgba(55,44,37,.5); }
.msf-results a { font-family: var(--msf-font-serif); font-size: 22px; color: var(--msf-foreground); }
.msf-results a:hover { color: var(--msf-primary); }
.msf-results p { margin: 6px 0 0; font-size: 14px; color: var(--msf-muted-foreground); }
.msf-simple .search-form { display: flex; gap: 12px; flex-wrap: wrap; }
.msf-simple .search-field { height: 48px; padding: 0 16px; background: rgba(31,31,31,.4); border: 1px solid var(--msf-border); color: var(--msf-foreground); border-radius: 0; }
.msf-simple .search-submit { height: 48px; padding: 0 24px; background: var(--msf-primary); color: var(--msf-primary-foreground); border: 0; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 500; cursor: pointer; }
@media (min-width: 768px) { .msf-simple__title { font-size: 48px; } }
@media (max-width: 767px) { .msf-simple { padding: 80px 20px; } }

/* staggered reveal, matching the original's per-block fade */
.msf-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: calc(var(--msf-i, 0) * 80ms);
}
.msf-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .msf-reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================
   Brand lockup: round logo mark + "MS Friseur" wordmark
   ========================================================= */
.msf-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.msf-brand:hover { color: inherit; }

/* the mark: tight square crop of the round emblem, so the gold fills the frame */
.msf-brand__mark,
.msf-brand__mark-w img,
.msf-brand__mark-f img {
  width: 56px !important;
  height: 56px !important;
  box-shadow: 0 0 0 1px rgba(201, 153, 119, .3), 0 2px 10px -2px rgba(0, 0, 0, .6);
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
  display: block;
  transition: width .3s ease, height .3s ease, box-shadow .3s ease;
}
.msf-brand__mark-w, .msf-brand__mark-f { flex: 0 0 auto; width: auto !important; }
.msf-brand__mark-w .elementor-widget-container,
.msf-brand__mark-f .elementor-widget-container,
.msf-brand__mark-w .elementor-image,
.msf-brand__mark-f .elementor-image { line-height: 0; width: auto; }

/* the wordmark */
.msf-brand__text,
.msf-brand__text-w .elementor-heading-title,
.msf-brand__text-f .elementor-heading-title {
  font-family: var(--msf-font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--msf-foreground);
  transition: font-size .3s ease;
}
.msf-brand__text-w, .msf-brand__text-f { flex: 0 0 auto; width: auto !important; }
.msf-brand__ms { color: var(--msf-foreground); }
.msf-brand__word { color: var(--msf-primary); font-style: italic; font-weight: 400; }
.msf-brand:hover .msf-brand__word { color: #dcb497; }

/* footer variant sits a touch larger, drawer variant smaller */
.msf-footer__brandline { width: auto !important; flex: 0 0 auto; margin-bottom: 4px; }
.msf-brand__mark-f img { width: 52px !important; height: 52px !important; }
.msf-brand--drawer .msf-brand__mark { width: 46px !important; height: 46px !important; }
.msf-brand--drawer .msf-brand__text { font-size: 21px; }
.msf-brand:hover .msf-brand__mark,
.msf-brand:hover .msf-brand__mark-w img,
.msf-brand:hover .msf-brand__mark-f img { box-shadow: 0 0 0 1px rgba(201, 153, 119, .6), 0 4px 14px -2px rgba(0, 0, 0, .7); }
.msf-drawer__head .msf-brand { margin-bottom: 10px; }

@media (max-width: 479px) {
  .msf-header__brand .msf-brand__mark-w img { width: 44px !important; height: 44px !important; }
  .msf-header__brand .msf-brand__text-w .elementor-heading-title { font-size: 18px; }
}

/* =========================================================
   Header shrinks on scroll but stays pinned
   ========================================================= */
.msf-header { will-change: background-color, box-shadow; }
.msf-header .msf-header__bar { transition: min-height .3s ease; }

.msf-header.is-scrolled {
  background: rgba(17, 17, 17, .98);
  box-shadow: 0 8px 28px -12px rgba(0, 0, 0, .8);
}
/* Elementor prints the container min-height inline after our sheets, so the
   scrolled state has to override it explicitly. */
.msf-header.is-scrolled .msf-header__bar { --min-height: 60px !important; min-height: 60px !important; }
.msf-header.is-scrolled .msf-header__bar > .e-con-inner { min-height: 60px; }
.msf-header.is-scrolled .msf-brand__mark-w img { width: 42px !important; height: 42px !important; }
.msf-header.is-scrolled .msf-brand__text-w .elementor-heading-title { font-size: 20px; }
.msf-header.is-scrolled .msf-header__cta { height: 32px; }
.msf-header.is-scrolled .msf-nav a { padding-top: 6px; padding-bottom: 6px; }
.msf-header.is-scrolled .msf-burger { width: 32px; height: 32px; }
@media (max-width: 479px) {
  .msf-header.is-scrolled .msf-brand__mark-w img { width: 36px !important; height: 36px !important; }
  .msf-header.is-scrolled .msf-brand__text-w .elementor-heading-title { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .msf-header .msf-header__bar,
  .msf-brand__mark, .msf-brand__mark-w img, .msf-brand__mark-f img,
  .msf-brand__text, .msf-brand__text-w .elementor-heading-title { transition: none; }
}

/* =========================================================
   Floating quick contact (WhatsApp + phone), bottom right
   ========================================================= */
.msf-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.msf-float__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, .25);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .75);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.msf-float__btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 32px -8px rgba(0, 0, 0, .85); }
.msf-float__btn svg { width: 26px; height: 26px; }
.msf-float__btn--wa { background: #1faa53; color: #ffffff; }
.msf-float__btn--wa:hover { background: #25d366; color: #ffffff; }
.msf-float__btn--wa svg { fill: currentColor; stroke: none; }
.msf-float__btn--tel { background: var(--msf-primary); color: var(--msf-primary-foreground); }
.msf-float__btn--tel:hover { background: #dcb497; color: var(--msf-primary-foreground); }
.msf-float__btn--tel svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 2; }

/* hover label */
.msf-float__label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 6px 12px;
  background: rgba(24, 24, 24, .96);
  border: 1px solid var(--msf-border);
  color: var(--msf-foreground);
  font-family: var(--msf-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.msf-float__btn:hover .msf-float__label,
.msf-float__btn:focus-visible .msf-float__label { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 767px) {
  .msf-float { right: 14px; bottom: 14px; gap: 10px; }
  .msf-float__btn { width: 50px; height: 50px; }
  .msf-float__btn svg { width: 24px; height: 24px; }
  .msf-float__label { display: none; }
}
/* keep the drawer and lightbox above the floating buttons */
body.msf-drawer-open .msf-float { opacity: 0; pointer-events: none; transition: opacity .2s; }

/* drawer head: brand on one line, location subtitle underneath */
.msf-drawer__head { display: flex; flex-direction: column; align-items: flex-start; padding-right: 44px; }
.msf-drawer__head .msf-brand { display: flex; margin-bottom: 8px; }
.msf-drawer__sub { display: block; }
.msf-drawer__close {
  background: var(--msf-card);
  border: 1px solid var(--msf-border);
  color: var(--msf-foreground);
  z-index: 3;
}
.msf-drawer__close:hover { border-color: var(--msf-primary); color: var(--msf-primary); }
.msf-drawer__close { box-sizing: border-box; width: 34px; height: 34px; }
.msf-drawer__close svg { width: 18px !important; height: 18px !important; flex: 0 0 auto; }

/* 1025-1199px: six nav items + brand + CTA get tight, so tighten the nav
   rhythm and the brand a little instead of letting them touch */
@media (min-width: 1025px) and (max-width: 1199px) {
  .msf-nav ul { gap: 8px; }
  .msf-nav a { padding-left: 8px; padding-right: 8px; letter-spacing: .1em; }
  .msf-header__brand .msf-brand__mark-w img { width: 46px !important; height: 46px !important; }
  .msf-header__brand .msf-brand__text-w .elementor-heading-title { font-size: 20px; }
  .msf-header__cta { padding: 0 18px; letter-spacing: .1em; }
}
@media (min-width: 1200px) and (max-width: 1365px) {
  .msf-nav ul { gap: 16px; }
}
