/* =========================================================
   GLANZWERK — Motion-Layer Styles
   Farben ausschliesslich aus :root-Tokens (glanzwerk-extra.css).
   Nur transform/opacity werden animiert.
   ========================================================= */

/* =========================================================
   Skip-Link: sicher verstecken statt per transform wegschieben.
   iOS Safari verschiebt position:fixed beim Overscroll -> die Box rutschte
   ins Bild. Geclippt gibt es nichts mehr zu sehen; nur echte Tastatur-
   Navigation (:focus-visible) holt ihn zurueck.
   ========================================================= */
.gw-skip {
  transform: none;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.gw-skip:focus-visible {
  transform: none;
  width: auto; height: auto;
  padding: 0.7rem 1.15rem;
  overflow: visible;
  clip-path: none;
}


/* =========================================================
   Baustein 5 — Cinematic Finish: Film-Grain + Vignette
   Site-weit, rein CSS, kein Markup. Ueberdeckt nichts (Textur,
   pointer-events:none). Der guenstigste "wirkt teuer"-Hebel.
   ========================================================= */
html::before {   /* Film-Grain */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
html::after {    /* sanfte, warme Vignette (rahmt, deckt nicht ab) */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9989;
  pointer-events: none;
  background: radial-gradient(135% 115% at 50% 34%, transparent 60%, rgba(12, 9, 6, 0.28) 100%);
}
@media (prefers-reduced-motion: reduce) { html::before { display: none; } }
html.motion-off::before, html.motion-off::after { display: none; }

/* =========================================================
   Baustein 7 — Card-Interaktionen (Tilt-Support + Gold-Glow)
   Tilt selbst kommt aus motion.js (nur bei feinem Zeiger).
   ========================================================= */
html.motion-heavy .tile,
html.motion-heavy .blog-card { will-change: transform; }
/* Gold-Glow zusaetzlich zum bestehenden Hover-Lift/Schatten */
.tile:hover { box-shadow: var(--gw-shadow-deep), 0 0 48px -12px rgba(201, 168, 118, 0.5); }
.blog-card:hover { box-shadow: var(--gw-shadow-deep), 0 0 44px -14px rgba(201, 168, 118, 0.45); }

/* =========================================================
   Baustein 6 — Leistungs-Marquee (pure CSS, nahtlos)
   ========================================================= */
.gw-marquee {
  overflow: hidden;
  background: var(--gw-taupe-950);
  border-top: 1px solid rgba(201, 168, 118, 0.20);
  border-bottom: 1px solid rgba(201, 168, 118, 0.20);
  padding: 1rem 0;
}
.gw-marquee-track { display: flex; width: max-content; animation: gw-marq 34s linear infinite; }
.gw-marquee-group { display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; }
.gw-marquee-group span {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-style: italic;
  color: var(--gw-cream);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.gw-marquee-group i {
  color: var(--gw-gold);
  font-size: 0.6rem;
  font-style: normal;
  transform: translateY(-1px);
}
@keyframes gw-marq { to { transform: translateX(-50%); } }
.gw-marquee:hover .gw-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .gw-marquee-track { animation: none; transform: none; } }
html.motion-off .gw-marquee-track { animation: none; }

/* =========================================================
   Baustein 10 — Buttons entspannter (weniger "KI-generiert")
   (Trust-Leiste wird im Inline-Style von index.html gestaltet)
   ========================================================= */
/* Buttons entspannter: Glanz-Sweep raus (wirkt "generiert") */
.btn-cream::after, .gw-cta-btn::after, .map-app-btn::after,
.map-consent-btn::after, .gw-sticky-cta-main::after, .reviews-cta-primary::after { display: none !important; }
/* Icon-Hover ohne Rotation/Sprung -> ruhiger */
.info-card:hover .ic-icon, .extra-card:hover .extra-icon,
.service-feature:hover .ic-icon {
  transform: scale(1.05) !important;
  box-shadow: none !important;
}

/* =========================================================
   Baustein 12 — Urlaubs-Aktion als prominenter Bild-Offer + Live-Countdown
   ========================================================= */
.gw-offer { position: relative; overflow: hidden; isolation: isolate; background: var(--gw-taupe-950); }
.gw-offer-media { position: absolute; inset: 0; z-index: 0; }
.gw-offer-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.gw-offer-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,12,8,0.96) 0%, rgba(16,12,8,0.9) 34%, rgba(16,12,8,0.62) 66%, rgba(16,12,8,0.34) 100%);
}
.gw-offer-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.5rem, 5vw, 4rem); }
.gw-offer-content { max-width: 640px; color: var(--gw-cream); }
.gw-offer-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--gw-gold-bright); background: rgba(201,168,118,0.12);
  border: 1px solid rgba(201,168,118,0.35); padding: 0.5rem 0.95rem; border-radius: 999px;
}
.gw-offer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gw-gold-bright); animation: gw-offer-pulse 2s infinite; }
@keyframes gw-offer-pulse { 0% { box-shadow: 0 0 0 0 rgba(201,168,118,0.55); } 70% { box-shadow: 0 0 0 8px rgba(201,168,118,0); } 100% { box-shadow: 0 0 0 0 rgba(201,168,118,0); } }
.gw-offer-title { font-family: 'Fraunces', Georgia, serif; font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.02; margin: 1.1rem 0 0; color: var(--gw-cream); }
.gw-offer-title em { font-style: italic; color: var(--gw-gold); font-weight: 400; }
.gw-offer-text { font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.6; color: rgba(245,240,230,0.85); margin: 1.1rem 0 0; max-width: 44ch; }
.gw-offer-deal { display: flex; align-items: center; gap: 1.1rem; margin: 1.7rem 0 0; flex-wrap: wrap; }
.gw-offer-prices { display: flex; align-items: baseline; gap: 0.9rem; }
.gw-offer-old { font-size: 1.4rem; color: rgba(245,240,230,0.55); text-decoration: line-through; text-decoration-color: rgba(201,168,118,0.7); }
.gw-offer-new { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gw-gold-bright); line-height: 1; }
.gw-offer-save { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.02em; color: #fff; background: #c0392b; padding: 0.5rem 0.9rem; border-radius: 999px; transform: rotate(-3deg); box-shadow: 0 8px 22px -8px rgba(192,57,43,0.7); }
.gw-offer-countdown { margin: 1.9rem 0 0; }
.gw-offer-cd-label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,230,0.55); margin-bottom: 0.6rem; }
.gw-offer-cd { display: flex; gap: 0.6rem; }
.cd-unit {
  display: flex; flex-direction: column; align-items: center; min-width: 64px; padding: 0.7rem 0.5rem;
  background: rgba(18,14,10,0.5); border: 1px solid rgba(201,168,118,0.22); border-radius: 12px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.cd-unit b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.8rem; line-height: 1; color: var(--gw-cream); font-variant-numeric: tabular-nums; }
.cd-unit span { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,230,0.5); margin-top: 0.35rem; }
.gw-offer-cta-row { display: flex; align-items: center; gap: 0.8rem; margin: 2rem 0 0; flex-wrap: wrap; }
.gw-offer-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(180deg, var(--gw-gold-bright), var(--gw-gold)); color: #1a140d;
  font-weight: 700; font-size: 1.02rem; text-decoration: none; padding: 1rem 1.7rem; border-radius: 999px;
  box-shadow: 0 14px 34px -12px rgba(201,168,118,0.7); transition: transform 0.3s var(--gw-ease), box-shadow 0.3s var(--gw-ease);
}
.gw-offer-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201,168,118,0.85); }
.gw-offer-wa {
  display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 700; font-size: 0.98rem;
  text-decoration: none; padding: 0.95rem 1.4rem; border-radius: 999px;
  background: rgba(37,211,102,0.16); border: 1px solid rgba(37,211,102,0.6); transition: background 0.25s var(--gw-ease), color 0.25s var(--gw-ease);
}
.gw-offer-wa:hover { background: #25d366; color: #0a2e16; }
.gw-offer-fine { margin: 1.4rem 0 0; font-size: 0.82rem; color: rgba(245,240,230,0.58); }
.gw-offer-fine a { color: var(--gw-gold-bright); text-decoration: none; border-bottom: 1px solid rgba(201,168,118,0.4); }
@media (max-width: 560px) {
  .cd-unit { min-width: 54px; padding: 0.6rem 0.35rem; }
  .cd-unit b { font-size: 1.5rem; }
  .gw-offer-cta, .gw-offer-wa { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .gw-offer-dot { animation: none; } }

/* Betriebsurlaub — Zeitraum-Kachel, nutzt das Layout von .gw-offer mit */
.gw-urlaub-range { display: flex; align-items: stretch; gap: 0.9rem; margin: 1.8rem 0 0; flex-wrap: wrap; }
.gw-urlaub-part {
  flex: 1 1 9rem; padding: 0.9rem 1.15rem; border-radius: var(--gw-radius);
  background: rgba(245,240,230,0.07); border: 1px solid rgba(245,240,230,0.14);
}
.gw-urlaub-part.is-back { background: rgba(201,168,118,0.13); border-color: rgba(201,168,118,0.55); }
.gw-urlaub-label { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,230,0.6); margin-bottom: 0.4rem; }
.gw-urlaub-date { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1; color: var(--gw-cream); }
.gw-urlaub-part.is-back .gw-urlaub-date { color: var(--gw-gold-bright); }
.gw-urlaub-arrow { align-self: center; font-size: 1.4rem; color: rgba(201,168,118,0.7); }
/* Mobil untereinander statt gequetscht nebeneinander */
@media (max-width: 560px) {
  .gw-urlaub-arrow { display: none; }
  .gw-urlaub-part { flex-basis: 100%; }
}

/* =========================================================
   Baustein 11 — "Warum Glanzwerk": grosse cineastische Bild-Kacheln
   ========================================================= */
.why-section { background: var(--gw-taupe-950); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.why-section .section-title { color: var(--gw-cream); }
.why-section .section-title em { color: var(--gw-gold); }
.why-section .section-lead { color: rgba(245, 240, 230, 0.72); }
.why-head { text-align: center; max-width: 42rem; margin: 0 auto 2.75rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.5vw, 1.15rem); }
.why-tile {
  position: relative; display: block; aspect-ratio: 4 / 5;
  border-radius: var(--gw-radius); overflow: hidden; text-decoration: none;
  box-shadow: var(--gw-shadow-deep); isolation: isolate;
}
.why-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s var(--gw-ease);
}
.why-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,8,6,0) 25%, rgba(10,8,6,0.45) 55%, rgba(10,8,6,0.92) 100%);
}
.why-tile:hover img { transform: scale(1.06); }
.why-tile-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.1rem, 1.6vw, 1.5rem); color: var(--gw-cream);
}
.why-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 0.7rem;
  border: 1px solid rgba(201, 168, 118, 0.5); border-radius: 50%;
  color: var(--gw-gold-bright); background: rgba(18, 14, 10, 0.35);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.why-ic svg { width: 20px; height: 20px; }
.why-tile-body h3 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--gw-cream);
  margin: 0 0 0.35rem; line-height: 1.15;
}
.why-tile-body p { font-size: 0.86rem; color: rgba(245, 240, 230, 0.8); line-height: 1.45; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } .why-tile { aspect-ratio: 16 / 10; } }

/* --- 11b — Bewegung & Feinschliff --- */
.why-tile { transition: transform 0.5s var(--gw-ease), box-shadow 0.5s var(--gw-ease); }
.why-tile:hover { transform: translateY(-6px); box-shadow: var(--gw-shadow-deep), 0 0 48px -12px rgba(201,168,118,0.45); }
.why-tile-body { transition: transform 0.5s var(--gw-ease); }
.why-tile:hover .why-tile-body { transform: translateY(-4px); }
/* Headline: konstante Hoehe (2 Zeilen, unten ausgerichtet) -> alle Kacheln fluchten */
.why-tile-body h3 {
  position: relative; padding-bottom: 0.55rem;
  min-height: calc(2.3em + 0.55rem);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.why-tile-body p { min-height: 1.45em; }
.why-tile-body h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gw-gold-bright), transparent);
  transition: width 0.5s var(--gw-ease);
}
.why-tile:hover .why-tile-body h3::after { width: 62px; }
/* animierte Icons: Idle-Float + Hover-Draw + Badge-Sweep */
.why-ic svg [pathLength] { stroke-dasharray: 1; stroke-dashoffset: 0; }
.why-tile:hover .why-ic { border-color: var(--gw-gold-bright); background: rgba(201,168,118,0.2); color: #fff; }
.why-tile:hover .why-ic svg [pathLength] { animation: why-ic-draw 0.85s var(--gw-ease); }
@keyframes why-ic-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes why-kb { from { transform: scale(1.05); } to { transform: scale(1.15) translate(-2.2%, -1.6%); } }
@keyframes why-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: no-preference) {
  .why-tile img { animation: why-kb 22s ease-in-out infinite alternate; will-change: transform; }
  .why-tile:nth-child(2) img { animation-duration: 26s; animation-direction: alternate-reverse; }
  .why-tile:nth-child(3) img { animation-duration: 24s; }
  .why-tile:nth-child(4) img { animation-duration: 28s; animation-direction: alternate-reverse; }
  .why-tile:hover img { animation-play-state: paused; }
  .why-ic { animation: why-float 6s ease-in-out infinite; }
  .why-tile:nth-child(2) .why-ic { animation-delay: -1.5s; }
  .why-tile:nth-child(3) .why-ic { animation-delay: -3s; }
  .why-tile:nth-child(4) .why-ic { animation-delay: -4.5s; }
}

/* Vorher/Nachher-Moment auf der Startseite */
.ba-showcase-slider { max-width: 900px; margin: 0 auto; }
.ba-showcase-slider .ba-slider { aspect-ratio: 16 / 10; }

/* Hero: Preis-Teaser (schneller Weg zur Anfrage) */
.hero-price-hint {
  margin: 1.1rem 0 0;
  font-size: 0.98rem;
  color: rgba(245, 240, 230, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-price-hint strong { color: var(--gw-gold-bright); font-weight: 700; }
.hero-price-hint a {
  color: var(--gw-cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 118, 0.5);
  transition: color 0.25s var(--gw-ease), border-color 0.25s var(--gw-ease);
  white-space: nowrap;
}
.hero-price-hint a:hover { color: var(--gw-gold-bright); border-color: var(--gw-gold-bright); }

/* WhatsApp-Button in der Sticky-CTA (passend zum Anruf-Button) */
.gw-sticky-cta-wa {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px -4px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s var(--gw-ease), box-shadow 0.25s var(--gw-ease);
}
.gw-sticky-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.6); }

/* =========================================================
   Baustein 9 — Google-Bewertungen prominenter (Trust-Signal gross)
   ========================================================= */
.reviews-aggregate {
  gap: clamp(1.4rem, 3.5vw, 3rem) !important;
  padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(2rem, 5vw, 3.4rem) !important;
  max-width: 54rem !important;
  border: 1px solid rgba(201, 168, 118, 0.45) !important;
  border-radius: 24px !important;
  box-shadow: 0 26px 70px -28px rgba(42, 37, 32, 0.45), 0 0 0 1px rgba(201, 168, 118, 0.12) !important;
  flex-wrap: wrap;
  position: relative;
}
/* warmer Glow hinter der Karte */
.reviews-aggregate::before {
  content: "";
  position: absolute;
  inset: -14% -6%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 118, 0.22), transparent 70%);
  pointer-events: none;
}
.reviews-google-logo { font-size: clamp(1.7rem, 3.4vw, 2.5rem) !important; }
.reviews-aggregate-stars {
  font-size: clamp(2.1rem, 5.5vw, 3.2rem) !important;
  letter-spacing: 0.08em !important;
  filter: drop-shadow(0 2px 6px rgba(244, 180, 0, 0.35));
}
.reviews-aggregate-score {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: clamp(2.6rem, 6.5vw, 3.8rem) !important;
  font-weight: 600 !important;
  line-height: 0.95 !important;
  color: var(--gw-taupe-deep) !important;
}
.reviews-aggregate-count { font-size: clamp(0.92rem, 2vw, 1.08rem) !important; font-weight: 600; }

/* Baustein 1 — Shape-Blur Blob im Hero */
.gw-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 46vw;
  max-width: 720px;
  aspect-ratio: 1 / 1;
  z-index: 1;                 /* Media (0) < Blob (1) < Content (1, spaeter im DOM) */
  pointer-events: none;
  border-radius: 50%;
  will-change: transform;
  /* warmer Gold-Glow aus Token; weich, damit es "Glanz" statt "Ball" liest */
  background: radial-gradient(
    circle at 50% 50%,
    color-mix(in srgb, var(--gw-gold) 85%, transparent) 0%,
    color-mix(in srgb, var(--gw-gold) 40%, transparent) 34%,
    transparent 68%
  );
  filter: blur(64px);        /* statisch gesetzt, nicht animiert */
  opacity: 0.55;
  mix-blend-mode: screen;    /* auf dem dunklen Hero: additives Leuchten */
  transform: translate3d(0, 0, 0);
}

/* Kill-Switch / reduced-motion: Schicht komplett aus */
.motion-off .gw-blob { display: none !important; }

/* Nur auf feinen Zeigern relevant; ohne heavy-Klasse gar nicht erst zeigen */
html:not(.motion-heavy) .gw-blob { display: none; }

@media (prefers-reduced-motion: reduce) {
  .gw-blob { display: none !important; }
}

/* Fallback (kein JS): Element wird nie erzeugt -> nichts zu tun.
   color-mix-Fallback fuer aeltere Engines: harmloser, blob bleibt nur unsichtbar. */
@supports not (background: color-mix(in srgb, red, blue)) {
  .gw-blob { background: radial-gradient(circle, rgba(201,168,118,0.7), transparent 68%); }
}

/* =========================================================
   Baustein 3 — Image-Sequence Scroll-Zoom (Canvas)
   Canvas liegt ueber dem Video und uebernimmt nur, wenn das
   heavy-Gate passt (JS setzt .gw-seq-active). Sonst: Video-Fallback.
   ========================================================= */
.gw-seq-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  will-change: transform;
}
.video-frame.gw-seq-active > video { visibility: hidden; }
.video-frame.gw-seq-active .gw-seq-canvas { display: block; }
.motion-off .gw-seq-canvas { display: none !important; }

/* =========================================================
   Baustein 2 — Animiertes Menue (Stagger auf Drawer-Links)
   Rein CSS. Laeuft auf allen Zeigern (Touch inklusive),
   nur reduced-motion + Kill-Switch schalten es ab.
   Nur transform/opacity, Signature-Ease, UI-Dauerband.
   Fallback: ohne die Gate-Bedingung sind die Links sichtbar.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  html:not(.motion-off) .mobile-nav > a {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .42s var(--gw-ease), transform .42s var(--gw-ease);
  }
  html:not(.motion-off) body.mnav-open .mobile-nav > a {
    opacity: 1;
    transform: none;
  }
  /* gestaffelte Verzoegerung nur beim Oeffnen (Schliessen faellt gemeinsam) */
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(1) { transition-delay: .06s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(2) { transition-delay: .10s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(3) { transition-delay: .14s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(4) { transition-delay: .18s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(5) { transition-delay: .22s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(6) { transition-delay: .26s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(7) { transition-delay: .30s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(8) { transition-delay: .34s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(9) { transition-delay: .38s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(10) { transition-delay: .42s; }
  html:not(.motion-off) body.mnav-open .mobile-nav > a:nth-of-type(11) { transition-delay: .46s; }
}
