/**
 * EmpirePsi ? Design System
 * Psychology / psychotherapy premium theme by EmpireX (empirex.tech)
 */

:root {
  --eps-plum: #4e2a4e;
  --eps-plum-deep: #3a1f3a;
  --eps-mauve: #c18da2;
  --eps-mauve-soft: #e8d5dc;
  --eps-cream: #faf6f4;
  --eps-cream-deep: #f3ebe7;
  --eps-white: #ffffff;
  --eps-text: #3a2a38;
  --eps-muted: #6b5a68;
  --eps-gold: #c9a227;
  --eps-star: #d4a017;
  --eps-shadow: 0 18px 50px rgba(78, 42, 78, 0.08);
  --eps-shadow-soft: 0 10px 30px rgba(78, 42, 78, 0.06);
  --eps-radius: 22px;
  --eps-radius-pill: 999px;
  --eps-container: 1180px;
  --eps-header-wide: 1360px;
  --eps-font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --eps-font-body: "Outfit", system-ui, sans-serif;
  --eps-font-ui: "Outfit", system-ui, sans-serif;
  --eps-header-h: 74px;
  --eps-header-h-scrolled: 62px;
  --eps-topbar-h: 36px;
  --eps-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c45d8a #f0e6ea;
  overflow-x: clip;
  max-width: 100%;
  /* Keep layout stable when modals lock body scroll */
  scrollbar-gutter: stable;
}

/* Custom purple vertical scrollbar (no horizontal bar) */
html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track,
body.empirepsi::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #faf6f4 0%, #f0e6ea 100%);
}

html::-webkit-scrollbar-thumb,
body.empirepsi::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e8a0bc 0%, #c45d8a 42%, #4e2a4e 100%);
  border-radius: 999px;
  border: 2px solid #f0e6ea;
  background-clip: padding-box;
  min-height: 48px;
}

html::-webkit-scrollbar-thumb:hover,
body.empirepsi::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f3c4d4 0%, #c45d8a 40%, #3a1f3a 100%);
  border: 2px solid #f0e6ea;
  background-clip: padding-box;
}

html::-webkit-scrollbar-corner,
body.empirepsi::-webkit-scrollbar-corner {
  background: #f0e6ea;
}

[id] {
  scroll-margin-top: calc(var(--eps-header-h) + var(--eps-topbar-h) + 28px);
}

body.empirepsi {
  margin: 0;
  font-family: var(--eps-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--eps-text);
  background-color: var(--eps-cream);
  background-image:
    linear-gradient(180deg, rgba(250, 246, 244, 0.92) 0%, rgba(250, 246, 244, 0.96) 45%, rgba(243, 235, 231, 0.98) 100%),
    image-set(
      url("../images/iunia-slide-a.webp") type("image/webp"),
      url("../images/iunia-slide-a.jpg") type("image/jpeg")
    );
  background-size: cover, cover;
  background-position: center, center top;
  background-attachment: scroll, fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Ultra mauve sparks + X flakes that trail the cursor (desktop) */
.eps-pointer-sparks {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.eps-pointer-spark {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  background: #e8a0bc;
  box-shadow:
    0 0 5px rgba(196, 93, 138, 0.55),
    0 0 1px rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0) scale(0.4);
  will-change: transform, opacity;
}

.eps-pointer-spark--soft {
  width: 2px;
  height: 2px;
  margin: -1px 0 0 -1px;
  background: #c45d8a;
  box-shadow: 0 0 4px rgba(196, 93, 138, 0.45);
}

.eps-pointer-spark--x {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.eps-pointer-spark--x::before,
.eps-pointer-spark--x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 1.6px;
  border-radius: 1px;
  background: linear-gradient(90deg, #f3c4d4, #c45d8a 55%, #e8a0bc);
  box-shadow: 0 0 5px rgba(196, 93, 138, 0.55);
}

.eps-pointer-spark--x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.eps-pointer-spark--x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.eps-pointer-spark--x-sm {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
}

.eps-pointer-spark--x-sm::before,
.eps-pointer-spark--x-sm::after {
  width: 5px;
  height: 1.2px;
}

.eps-pointer-spark.is-on {
  animation: eps-spark-flake 0.95s ease-out forwards;
}

.eps-pointer-spark--x.is-on {
  animation: eps-spark-flake-x 1.05s ease-out forwards;
}

@keyframes eps-spark-flake {
  0% {
    opacity: 0.95;
    transform: translate3d(var(--sx), var(--sy), 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--ex), var(--ey), 0) scale(0.2);
  }
}

@keyframes eps-spark-flake-x {
  0% {
    opacity: 0.95;
    transform: translate3d(var(--sx), var(--sy), 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--ex), var(--ey), 0) rotate(140deg) scale(0.25);
  }
}

@media (hover: none), (pointer: coarse) {
  .eps-pointer-sparks {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-pointer-sparks {
    display: none !important;
  }
}

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

a {
  color: var(--eps-plum);
  text-decoration: none;
  transition: color 0.25s var(--eps-ease), opacity 0.25s var(--eps-ease);
}

a:hover {
  color: var(--eps-mauve);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eps-skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--eps-plum);
  color: #fff;
  transform: translateY(-120%);
  transition: transform 0.15s ease;
}

.eps-skip-link:focus,
.eps-skip-link:focus-visible {
  transform: translateY(1rem);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.eps-container {
  width: min(100% - 2.5rem, var(--eps-container));
  margin-inline: auto;
}

/* ---------- Buttons (luxury, no lift) ---------- */
.eps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
  min-height: 0;
  padding: 0.55rem 1.35rem;
  border-radius: var(--eps-radius-pill);
  font-family: var(--eps-font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: none;
  transition:
    background 0.4s var(--eps-ease),
    background-color 0.4s var(--eps-ease),
    color 0.35s var(--eps-ease),
    border-color 0.35s var(--eps-ease),
    box-shadow 0.4s var(--eps-ease);
  text-decoration: none !important;
  white-space: nowrap;
}

.eps-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--eps-ease);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.eps-btn:hover::before {
  transform: translateX(120%);
}

.eps-btn__icon {
  display: inline-flex;
  line-height: 0;
  transition: color 0.35s var(--eps-ease), opacity 0.3s ease;
}

/* Outline by default ? fill on hover ? 2px border always (no size jump) */
.eps-btn--primary,
.eps-btn--lux {
  background: transparent;
  color: var(--eps-plum) !important;
  border-color: var(--eps-plum);
  box-shadow: none;
}

/* Solid plum CTA (print header / hero) */
.eps-btn--solid {
  background: #3d2131;
  color: #fff !important;
  border-color: #3d2131;
  box-shadow: 0 10px 24px rgba(61, 33, 49, 0.2);
  border-radius: 14px;
  padding: 0.72rem 1.45rem;
  font-size: 0.92rem;
}

.eps-btn--solid::before {
  display: none;
}

.eps-btn--solid:hover,
.eps-btn--solid:focus {
  background: #523044;
  border-color: #523044;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(61, 33, 49, 0.28);
  transform: translateY(-1px);
}

.eps-btn--solid:active {
  background: #2f1826;
  border-color: #2f1826;
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(61, 33, 49, 0.2);
}

.eps-btn--solid .eps-btn__icon {
  color: #fff;
}

.eps-btn:hover,
.eps-btn:focus,
.eps-btn:active {
  letter-spacing: 0.04em;
  filter: none;
}

.eps-btn:not(.eps-btn--solid):hover,
.eps-btn:not(.eps-btn--solid):focus,
.eps-btn:not(.eps-btn--solid):active {
  transform: none;
}

.eps-btn--primary:hover,
.eps-btn--lux:hover {
  background: linear-gradient(135deg, #5a3358 0%, var(--eps-plum) 45%, #3a1f3a 100%);
  color: var(--eps-cream) !important;
  border-color: var(--eps-plum);
  box-shadow: none;
}

.eps-btn--primary:hover::before,
.eps-btn--lux:hover::before {
  opacity: 1;
}

.eps-btn--primary:active,
.eps-btn--lux:active {
  background: var(--eps-plum-deep);
  color: var(--eps-cream) !important;
  border-color: var(--eps-plum-deep);
  box-shadow: none;
}

.eps-btn--ghost {
  background: transparent;
  color: var(--eps-plum) !important;
  border-color: var(--eps-mauve);
  box-shadow: none;
}

.eps-btn--ghost:hover {
  background: linear-gradient(135deg, #5a3358 0%, var(--eps-plum) 45%, #3a1f3a 100%);
  border-color: var(--eps-plum);
  color: var(--eps-cream) !important;
  box-shadow: none;
}

.eps-btn--ghost:hover::before {
  opacity: 1;
}

.eps-btn--light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.eps-btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--eps-plum) !important;
  box-shadow: none;
}

.eps-btn--light:hover::before {
  opacity: 1;
}

/* Chrome entrance — CSS-only so header never stays invisible if JS is late/blocked */
@keyframes eps-chrome-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Top bar ---------- */
.eps-topbar {
  position: relative;
  z-index: 100;
  background: #3f1c34;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  min-height: var(--eps-topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
  animation: eps-chrome-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.eps-ready .eps-topbar {
  opacity: 1;
  transform: none;
}

.eps-topbar__inner {
  display: flex;
  align-items: center;
  width: min(100% - 2.5rem, var(--eps-container));
  margin-inline: auto;
  padding: 0.42rem 0;
}

.eps-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eps-topbar__row > li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.eps-topbar__row > li:not(:last-child)::after {
  content: none;
  display: none;
}

.eps-topbar__row svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.eps-topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.eps-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff !important;
  font-weight: 500;
  text-decoration: none !important;
}

.eps-topbar__link:hover {
  opacity: 0.85;
}

.eps-social{display:inline-flex;align-items:center;gap:.35rem;list-style:none;margin:0;padding:0}.eps-social__link{display:inline-flex;align-items:center;gap:.35rem;color:inherit;text-decoration:none!important;transition:opacity .2s var(--eps-ease),transform .2s var(--eps-ease)}.eps-social__link:hover{opacity:.85}.eps-social__link svg{flex-shrink:0;display:block}.eps-social--topbar .eps-social__link{color:#fff!important;font-size:.78rem;font-weight:500}.eps-social--topbar svg{width:14px;height:14px}.eps-social--topbar .eps-social__text{display:none}@media (min-width:900px){.eps-social--topbar .eps-social__text{display:inline}}.eps-topbar__item--social{margin-left:auto}.eps-social--footer{margin-top:.65rem;gap:.45rem}.eps-social--footer .eps-social__link{width:2.1rem;height:2.1rem;border-radius:999px;justify-content:center;background:rgba(193,141,162,.14);color:#4e2a4e!important}.eps-social--footer .eps-social__link:hover{background:rgba(196,93,138,.18);color:#c45d8a!important;transform:translateY(-1px)}.eps-social--footer svg{width:16px;height:16px}.eps-social--footer .eps-social__text{display:none}.eps-contact-channel--facebook .eps-contact-channel__icon,.eps-contact-channel--instagram .eps-contact-channel__icon{background:rgba(193,141,162,.16);color:var(--eps-plum)}.eps-contact-channel--facebook .eps-contact-channel__icon svg,.eps-contact-channel--instagram .eps-contact-channel__icon svg{width:18px;height:18px}

.eps-topbar__trust {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.eps-topbar__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.eps-topbar__trust svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.eps-topbar__trust-short,
.eps-topbar__conf-short {
  display: none;
}

.eps-topbar__note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.86);
}

.eps-topbar__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.eps-topbar__pill-short {
  display: none;
}

.eps-topbar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.eps-topbar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(240, 208, 220, 0.9);
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.eps-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: auto;
  min-height: 0;
  display: block;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eps-header--float {
  top: 0.4rem;
  width: min(94%, var(--eps-header-wide, 1360px));
  max-width: min(94%, var(--eps-header-wide, 1360px));
  margin: 0.4rem auto 0.25rem;
  padding: 0;
  opacity: 1;
  transform: none;
  animation: eps-chrome-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

html.eps-ready .eps-header--float {
  opacity: 1;
  transform: none;
}

/* Keep float header centered; shrink so siderail never sits under it */
@media (min-width: 1180px) {
  .eps-header--float:not(.is-nav-open) {
    width: min(94%, calc(100vw - 9.2rem), var(--eps-header-wide, 1360px));
    max-width: min(94%, calc(100vw - 9.2rem), var(--eps-header-wide, 1360px));
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 719px) {
  .eps-header--float {
    top: 2px;
    width: min(94%, var(--eps-header-wide, 1360px));
    max-width: min(94%, var(--eps-header-wide, 1360px));
    margin: 2px auto 0.2rem;
  }

  .admin-bar .eps-header--float {
    top: calc(46px + 2px);
  }
}

.eps-header__shell {
  --eps-mx: 50%;
  --eps-my: 50%;
  --eps-shell-radius: 18px;
  --eps-shell-border: 1px;
  position: relative;
  height: var(--eps-header-h);
  display: flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: var(--eps-shell-radius);
  background: rgba(255, 252, 250, 0.88);
  border: var(--eps-shell-border) solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 28px rgba(78, 42, 78, 0.1);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  transition:
    height 0.35s var(--eps-ease),
    padding 0.35s var(--eps-ease),
    background 0.35s var(--eps-ease),
    box-shadow 0.35s var(--eps-ease),
    border-radius 0.35s var(--eps-ease),
    border-color 0.35s var(--eps-ease);
  overflow: visible;
}

/* Mouse-follow contour on sticky header (no scale-up) */
.eps-header__shell::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    140px circle at var(--eps-mx) var(--eps-my),
    rgba(193, 141, 162, 0.95),
    rgba(78, 42, 78, 0.35) 38%,
    transparent 68%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--eps-ease);
  z-index: 5;
}

.eps-logo--lg .eps-logo__name {
  font-size: 1.75rem;
}

.eps-logo--lg .eps-logo__tag {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.eps-logo__img,
.eps-logo--lg img:not(.eps-logo__mark-img) {
  width: 72px;
  height: 72px;
  max-height: 72px;
  object-fit: contain;
}

.eps-logo--wordmark .eps-logo__img,
.eps-logo--wordmark .eps-logo__img--wordmark,
.eps-logo--lg.eps-logo--wordmark img,
.eps-logo--custom.eps-logo--lg.eps-logo--wordmark img,
.eps-logo--custom.eps-logo--lg.eps-logo--wordmark .custom-logo {
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.eps-header .eps-logo--wordmark {
  min-width: 0;
  max-width: 100%;
}

.eps-header .eps-logo--wordmark picture {
  display: block;
  min-width: 0;
  max-width: 100%;
}

.eps-header .eps-logo--wordmark img,
.eps-header .eps-logo--wordmark .custom-logo {
  mix-blend-mode: normal;
  opacity: 1;
  background: transparent;
  max-width: 100%;
}

.eps-logo--footer.eps-logo--wordmark .eps-logo__img--wordmark {
  max-height: 48px;
  max-width: min(220px, 68vw);
}

.eps-logo--custom.eps-logo--lg img,
.eps-logo--custom.eps-logo--lg .custom-logo {
  max-height: 72px;
  width: auto;
}

/* ---------- Hero FULL WIDTH (photo + text overlay) ---------- */
.eps-hero--full {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 0;
  margin: 0;
}

.eps-hero__full-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eps-hero__full-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--eps-ease);
}

.eps-hero__full-slide.is-active {
  opacity: 1;
}

.eps-hero__full-media,
.eps-hero__full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.eps-hero__full-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 22, 42, 0.82) 0%, rgba(42, 22, 42, 0.55) 42%, rgba(42, 22, 42, 0.22) 72%, rgba(42, 22, 42, 0.12) 100%),
    linear-gradient(180deg, rgba(42, 22, 42, 0.2) 0%, rgba(42, 22, 42, 0.45) 100%);
}

.eps-hero__full-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6.5rem;
}

.eps-hero__full-content {
  max-width: 36rem;
  animation: eps-rise 0.9s var(--eps-ease) both;
}

.eps-hero__full-title {
  margin: 0 0 1rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  max-width: 15ch;
}

.eps-hero__full-title .eps-hero__accent {
  color: #f0d0dc;
  font-style: italic;
}

.eps-hero__full-text {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 40ch;
}

.eps-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.88);
}

.eps-eyebrow__sep--light {
  background: rgba(240, 208, 220, 0.95);
}

.eps-proof--on-dark .eps-proof__text {
  color: rgba(255, 255, 255, 0.82);
}

.eps-proof--on-dark .eps-proof__avatar {
  border-color: rgba(255, 255, 255, 0.85);
}

.eps-hero__full-nav {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--eps-container)) / 2));
  bottom: 1.6rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eps-hero__full-nav .eps-slider__dot {
  background: rgba(255, 255, 255, 0.4);
}

.eps-hero__full-nav .eps-slider__dot.is-active {
  background: #fff;
}

/* ---------- Hero professional (split + arch slider) ? kept for reverse ---------- */
.eps-hero--pro {
  position: relative;
  padding: 1.85rem 0 2.6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 8% 18%, rgba(193, 141, 162, 0.1), transparent 58%),
    radial-gradient(ellipse 45% 40% at 92% 22%, rgba(193, 141, 162, 0.09), transparent 55%),
    linear-gradient(180deg, #fdf8f5 0%, #faf6f4 58%, #f7f1ed 100%);
}

/* Print hero ? 100% mockup: full-bleed photo, text over soft left veil */
.eps-hero--print {
  --eps-hero-bg: #f3ebe3;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  background: var(--eps-hero-bg);
  /* Pull under floating glass header so photo sits behind it */
  margin-top: calc(-1 * (var(--eps-header-h) + 1.05rem));
}

.eps-hero--print.eps-hero--slider .eps-hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2400 / 1090;
  min-height: 0;
  max-height: none;
  height: auto;
  overflow: hidden;
  background: var(--eps-hero-bg);
}

.eps-hero--print .eps-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: none;
}

.eps-hero--print .eps-hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.eps-hero--print .eps-hero__slide.is-leave {
  position: absolute;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
}

/* FULL-BLEED photo ? entire stage */
.eps-hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transform: none;
  filter: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.eps-hero--print .eps-hero__slide.is-active .eps-hero__visual {
  opacity: 1;
  transform: none;
  filter: none;
}

.eps-hero--print .eps-hero__slide.is-leave .eps-hero__visual {
  opacity: 0;
  transform: none;
  filter: none;
  transition-duration: 0.45s;
}

.eps-hero__visual picture,
.eps-hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.eps-hero__visual-img {
  object-fit: cover;
  object-position: 76% 45%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: none;
  filter: none;
  animation: none;
}

.eps-hero__visual-img--chair,
.eps-hero__visual-img--desk {
  object-position: 76% 45%;
}

.eps-hero--print .eps-hero__slide.is-active .eps-hero__visual-img {
  animation: none;
  transform: none;
  filter: none;
  object-position: 76% 45%;
}

/* Soft left wash ? photo still reads through (exact print) */
.eps-hero__visual-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      #f3ebe3 0%,
      rgba(243, 235, 227, 0.96) 16%,
      rgba(243, 235, 227, 0.82) 30%,
      rgba(243, 235, 227, 0.42) 44%,
      rgba(243, 235, 227, 0.12) 56%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(243, 235, 227, 0.28) 0%,
      transparent 22%,
      transparent 72%,
      rgba(243, 235, 227, 0.2) 100%
    );
}

.eps-hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: calc(var(--eps-header-h) + 2.4rem) 0 4.75rem;
}

.eps-hero__copy {
  max-width: 36rem;
}

.eps-hero--print .eps-hero__copy > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  filter: none;
}

.eps-hero--print .eps-hero__slide.is-active .eps-hero__copy > * {
  animation: eps-print-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eps-hero--print .eps-hero__slide.is-active .eps-hero__copy > *:nth-child(1) { animation-delay: 0.12s; }
.eps-hero--print .eps-hero__slide.is-active .eps-hero__copy > *:nth-child(2) { animation-delay: 0.2s; }
.eps-hero--print .eps-hero__slide.is-active .eps-hero__copy > *:nth-child(3) { animation-delay: 0.28s; }
.eps-hero--print .eps-hero__slide.is-active .eps-hero__copy > *:nth-child(4) { animation-delay: 0.36s; }

.eps-hero--print .eps-hero__slide.is-leave .eps-hero__copy > * {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  filter: none;
  transition: opacity 0.35s ease, transform 0.4s ease;
}

@keyframes eps-print-rise {
  from { opacity: 0; transform: translate3d(0, 14px, 0); filter: none; }
  to { opacity: 1; transform: none; filter: none; }
}

/* Print badge: outlined GRATUIT + dusty rose meta */
.eps-hero__badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  margin: 0 0 1.05rem;
  padding: 0;
  color: #2f1a28;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eps-hero__badge-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 0.34rem 0.78rem;
  border-radius: 999px;
  color: #3f1c34;
  border: 1px solid rgba(193, 141, 162, 0.55);
  background: linear-gradient(
    120deg,
    #fff9f5 0%,
    #f6e4ec 28%,
    #fff7fb 55%,
    #e9d2de 78%,
    #fff9f5 100%
  );
  background-size: 280% 280%;
  animation: eps-badge-shimmer 5.5s ease-in-out infinite;
  box-shadow:
    0 6px 16px rgba(78, 42, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.eps-hero__badge-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.75) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: eps-badge-sheen 3.8s ease-in-out infinite;
  pointer-events: none;
}

.eps-hero__badge-meta {
  color: #a67c7c;
  font-weight: 600;
}

.eps-hero__pills {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow: 0 10px 28px rgba(78, 42, 78, 0.06);
  color: rgba(78, 42, 78, 0.68);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.eps-hero__pills span:not(:last-child)::after {
  content: "?";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.eps-hero--print .eps-hero__title {
  color: #2f1a28;
  max-width: 22ch;
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-family: var(--eps-font-display);
}

.eps-hero--print .eps-hero__accent {
  color: #6b3558;
  font-style: italic;
  font-weight: 600;
}

.eps-hero--print .eps-hero__text {
  color: rgba(60, 42, 58, 0.78);
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.62;
  margin: 0 0 1.45rem;
}

.eps-hero--print .eps-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
}

.eps-hero--print .eps-btn {
  border-radius: 12px;
  min-height: 2.95rem;
  padding-inline: 1.2rem;
}

.eps-hero--print .eps-btn--ghost {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(63, 28, 52, 0.45);
  color: #3f1c34 !important;
  backdrop-filter: none;
}

.eps-hero--print .eps-btn--ghost:hover,
.eps-hero--print .eps-btn--ghost:focus {
  background: #3d2131 !important;
  border-color: #3d2131;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(61, 33, 49, 0.22);
}

.eps-hero--print .eps-btn--ghost::before {
  display: none;
}

.eps-hero__trust {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.6rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 1.35rem 2.25rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

html.eps-ready .eps-hero__trust {
  opacity: 1;
  transform: none;
}

.eps-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #3d2131;
}

.eps-hero__trust-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  flex-shrink: 0;
  border-radius: 50%;
  color: #7a4a62;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow: 0 8px 20px rgba(78, 42, 78, 0.08);
  backdrop-filter: blur(10px);
}

.eps-hero__trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.2;
}

.eps-hero__trust-item small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.8rem;
  color: rgba(78, 42, 78, 0.62);
}

.eps-hero__controls {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.eps-hero__controls--print {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(78, 42, 78, 0.08);
  box-shadow: 0 12px 28px rgba(78, 42, 78, 0.12);
  backdrop-filter: blur(14px);
}

.eps-hero__arrow {
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 999px;
  background: rgba(78, 42, 78, 0.06);
  color: var(--eps-plum);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--eps-ease), color 0.25s var(--eps-ease);
}

.eps-hero__arrow:hover {
  background: var(--eps-plum);
  color: #fff;
}

.eps-hero--slider .eps-slider__dot,
.eps-hero__controls--print .eps-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(78, 42, 78, 0.22);
  cursor: pointer;
  transition: width 0.3s var(--eps-ease), background 0.3s var(--eps-ease);
}

.eps-hero--slider .eps-slider__dot.is-active,
.eps-hero__controls--print .eps-slider__dot.is-active {
  width: 1.55rem;
  background: var(--eps-plum);
}

.eps-hero__portrait--wide { aspect-ratio: 16 / 11; }

.eps-hero__bullets {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.eps-hero__bullets li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--eps-muted);
  font-weight: 500;
}

.eps-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--eps-mauve);
}

.eps-eyebrow--free { gap: 0.55rem; }

.eps-hero__free-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(78, 42, 78, 0.08);
  color: var(--eps-plum);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(193, 141, 162, 0.35);
}

/* Frosted glass — readable over page content (not see-through) */
body.home .eps-header--float .eps-header__shell,
.eps-header--float .eps-header__shell {
  --eps-shell-radius: 22px;
  background: rgba(255, 252, 250, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px rgba(61, 33, 49, 0.12);
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
  border-radius: var(--eps-shell-radius);
}

body.home .eps-header--float.is-scrolled .eps-header__shell,
.eps-header--float.is-scrolled .eps-header__shell {
  background: rgba(255, 252, 250, 0.92);
  border-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 40px rgba(61, 33, 49, 0.14);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  body.home .eps-header--float .eps-header__shell,
  .eps-header--float .eps-header__shell,
  body.home .eps-header--float.is-scrolled .eps-header__shell,
  .eps-header--float.is-scrolled .eps-header__shell,
  .eps-header.is-scrolled .eps-header__shell {
    background: rgba(255, 250, 247, 0.97);
  }
}

/* Glass over dark stages: keep frost, flip chrome to cream */
.eps-header--float.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-header__shell {
  background: rgba(28, 12, 34, 0.78);
  border-color: rgba(255, 248, 251, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 16px 42px rgba(8, 2, 14, 0.4);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
}

.eps-header--float.is-over-dark.is-scrolled:not(.is-mega-open):not(.is-nav-open) .eps-header__shell {
  background: rgba(28, 12, 34, 0.88);
  border-color: rgba(255, 248, 251, 0.34);
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-logo img,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-logo .custom-logo {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__list > li > a,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__mega-trigger {
  color: #fff8fb;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__list > li > a:hover,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__list > li > a:focus-visible,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__list .current-menu-item > a,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__mega-trigger:hover,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__mega-trigger[aria-expanded="true"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav__list > li > a::after {
  background: linear-gradient(90deg, transparent, rgba(240, 180, 203, 0.95), transparent);
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-lang__list {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 248, 251, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-lang__btn {
  color: rgba(255, 248, 251, 0.82) !important;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-lang__btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-lang__btn.is-active {
  background: rgba(255, 248, 251, 0.94);
  color: #3a1f3a !important;
  box-shadow: 0 6px 14px rgba(8, 2, 14, 0.22);
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-lang__btn.is-active:hover {
  background: #fff;
  color: #3a1f3a !important;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-header__cta.eps-btn--solid {
  background: rgba(255, 248, 251, 0.1);
  border-color: rgba(255, 248, 251, 0.78);
  color: #fff !important;
  box-shadow: none;
}

.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-header__cta.eps-btn--solid:hover {
  background: rgba(255, 248, 251, 0.18);
  border-color: #fff;
  color: #fff !important;
}

/* Hamburger: cream chip + plum bars on light or dark glass — never white-on-white */
.eps-header:not(.is-nav-open) .eps-nav-toggle,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav-toggle {
  background: #fffaf8;
  border: 1px solid rgba(78, 42, 78, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 12px rgba(61, 33, 49, 0.12);
  opacity: 1;
  visibility: visible;
  color: #4e2a4e;
  filter: none;
}

.eps-header .eps-nav-toggle__bar,
.eps-header.is-over-dark:not(.is-mega-open):not(.is-nav-open) .eps-nav-toggle__bar {
  background: #4e2a4e !important;
}

/* Admin bar clearance for sticky float header */
.admin-bar .eps-header--float {
  top: calc(32px + 0.4rem);
}

@media screen and (max-width: 782px) {
  .admin-bar .eps-header--float {
    top: calc(46px + 0.35rem);
  }
}

@media screen and (max-width: 719px) {
  .admin-bar .eps-header--float {
    top: calc(46px + 2px);
  }
}

@media (max-width: 980px) {
  .eps-hero--print {
    margin-top: 0;
  }

  .eps-hero--print.eps-hero--slider .eps-hero__stage {
    min-height: 0;
  }

  /* Home overrides this ? keep generic pages from breaking */
  body:not(.home):not(.frontpage) .eps-hero__visual {
    position: relative;
    height: clamp(240px, 48vw, 340px);
    opacity: 1;
    transform: none;
    filter: none;
  }

  .eps-hero--print .eps-hero__slide.is-active .eps-hero__visual,
  .eps-hero--print .eps-hero__slide.is-leave .eps-hero__visual {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body:not(.home):not(.frontpage) .eps-hero__visual-fade {
    background: linear-gradient(180deg, transparent 30%, rgba(245, 239, 233, 0.55) 68%, var(--eps-hero-bg) 100%);
  }

  body:not(.home):not(.frontpage) .eps-hero--print .eps-hero__slide {
    display: flex;
    flex-direction: column;
  }

  body:not(.home):not(.frontpage) .eps-hero__layout {
    min-height: auto;
    padding: 1rem 0 8.5rem;
  }

  body:not(.home):not(.frontpage) .eps-hero__copy { max-width: 100%; padding: 0; }

  body:not(.home):not(.frontpage) .eps-hero--print .eps-hero__title {
    max-width: 16ch;
    font-size: clamp(1.95rem, 7.2vw, 2.6rem);
  }

  .eps-hero__trust {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    bottom: 3.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-hero__visual,
  .eps-hero--print .eps-hero__slide.is-active .eps-hero__visual,
  .eps-hero--print .eps-hero__slide.is-leave .eps-hero__visual,
  .eps-hero--print .eps-hero__slide.is-active .eps-hero__copy > *,
  .eps-hero--print .eps-hero__slide.is-leave .eps-hero__copy > *,
  .eps-hero__trust,
  html.eps-ready .eps-hero__trust {
    transition: none !important;
    animation: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


.eps-hero__botanical {
  position: absolute;
  top: 4%;
  width: min(280px, 34vw);
  height: min(420px, 56vh);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-repeat: no-repeat;
  background-size: contain;
  animation: eps-flora-sway 12s ease-in-out infinite;
  transform-origin: bottom center;
  filter: drop-shadow(0 8px 18px rgba(193, 141, 162, 0.18));
}

.eps-hero__botanical--left {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 320' fill='none'%3E%3Cpath d='M48 300c18-70 8-125 32-185 16-40 48-68 78-88' stroke='%23c18da2' stroke-width='1.15'/%3E%3Cpath d='M92 95c-26 10-44 34-48 58' stroke='%23c18da2' stroke-width='1.05'/%3E%3Cpath d='M108 128c22-8 42-4 60 14' stroke='%23c18da2' stroke-width='1.05'/%3E%3Cpath d='M86 168c-24 8-40 26-44 48' stroke='%23c18da2' stroke-width='1.05'/%3E%3Cpath d='M102 205c20-5 38 4 52 20' stroke='%23c18da2' stroke-width='1.05'/%3E%3Cpath d='M118 52c4-10 14-16 24-16-2 12-10 22-22 26-4-4-4-8-2-10z' fill='%23c18da2' opacity='.22'/%3E%3Cpath d='M138 48c8-8 20-10 28-4-6 10-16 16-28 16 0-4 0-8 0-12z' fill='%23c18da2' opacity='.18'/%3E%3Cpath d='M128 68c10-2 18 4 22 12-10 4-20 4-28-2 2-4 4-8 6-10z' fill='%23c18da2' opacity='.2'/%3E%3Ccircle cx='132' cy='58' r='3.2' fill='%234e2a4e' opacity='.28'/%3E%3Cpath d='M70 210c8-10 20-12 28-6-4 12-14 18-28 16 0-4 0-7 0-10z' fill='%23c18da2' opacity='.16'/%3E%3C/svg%3E");
  background-position: left top;
}

.eps-hero__botanical--right {
  display: block;
  right: 0;
  top: 10%;
  animation-name: eps-flora-sway-flip;
  animation-delay: -4s;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 320' fill='none'%3E%3Cpath d='M48 300c18-70 8-125 32-185 16-40 48-68 78-88' stroke='%23c18da2' stroke-width='1.15'/%3E%3Cpath d='M118 52c4-10 14-16 24-16-2 12-10 22-22 26-4-4-4-8-2-10z' fill='%23c18da2' opacity='.2'/%3E%3Cpath d='M138 48c8-8 20-10 28-4-6 10-16 16-28 16 0-4 0-8 0-12z' fill='%23c18da2' opacity='.16'/%3E%3Ccircle cx='132' cy='58' r='3' fill='%234e2a4e' opacity='.25'/%3E%3Cpath d='M86 168c-24 8-40 26-44 48' stroke='%23c18da2' stroke-width='1.05'/%3E%3C/svg%3E");
  background-position: right top;
}

.eps-hero__flora--a,
.eps-hero__flora--b,
.eps-hero__flora--c,
.eps-hero__flora--d {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.32;
  animation: eps-flora-drift 14s ease-in-out infinite;
  will-change: transform, opacity;
}

.eps-hero__flora--a {
  left: 36%;
  top: 5%;
  width: 78px;
  height: 78px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M32 10c6 8 8 14 8 20s-2 12-8 20c-6-8-8-14-8-20s2-12 8-20z' fill='%23c18da2' opacity='.35'/%3E%3Cpath d='M10 32c8-6 14-8 20-8s12 2 20 8c-8 6-14 8-20 8s-12-2-20-8z' fill='%23c18da2' opacity='.28'/%3E%3Ccircle cx='32' cy='32' r='5' fill='%234e2a4e' opacity='.22'/%3E%3C/svg%3E");
  animation-delay: -2s;
}

.eps-hero__flora--b {
  right: 34%;
  bottom: 16%;
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M32 12c5 7 7 12 7 18s-2 11-7 18c-5-7-7-12-7-18s2-11 7-18z' fill='%23c18da2' opacity='.3'/%3E%3Cpath d='M12 32c7-5 12-7 18-7s11 2 18 7c-7 5-12 7-18 7s-11-2-18-7z' fill='%23c18da2' opacity='.24'/%3E%3Ccircle cx='32' cy='32' r='4' fill='%234e2a4e' opacity='.2'/%3E%3C/svg%3E");
  animation-delay: -6s;
}

.eps-hero__flora--c {
  left: 8%;
  bottom: 22%;
  width: 48px;
  height: 48px;
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M32 8c4 10 6 18 6 24s-2 14-6 24c-4-10-6-18-6-24s2-14 6-24z' fill='%23c18da2' opacity='.34'/%3E%3Ccircle cx='32' cy='32' r='4' fill='%234e2a4e' opacity='.2'/%3E%3C/svg%3E");
  animation-delay: -4s;
  animation-duration: 11s;
}

.eps-hero__flora--d {
  right: 10%;
  top: 28%;
  width: 42px;
  height: 42px;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M20 40c8-14 16-22 28-28-2 14-8 24-20 34-4-2-6-4-8-6z' fill='%23c18da2' opacity='.32'/%3E%3C/svg%3E");
  animation-delay: -8s;
  animation-duration: 16s;
}

@keyframes eps-flora-sway {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}

@keyframes eps-flora-sway-flip {
  0%, 100% { transform: scaleX(-1) rotate(-2deg) translateY(0); }
  50% { transform: scaleX(-1) rotate(3deg) translateY(-10px); }
}

@keyframes eps-flora-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); opacity: 0.28; }
  33% { transform: translate3d(8px, -12px, 0) rotate(12deg) scale(1.06); opacity: 0.4; }
  66% { transform: translate3d(-6px, 8px, 0) rotate(-8deg) scale(0.96); opacity: 0.32; }
}

.eps-eyebrow--pro {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0 0 0.75rem;
  color: var(--eps-mauve);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eps-eyebrow__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--eps-mauve);
  opacity: 0.75;
}

.eps-hero--pro .eps-hero__title {
  max-width: 16ch;
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  margin-bottom: 0.85rem;
  animation: eps-rise 0.55s var(--eps-ease) both;
}

.eps-hero--pro .eps-hero__accent {
  font-family: var(--eps-font-display);
  font-style: italic;
  font-weight: 500;
  color: #b07d85;
}

.eps-hero--pro .eps-hero__text {
  margin-bottom: 1.25rem;
  max-width: 40ch;
  font-size: 1rem;
  animation: eps-rise 0.6s var(--eps-ease) 0.04s both;
}

.eps-hero--pro .eps-hero__actions {
  align-items: center;
  margin-bottom: 1rem;
  animation: eps-rise 0.65s var(--eps-ease) 0.08s both;
}

.eps-hero__link {
  color: var(--eps-plum) !important;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(78, 42, 78, 0.35);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s var(--eps-ease), color 0.2s var(--eps-ease);
}

.eps-hero__link:hover {
  border-bottom-color: var(--eps-plum);
  color: var(--eps-mauve) !important;
}

.eps-hero__avail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.48rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--eps-plum);
  line-height: 1.35;
  animation: eps-rise 0.7s var(--eps-ease) 0.1s both;
}

.eps-hero__avail-icon {
  display: inline-flex;
  color: var(--eps-mauve);
  flex-shrink: 0;
}

.eps-hero--pro .eps-hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 620px);
  animation: eps-rise 0.65s var(--eps-ease) 0.06s both;
}

.eps-hero--slider .eps-hero__slide:first-child .eps-hero__media {
  width: min(100%, 640px);
}

.eps-hero__portrait {
  position: relative;
  border-radius: 26px;
  overflow: visible;
  aspect-ratio: 5 / 4.6;
  background: linear-gradient(160deg, var(--eps-mauve-soft), #f7f0ec 40%, #e4d0d8);
  box-shadow:
    0 0 0 8px rgba(245, 228, 210, 0.45),
    0 0 36px rgba(220, 180, 140, 0.22),
    0 22px 48px rgba(78, 42, 78, 0.1);
}

.eps-hero__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(250, 246, 244, 0.18) 100%);
  opacity: 0.7;
}

.eps-hero__ray {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  z-index: 4;
  pointer-events: none;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 220deg,
    rgba(255, 255, 255, 0.12) 240deg,
    rgba(255, 245, 230, 0.95) 268deg,
    rgba(193, 141, 162, 0.95) 285deg,
    rgba(255, 255, 255, 0.55) 300deg,
    transparent 325deg 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: eps-ray-spin 4.8s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 230, 210, 0.55));
}

@keyframes eps-ray-spin {
  to { transform: rotate(360deg); }
}

.eps-hero__portrait picture,
.eps-hero__portrait > img {
  border-radius: inherit;
  overflow: hidden;
}

.eps-hero__portrait picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.eps-hero__portrait picture,
.eps-hero__portrait img,
.eps-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  filter: brightness(1.02) contrast(1.02) saturate(1.08);
  transform: none;
}

.eps-hero--slider .eps-hero__slide:first-child .eps-hero__img {
  object-position: center 32%;
  filter: brightness(1.03) contrast(1.03) saturate(1.14);
}

.eps-hero__sparkle {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  z-index: 2;
  width: 14px;
  height: 14px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    conic-gradient(from 0deg, transparent 0 20%, rgba(255, 245, 230, 0.85) 50%, transparent 80%);
  filter: drop-shadow(0 0 4px rgba(255, 240, 220, 0.7));
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  animation: eps-sparkle 4.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.75;
}

@keyframes eps-sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1.05) rotate(12deg); }
}

.eps-hero__float {
  position: absolute;
  top: 1rem;
  right: -0.35rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  max-width: 11rem;
  padding: 0.7rem 0.85rem 0.65rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(78, 42, 78, 0.1);
  animation: eps-float 8s ease-in-out infinite;
}

.eps-hero__float-heart {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(193, 141, 162, 0.16);
  color: var(--eps-mauve);
}

.eps-hero__float-icon {
  color: var(--eps-mauve);
  font-size: 0.95rem;
  line-height: 1;
}

.eps-hero__float-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--eps-plum);
}

.eps-hero__float-line {
  display: block;
  width: 2.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--eps-mauve), transparent);
}

.eps-hero__float-leaf {
  display: inline-flex;
  color: var(--eps-mauve);
  opacity: 0.75;
  margin-top: 0.1rem;
}

/* Legacy arch/slider bits (kept for other templates) */
.eps-hero__arch {
  position: relative;
  border-radius: 999px 999px 28px 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  background: linear-gradient(160deg, var(--eps-mauve-soft), #f7f0ec 40%, #e4d0d8);
  box-shadow:
    0 28px 60px rgba(78, 42, 78, 0.14),
    0 0 0 12px rgba(255, 255, 255, 0.55);
}

.eps-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s var(--eps-ease);
}

.eps-hero__slide.is-active {
  opacity: 1;
}

.eps-hero__slide picture,
.eps-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.eps-hero__badge {
  position: absolute;
  right: -0.4rem;
  bottom: 18%;
  z-index: 3;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 34px rgba(78, 42, 78, 0.14);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--eps-plum);
  letter-spacing: 0.01em;
}

.eps-hero__badge-icon {
  display: block;
  color: var(--eps-mauve);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.eps-hero__slider-nav {
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(78, 42, 78, 0.1);
}

.eps-hero__slider-nav .eps-slider__dot {
  background: rgba(78, 42, 78, 0.22);
}

.eps-hero__slider-nav .eps-slider__dot.is-active {
  background: var(--eps-plum);
}

/* Legacy full-bleed slider (kept if used elsewhere) */
.eps-slider {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.eps-slider__track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eps-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--eps-ease);
}

.eps-slider__slide.is-active {
  opacity: 1;
}

.eps-slider__media,
.eps-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eps-slider__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(58, 31, 58, 0.78) 0%, rgba(58, 31, 58, 0.45) 48%, rgba(58, 31, 58, 0.2) 100%),
    linear-gradient(180deg, rgba(58, 31, 58, 0.15) 0%, rgba(58, 31, 58, 0.55) 100%);
}

.eps-slider__content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5.5rem;
  max-width: 640px;
  margin-left: max(1.25rem, calc((100% - var(--eps-container)) / 2));
  margin-right: auto;
  width: min(100% - 2.5rem, 640px);
  animation: eps-rise 0.9s var(--eps-ease) both;
}

.eps-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.85);
}

.eps-eyebrow--on-dark .eps-eyebrow__icon {
  color: var(--eps-mauve-soft);
}

.eps-slider__title {
  margin: 0 0 1rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  max-width: 14ch;
}

.eps-slider__title .eps-hero__accent {
  color: #f0d0dc;
}

.eps-slider__text {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 38ch;
  line-height: 1.7;
}

.eps-slider__proof {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.eps-slider__controls {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--eps-container)) / 2));
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eps-slider__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.eps-slider__btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.eps-slider__dots {
  display: flex;
  gap: 0.4rem;
}

.eps-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.eps-slider__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.eps-usp--overlap {
  margin-top: -2.75rem;
  position: relative;
  z-index: 4;
}

.eps-about__photo {
  display: block;
  border-radius: 48% 48% 28px 28px / 42% 42% 28px 28px;
  overflow: hidden;
  box-shadow: var(--eps-shadow);
  aspect-ratio: 4 / 5;
}

.eps-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* story variant overrides arch photo */
.eps-about--story .eps-about__photo {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}


.eps-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.eps-header.is-scrolled .eps-header__shell {
  height: var(--eps-header-h-scrolled);
  padding: 0.22rem 0.65rem;
  background: rgba(255, 252, 250, 0.92);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 12px 32px rgba(61, 33, 49, 0.12);
  backdrop-filter: blur(32px) saturate(1.28);
  -webkit-backdrop-filter: blur(32px) saturate(1.28);
}

.eps-header.is-scrolled .eps-logo--wordmark img,
.eps-header.is-scrolled .eps-logo--wordmark .custom-logo,
.eps-header.is-scrolled .eps-header__cta {
  transition:
    max-height 0.35s var(--eps-ease),
    max-width 0.35s var(--eps-ease),
    padding 0.35s var(--eps-ease),
    font-size 0.35s var(--eps-ease);
}

.eps-header.is-scrolled .eps-logo--wordmark img,
.eps-header.is-scrolled .eps-logo--wordmark .custom-logo {
  max-height: 42px;
  max-width: min(200px, 40vw);
}

.eps-header.is-scrolled .eps-header__cta {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

@media (hover: hover) and (pointer: fine) {
  .eps-header.is-scrolled .eps-header__shell:hover,
  .eps-header.is-scrolled .eps-header__shell.is-tracing {
    background: rgba(255, 252, 250, 0.96);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 14px 34px rgba(61, 33, 49, 0.14);
  }

  .eps-header.is-scrolled .eps-header__shell:hover::after,
  .eps-header.is-scrolled .eps-header__shell.is-tracing::after,
  .eps-header--float .eps-header__shell:hover::after,
  .eps-header--float .eps-header__shell.is-tracing::after,
  .eps-header--overlay .eps-header__shell:hover::after,
  .eps-header--overlay .eps-header__shell.is-tracing::after {
    opacity: 1;
  }
}

@keyframes eps-badge-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes eps-badge-sheen {
  0%, 35% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(120%); }
}

.eps-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  width: 100%;
  margin-inline: 0;
  max-width: none;
  /* Keep static so .eps-mega positions against .eps-header__shell */
}

.eps-header__tools {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.45rem;
  flex-shrink: 0;
  min-width: max-content;
}

.eps-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  min-width: 0;
}

/* Language switcher — professional RO / EN flags */
.eps-lang {
  position: relative;
  z-index: 2;
}

.eps-lang__list {
  list-style: none;
  margin: 0;
  padding: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(78, 42, 78, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eps-lang__item {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.eps-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  min-height: 1.85rem;
  padding: 0.3rem 0.55rem 0.3rem 0.34rem;
  border-radius: 999px;
  text-decoration: none !important;
  color: #6a5a60 !important;
  font-family: var(--eps-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.eps-lang__btn:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #2f1a28 !important;
}

.eps-lang__btn.is-active {
  background: #4e2a4e;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(78, 42, 78, 0.18);
}

.eps-lang__btn.is-active:hover {
  background: #3d203d;
  color: #fff !important;
}

.eps-lang__btn:focus-visible {
  outline: 2px solid #c45d8a;
  outline-offset: 2px;
}

.eps-lang__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  line-height: 0;
  box-shadow:
    0 0 0 1px rgba(47, 26, 40, 0.1),
    0 1px 2px rgba(47, 26, 40, 0.08);
  flex-shrink: 0;
}

.eps-lang__flag-svg {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.eps-lang__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4em;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.eps-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--eps-plum) !important;
  text-decoration: none !important;
}

.eps-logo img {
  max-height: 52px;
  width: auto;
}

.eps-logo--wordmark img,
.eps-logo .eps-logo__img--wordmark {
  max-height: 56px;
  width: auto;
  height: auto;
}

.eps-logo__mark {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--eps-plum);
  color: #fff;
  font-family: var(--eps-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(78, 42, 78, 0.18);
}

.eps-logo__mark-img {
  width: 54px;
  height: 54px;
  max-height: 54px !important;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.eps-logo--lg .eps-logo__mark {
  width: 52px;
  height: 52px;
  font-size: 1.12rem;
}

.eps-logo--lg .eps-logo__mark-img {
  width: 58px;
  height: 58px;
  max-height: 58px !important;
}

.eps-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.eps-logo__name {
  font-family: var(--eps-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eps-logo__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eps-mauve);
}

.eps-logo__tag::before,
.eps-logo__tag::after {
  content: "·";
  margin: 0 0.35em;
  opacity: 0.55;
}

.eps-nav__cta-mobile {
  display: none;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* Mobile-only nav chrome ? never paint on desktop */
.eps-nav__sheet-top,
.eps-nav__mobile-head,
.eps-nav__mobile-flora,
.eps-nav__mobile-contact,
.eps-nav__mobile-bloom,
.eps-nav__mobile-bloom-art,
.eps-nav__mobile-bloom-frame,
.eps-nav__mobile-bloom-photo,
.eps-nav__mobile-bloom-veil,
.eps-nav__mobile-bloom-text,
.eps-nav__mobile-bloom-flower,
.eps-nav__close,
.eps-nav__ico,
.eps-nav__list > li > a .eps-nav__chev {
  display: none !important;
}

.eps-nav {
  min-width: 0;
}

.eps-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.05rem 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.eps-nav__list > li {
  position: static;
  flex: 0 0 auto;
}

.eps-nav__list > li > a,
.eps-nav__mega-trigger {
  color: var(--eps-text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.62rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, padding 0.35s var(--eps-ease);
}

.eps-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--eps-mauve), transparent);
  transform: scaleX(0);
  transition: transform 0.35s var(--eps-ease);
}

.eps-nav__list > li > a:hover,
.eps-nav__list > li > a:focus-visible,
.eps-nav__list .current-menu-item > a,
.eps-nav__mega-trigger:hover,
.eps-nav__mega-trigger[aria-expanded="true"] {
  color: #3d2131;
  background: rgba(255, 255, 255, 0.45);
}

.eps-nav__list > li > a:hover::after,
.eps-nav__list > li > a:focus-visible::after,
.eps-nav__list .current-menu-item > a::after {
  transform: scaleX(1);
}

.eps-nav__caret {
  transition: transform 0.3s var(--eps-ease);
  opacity: 0.7;
  transform-origin: center;
}

.eps-nav__mega-trigger:hover .eps-nav__caret,
.eps-nav__mega-trigger:focus-visible .eps-nav__caret,
.eps-nav__mega-trigger[aria-expanded="true"] .eps-nav__caret,
.eps-nav__item--mega.is-open .eps-nav__caret {
  transform: rotate(90deg);
  opacity: 1;
}

/* Mega menu ? flush under header shell */
.eps-nav__item--mega {
  position: static;
}

.eps-mega {
  position: absolute;
  /* Match shell outer edge (shell border is removed when open) */
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  padding-top: 0;
  z-index: 1190;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
  filter: blur(3px);
  clip-path: inset(0 0 14% 0 round 0 0 var(--eps-shell-radius, 18px) var(--eps-shell-radius, 18px));
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.42s;
  will-change: opacity, transform, clip-path;
}

.eps-nav__item--mega.is-open .eps-mega,
.eps-mega:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 0 0 var(--eps-shell-radius, 18px) var(--eps-shell-radius, 18px));
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.eps-mega[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.eps-nav__item--mega.is-open .eps-mega[hidden] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.eps-mega__inner {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 0.85fr 1.8fr;
  gap: 1.5rem;
  padding: 1.5rem 1.6rem;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  /* Side borders via inset shadow so width stays flush with header */
  border: 0;
  border-radius: 0 0 var(--eps-shell-radius, 18px) var(--eps-shell-radius, 18px);
  box-shadow:
    inset 1px 0 0 rgba(78, 42, 78, 0.09),
    inset -1px 0 0 rgba(78, 42, 78, 0.09),
    inset 0 -1px 0 rgba(78, 42, 78, 0.09),
    0 22px 48px rgba(58, 31, 58, 0.14);
}

.eps-mega__inner--ultra {
  grid-template-columns: minmax(0, 7.4fr) minmax(220px, 2.6fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.55rem 0.7rem;
  padding: 0.7rem 0.8rem 0.8rem;
  max-height: min(72vh, 560px);
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 252, 253, 0.78) 0%, rgba(255, 248, 250, 0.64) 55%, rgba(250, 244, 247, 0.7) 100%);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  border-radius: 0 0 var(--eps-shell-radius, 18px) var(--eps-shell-radius, 18px);
  border: 0;
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.55),
    inset -1px 0 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(78, 42, 78, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 28px 56px rgba(58, 31, 58, 0.16);
}

.eps-mega__inner--ultra .eps-mega__intro {
  grid-column: 1 / -1;
  grid-row: 1;
  display: block;
  border-right: 0;
  border-bottom: 1px solid rgba(193, 141, 162, 0.22);
  padding: 0 0 0.55rem;
}

.eps-mega__inner--ultra .eps-mega__list a {
  padding: 0.18rem 0.25rem;
  font-size: 0.74rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 9px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.eps-mega__inner--ultra .eps-mega__list a:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--eps-plum) !important;
  transform: translateX(2px);
}

.eps-mega__intro-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.eps-mega__inner--ultra .eps-mega__eyebrow {
  margin: 0;
  font-size: 0.66rem;
}

.eps-mega__inner--ultra .eps-mega__title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.eps-mega__inner--ultra .eps-mega__text {
  margin: 0;
  font-size: 0.8rem;
  max-width: 48ch;
  line-height: 1.35;
}

.eps-mega__inner--ultra .eps-mega__cta {
  flex-shrink: 0;
  margin-left: auto;
  white-space: nowrap;
  background: transparent !important;
  color: var(--eps-plum) !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0.35rem 0.1rem 0.35rem 0;
}

.eps-mega__inner--ultra .eps-mega__cta:hover {
  background: transparent !important;
  border: 0 !important;
  color: #2a1223 !important;
  box-shadow: none !important;
  transform: none;
}

.eps-mega__footer {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-mega__footer .eps-mega__cta {
  margin-left: auto;
}

.eps-mega__cards {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  align-content: stretch;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}

.eps-mega-card {
  position: relative;
  display: block;
  min-height: 0;
  height: 100%;
  padding: 0;
  border-radius: 14px;
  background: #efe4dc;
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-decoration: none !important;
  color: inherit !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 8px 20px rgba(78, 42, 78, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s var(--eps-ease),
    box-shadow 0.28s var(--eps-ease),
    border-color 0.28s var(--eps-ease);
}

.eps-mega-card:hover {
  transform: translateY(-2px);
  border-color: rgba(193, 141, 162, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 16px 32px rgba(78, 42, 78, 0.16);
}

.eps-mega-card__media {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  background: #efe4dc;
  margin: 0;
}

.eps-mega-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s var(--eps-ease);
}

.eps-mega-card:hover .eps-mega-card__media img {
  transform: scale(1.08);
}

.eps-mega-card__badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 3;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  color: var(--eps-plum);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(193, 141, 162, 0.5);
  background: linear-gradient(
    120deg,
    #fff9f5 0%,
    #f6e4ec 28%,
    #fff7fb 55%,
    #e9d2de 78%,
    #fff9f5 100%
  );
  background-size: 280% 280%;
  animation: eps-badge-shimmer 5.5s ease-in-out infinite;
  box-shadow:
    0 4px 14px rgba(78, 42, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.eps-mega-card__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: eps-badge-sheen 3.8s ease-in-out infinite;
  pointer-events: none;
}

.eps-mega-card__body {
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.35rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  padding: 0.5rem 0.62rem 0.55rem;
  min-height: 0;
  border-radius: 12px;
  background:
    linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.46) 0%,
      rgba(255, 252, 253, 0.22) 42%,
      rgba(255, 255, 255, 0.06) 78%,
      rgba(255, 255, 255, 0.02) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 6px 16px rgba(47, 26, 40, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  -webkit-mask-image: linear-gradient(
    115deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 68%,
    rgba(0, 0, 0, 0.28) 100%
  );
  mask-image: linear-gradient(
    115deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 68%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.eps-mega-card__title {
  font-family: var(--eps-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--eps-plum);
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.eps-mega-card__text {
  font-size: 0.78rem;
  font-weight: 450;
  color: rgba(78, 42, 78, 0.7);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eps-mega-card__more {
  margin-top: 0.28rem;
  align-self: flex-end;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  color: rgba(154, 95, 120, 0.88) !important;
  opacity: 0.82;
  transition: opacity 0.25s ease, color 0.25s ease, letter-spacing 0.25s ease;
}

.eps-mega-card:hover .eps-mega-card__more {
  opacity: 1;
  color: rgba(78, 42, 78, 0.92) !important;
  letter-spacing: 0.04em;
}

/* Blog mega: article rows. Do not reuse the Servicii 3×3 image tiles. */
.eps-mega.eps-mega--blog .eps-mega__inner.eps-mega__inner--ultra {
  grid-template-columns: minmax(0, 7.2fr) minmax(200px, 2.8fr);
  grid-template-rows: auto auto auto;
  overflow: visible;
  max-height: min(78vh, 640px);
  overflow-x: hidden;
  overflow-y: auto;
}

.eps-mega.eps-mega--blog .eps-mega__cards.eps-mega__cards--blog {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0.4rem;
  height: auto !important;
  min-height: 0;
  max-height: min(48vh, 380px);
  overflow: auto;
  align-items: stretch;
  align-content: start;
}

.eps-mega.eps-mega--blog .eps-mega-card.eps-mega-card--blog {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem;
  min-height: 76px;
  height: auto !important;
  padding: 0.42rem 0.7rem 0.42rem 0.42rem !important;
  background: #fff !important;
  border: 1px solid rgba(193, 141, 162, 0.22) !important;
  box-shadow: 0 4px 12px rgba(78, 42, 78, 0.06) !important;
  overflow: hidden;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__media {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 72px;
  width: 72px !important;
  height: 72px !important;
  border-radius: 12px;
  overflow: hidden;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__body {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.12rem;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.28;
  font-size: 0.9rem;
  font-weight: 650;
  color: #3a1f3a !important;
  text-shadow: none !important;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__badge {
  position: static !important;
  top: auto;
  left: auto;
  display: inline-block;
  margin-bottom: 0;
  padding: 0.08rem 0.42rem;
  color: #c45d8a !important;
  background: rgba(232, 160, 188, 0.18) !important;
  border: 0 !important;
  animation: none;
  backdrop-filter: none;
  box-shadow: none;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__text {
  display: none;
}

.eps-mega.eps-mega--blog .eps-mega-card--blog .eps-mega-card__more {
  margin-top: 0.12rem;
  align-self: flex-start;
  color: #c45d8a !important;
  font-weight: 650 !important;
  opacity: 1;
}

.eps-mega.eps-mega--blog .eps-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.42rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, #c45d8a, #8b3a66) !important;
  white-space: nowrap;
}

.eps-mega__rail {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border-left: 0;
  max-height: none;
  overflow: hidden;
  min-height: 0;
  align-content: start;
  isolation: isolate;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 248, 250, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 28px rgba(78, 42, 78, 0.08);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.eps-mega__rail-glow {
  position: absolute;
  z-index: 0;
  width: 9rem;
  height: 9rem;
  right: -2.2rem;
  top: 12%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(196, 93, 138, 0.28) 0%,
    rgba(193, 141, 162, 0.12) 45%,
    transparent 72%
  );
  filter: blur(2px);
  animation: eps-mega-rail-drift 7s ease-in-out infinite alternate;
}

.eps-mega__rail-sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  animation: eps-mega-rail-sheen 5.8s ease-in-out infinite;
  opacity: 0.7;
}

.eps-mega__rail .eps-mega__col {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(14px);
}

.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col {
  animation: eps-mega-rail-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) {
  animation-delay: 0.08s;
}

.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) {
  animation-delay: 0.16s;
}

.eps-mega__rail .eps-mega__list li {
  opacity: 0;
  transform: translateX(10px);
}

.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__list li {
  animation: eps-mega-link-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) .eps-mega__list li:nth-child(1) { animation-delay: 0.14s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) .eps-mega__list li:nth-child(2) { animation-delay: 0.18s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) .eps-mega__list li:nth-child(3) { animation-delay: 0.22s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) .eps-mega__list li:nth-child(4) { animation-delay: 0.26s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) .eps-mega__list li:nth-child(5) { animation-delay: 0.3s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(3) .eps-mega__list li:nth-child(6) { animation-delay: 0.34s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) .eps-mega__list li:nth-child(1) { animation-delay: 0.22s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) .eps-mega__list li:nth-child(2) { animation-delay: 0.26s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) .eps-mega__list li:nth-child(3) { animation-delay: 0.3s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) .eps-mega__list li:nth-child(4) { animation-delay: 0.34s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) .eps-mega__list li:nth-child(5) { animation-delay: 0.38s; }
.eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col:nth-child(4) .eps-mega__list li:nth-child(6) { animation-delay: 0.42s; }

@keyframes eps-mega-rail-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(-18px, 28px, 0) scale(1.12); opacity: 1; }
}

@keyframes eps-mega-rail-sheen {
  0%, 35% { transform: translateX(-120%); }
  55% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes eps-mega-rail-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes eps-mega-link-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .eps-mega__rail-glow,
  .eps-mega__rail-sheen {
    animation: none !important;
  }

  .eps-mega__rail .eps-mega__col,
  .eps-mega__rail .eps-mega__list li,
  .eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__col,
  .eps-nav__item--mega.is-open .eps-mega__rail .eps-mega__list li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.eps-mega__inner--ultra .eps-mega__col-title {
  margin: 0 0 0.28rem;
  font-size: 0.92rem;
}

.eps-mega__inner--ultra .eps-mega__list {
  gap: 0.1rem;
}

.eps-mega__intro {
  padding: 0.35rem 0.5rem 0.35rem 0;
  border-right: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-mega__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eps-mauve);
  font-weight: 600;
}

.eps-mega__title {
  margin: 0 0 0.55rem;
  font-family: var(--eps-font-display);
  font-size: 1.85rem;
  color: var(--eps-plum);
  line-height: 1.15;
}

.eps-mega__text {
  margin: 0 0 1rem;
  color: var(--eps-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.eps-mega__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--eps-plum) !important;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  padding: 0.35rem 0.1rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition:
    color 0.25s var(--eps-ease),
    gap 0.28s var(--eps-ease);
}

.eps-mega__cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 1.4rem;
  bottom: 0.12rem;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.55;
  transition: transform 0.35s var(--eps-ease);
}

.eps-mega__cta-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--eps-ease);
}

.eps-mega__cta:hover {
  color: #2a1223 !important;
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: 0.65rem;
  transform: none;
}

.eps-mega__cta:hover::after {
  transform: scaleX(1);
}

.eps-mega__cta:hover .eps-mega__cta-arrow {
  transform: translateX(4px);
}

.eps-mega__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.75rem;
}

.eps-mega__col-title {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--eps-plum) !important;
  line-height: 1.3;
}

.eps-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.eps-mega__list a {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  font-size: 0.84rem;
  color: var(--eps-muted) !important;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.eps-mega__list a:hover {
  background: rgba(193, 141, 162, 0.14);
  color: var(--eps-plum) !important;
}

.eps-header.is-mega-open {
  box-shadow: none;
  background: transparent;
  overflow: visible !important;
  z-index: 1100;
}

.eps-header.is-mega-open .eps-header__shell,
.eps-header.is-mega-open .eps-header__inner,
.eps-header.is-mega-open .eps-nav,
.eps-header.is-mega-open .eps-nav__list,
.eps-header.is-mega-open .eps-nav__item--mega {
  overflow: visible !important;
}

.eps-header.is-mega-open .eps-header__shell,
.eps-header.is-mega-open.is-scrolled .eps-header__shell,
.eps-header--float.is-mega-open .eps-header__shell,
.eps-header--float.is-mega-open.is-scrolled .eps-header__shell {
  /* Glass bridge with mega panel */
  background: linear-gradient(180deg, rgba(255, 252, 253, 0.86), rgba(255, 252, 253, 0.78)) !important;
  border: 0 !important;
  border-radius: var(--eps-shell-radius, 18px) var(--eps-shell-radius, 18px) 0 0 !important;
  backdrop-filter: blur(22px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.15) !important;
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.5),
    inset -1px 0 0 rgba(255, 255, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 28px rgba(78, 42, 78, 0.08) !important;
}

/* Seamless frosted bridge over the header?mega join */
.eps-header.is-mega-open .eps-header__shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: rgba(255, 252, 253, 0.8);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 1188;
  pointer-events: none;
}

.eps-header.is-mega-open .eps-header__shell::after,
.eps-header.is-mega-open .eps-header__shell.is-tracing::after,
.eps-header.is-mega-open .eps-header__shell:hover::after {
  opacity: 0 !important;
}

/* Page scrim + blur behind open mega menu (below header) */
.eps-mega-scrim {
  position: fixed;
  inset: 0;
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(47, 26, 40, 0.18);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.35s;
}

html.eps-mega-open .eps-mega-scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

html.eps-mega-open {
  overflow-x: clip;
  overflow-y: auto;
}

html.eps-mega-open .eps-header,
html.eps-mega-open .eps-header--overlay {
  z-index: 1100;
  overflow: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  .eps-mega-scrim {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(47, 26, 40, 0.28);
  }
}

.eps-nav__item--mega.is-open .eps-mega-card {
  animation: eps-mega-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eps-nav__item--mega.is-open .eps-mega-card:nth-child(1) { animation-delay: 0.04s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(2) { animation-delay: 0.07s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(3) { animation-delay: 0.1s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(4) { animation-delay: 0.13s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(5) { animation-delay: 0.16s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(6) { animation-delay: 0.19s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(7) { animation-delay: 0.22s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(8) { animation-delay: 0.25s; }
.eps-nav__item--mega.is-open .eps-mega-card:nth-child(9) { animation-delay: 0.28s; }

.eps-nav__item--mega.is-open .eps-mega__intro,
.eps-nav__item--mega.is-open .eps-mega__rail {
  animation: eps-mega-soft-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eps-nav__item--mega.is-open .eps-mega__rail {
  animation-delay: 0.12s;
}

@keyframes eps-mega-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes eps-mega-soft-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.eps-nav__caret {
  width: 14px;
  height: 14px;
  margin-left: 0.1rem;
  transition: transform 0.35s var(--eps-ease);
}

.eps-nav__item--mega.is-open .eps-nav__caret {
  transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
  .eps-mega,
  .eps-nav__item--mega.is-open .eps-mega,
  .eps-nav__item--mega.is-open .eps-mega-card,
  .eps-nav__item--mega.is-open .eps-mega__intro,
  .eps-nav__item--mega.is-open .eps-mega__rail,
  .eps-mega-card__badge,
  .eps-mega-card__badge::after,
  .eps-hero__badge-pill,
  .eps-hero__badge-pill::after {
    transition: none !important;
    animation: none !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* Keep desktop mega 2-col until hamburger (≤1186). Do not stack ≤1200 — that
   crushed the panel between 1187–1200 while hover mega was still active. */
@media (min-width: 1187px) and (max-width: 1320px) {
  .eps-mega__inner--ultra {
    grid-template-columns: minmax(0, 7fr) minmax(180px, 2.4fr);
    max-height: min(70vh, 520px);
  }

  .eps-mega__inner--ultra .eps-mega__list a {
    font-size: 0.7rem;
    padding: 0.22rem 0.35rem;
  }
}

.eps-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 252, 250, 0.92);
  border: 1px solid rgba(78, 42, 78, 0.14);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 250;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.eps-nav-toggle__bars {
  display: block;
  width: 18px;
  height: 14px;
  position: relative;
}

.eps-nav-toggle__bar {
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #4e2a4e;
  border-radius: 2px;
  transition: transform 0.32s var(--eps-ease), opacity 0.22s ease, top 0.32s var(--eps-ease);
}

.eps-nav-toggle__bar:nth-child(1) { top: 1px; }
.eps-nav-toggle__bar:nth-child(2) { top: 7px; }
.eps-nav-toggle__bar:nth-child(3) { top: 13px; }

.eps-nav-toggle[aria-expanded="true"] .eps-nav-toggle__bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.eps-nav-toggle[aria-expanded="true"] .eps-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.eps-nav-toggle[aria-expanded="true"] .eps-nav-toggle__bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Mobile services accordion ? desktop hidden */
.eps-nav__m-svc {
  display: none;
}

/* ---------- Hero ---------- */
.eps-hero {
  position: relative;
  padding: 2.5rem 0 4.5rem;
  overflow: clip;
}

/* Print / full heroes: NEVER inherit the padded legacy hero */
.eps-hero.eps-hero--print,
.eps-hero.eps-hero--full {
  padding: 0;
  overflow-x: clip;
  overflow-y: visible;
}

body.home .eps-hero.eps-hero--print,
body.frontpage .eps-hero.eps-hero--print {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.eps-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.eps-hero__leaf {
  position: absolute;
  color: rgba(193, 141, 162, 0.35);
  width: clamp(140px, 18vw, 240px);
  animation: eps-float 9s ease-in-out infinite;
}

.eps-hero__leaf--tl {
  top: 4%;
  left: 1%;
}

.eps-hero__leaf--bl {
  bottom: 12%;
  left: 4%;
  animation-delay: -3s;
  color: rgba(78, 42, 78, 0.12);
}

@keyframes eps-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.eps-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  padding-bottom: 1.35rem;
}

.eps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--eps-mauve);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eps-eyebrow__icon {
  display: inline-flex;
  color: var(--eps-mauve);
}

.eps-hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.15rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--eps-plum);
  letter-spacing: -0.01em;
  max-width: 14ch;
}

.eps-hero__accent {
  font-style: italic;
  font-weight: 500;
  color: var(--eps-mauve);
}

.eps-hero__text {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  color: var(--eps-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eps-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
}

.eps-proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.eps-proof__avatars {
  display: flex;
  align-items: center;
}

.eps-proof__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--eps-cream);
  margin-left: calc(var(--i) * -10px);
  box-shadow: 0 2px 8px rgba(78, 42, 78, 0.12);
  overflow: hidden;
  background: var(--eps-mauve-soft);
  display: inline-block;
  position: relative;
  z-index: calc(5 - var(--i));
}

.eps-proof__avatar img,
.eps-proof__avatar picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eps-proof__avatar picture {
  width: 100%;
  height: 100%;
}

.eps-proof__stars {
  color: var(--eps-star);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.eps-proof__text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--eps-muted);
  max-width: 28ch;
  line-height: 1.4;
}

.eps-hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
}

.eps-hero__frame {
  position: relative;
  border-radius: 48% 48% 28px 28px / 42% 42% 28px 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--eps-mauve-soft), #f7f0ec 40%, #e4d0d8);
  box-shadow:
    0 30px 60px rgba(78, 42, 78, 0.14),
    0 0 0 10px rgba(255, 255, 255, 0.45);
  animation: eps-frame-in 1.1s var(--eps-ease) both;
}

@keyframes eps-frame-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eps-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eps-hero__placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.4rem;
  padding: 2rem;
  color: var(--eps-plum);
  font-family: var(--eps-font-display);
  font-size: 1.5rem;
}

.eps-hero__placeholder small {
  font-family: var(--eps-font-body);
  font-size: 0.78rem;
  color: var(--eps-muted);
}

.eps-hero__content {
  animation: eps-rise 0.9s var(--eps-ease) both;
}

@keyframes eps-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* USP bar */
.eps-usp {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem 1.35rem;
  margin-top: 0.35rem;
  padding: 1.15rem 1.45rem 1.25rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(78, 42, 78, 0.08);
  border: 1px solid rgba(78, 42, 78, 0.05);
}

.eps-usp__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.2rem 0.2rem;
}

.eps-usp__item + .eps-usp__item {
  border-left: 1px solid rgba(78, 42, 78, 0.06);
  padding-left: 1.25rem;
}

.eps-usp__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--eps-plum);
  background: linear-gradient(160deg, rgba(193, 141, 162, 0.18), rgba(78, 42, 78, 0.06));
}

.eps-usp__title {
  margin: 0 0 0.25rem;
  font-family: var(--eps-font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--eps-plum);
  line-height: 1.25;
}

.eps-usp__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--eps-muted);
  line-height: 1.45;
}

/* Sections / content */
.eps-section {
  padding: 4.5rem 0;
}

.eps-section--muted {
  background: linear-gradient(180deg, transparent, rgba(232, 213, 220, 0.28));
}

.eps-section__inner {
  max-width: 640px;
}

.eps-section__title {
  margin: 0 0 0.85rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #5a2f5c;
  line-height: 1.15;
}

.eps-section__text {
  margin: 0 0 1.5rem;
  color: var(--eps-muted);
}

.eps-content-wrap {
  padding: 3rem 0 4.5rem;
}

.eps-content-wrap--narrow {
  max-width: 760px;
}

.eps-article__title {
  margin: 0 0 1rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--eps-plum);
  line-height: 1.15;
}

.eps-article__thumb {
  margin: 0 0 1.5rem;
  border-radius: 18px;
  overflow: hidden;
}

.eps-article__body {
  font-size: 1.05rem;
  color: var(--eps-text);
}

.eps-404 {
  text-align: center;
  padding-block: 5rem;
}

/* Footer */
.eps-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 48% at 0% 40%, rgba(243, 196, 212, 0.28), transparent 62%),
    radial-gradient(ellipse 38% 32% at 92% 6%, rgba(193, 141, 162, 0.12), transparent 58%),
    linear-gradient(180deg, #faf6f4 0%, #f7f0f3 50%, #f3ebe8 100%);
  border-top: 1px solid rgba(193, 141, 162, 0.22);
}

.eps-footer__wash {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 32%);
  z-index: 0;
}

.eps-footer__glow {
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: min(60vw, 420px);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(193, 141, 162, 0.22), transparent 70%);
  z-index: 0;
}

.eps-footer__meadow {
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 3.8rem;
  width: clamp(110px, 15vw, 190px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.eps-footer__meadow-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.eps-footer__vine {
  animation: eps-footer-vine 5.5s ease-in-out infinite;
}

.eps-footer__vine--b {
  animation-delay: 0.7s;
}

.eps-footer__bloom-cluster {
  transform-box: fill-box;
  transform-origin: center;
}

.eps-footer__bloom-cluster--1 {
  animation: eps-footer-bloom-sway 2.9s ease-in-out infinite;
}

.eps-footer__bloom-cluster--2 {
  animation: eps-footer-bloom-sway 3.4s ease-in-out infinite 0.2s;
}

.eps-footer__bloom-cluster--3 {
  animation: eps-footer-bloom-float 2.8s ease-in-out infinite 0.12s;
}

.eps-footer__bloom-cluster--4 {
  animation: eps-footer-bloom-float 3.3s ease-in-out infinite 0.35s;
}

.eps-footer__leaf--1 { animation: eps-footer-leaf 2.2s ease-in-out infinite; }
.eps-footer__leaf--2 { animation: eps-footer-leaf 2.6s ease-in-out infinite 0.15s; }
.eps-footer__leaf--3 { animation: eps-footer-leaf 2.4s ease-in-out infinite 0.35s; }

.eps-footer__petal--a { animation: eps-footer-spark 1.9s ease-in-out infinite; }
.eps-footer__petal--b { animation: eps-footer-spark 2.3s ease-in-out infinite 0.25s; }
.eps-footer__petal--c { animation: eps-footer-spark 2.6s ease-in-out infinite 0.55s; }

@keyframes eps-footer-vine {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}

@keyframes eps-footer-bloom-sway {
  0%, 100% { transform: translateY(0) rotate(-6deg) scale(1); }
  50% { transform: translateY(-14px) rotate(7deg) scale(1.04); }
}

@keyframes eps-footer-bloom-float {
  0%, 100% { transform: translate(0, 0) rotate(3deg); }
  50% { transform: translate(6px, -16px) rotate(-6deg); }
}

@keyframes eps-footer-spark {
  0%, 100% { opacity: 0.2; transform: scale(0.8) translateY(0); }
  50% { opacity: 1; transform: scale(1.35) translateY(-4px); }
}

.eps-footer__bloom {
  position: absolute;
  width: clamp(78px, 10vw, 120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.62;
}

.eps-footer__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-footer__bloom--br {
  bottom: 4.8rem;
  right: 0;
  width: clamp(70px, 9vw, 100px);
  animation: eps-footer-float-a 5.4s ease-in-out infinite 0.5s;
}

.eps-footer__bloom--tr {
  top: 0.25rem;
  right: 0;
  animation: eps-footer-float-b 5.2s ease-in-out infinite;
}

.eps-footer__sky {
  position: absolute;
  right: 0;
  top: 0.1rem;
  bottom: 3.6rem;
  width: clamp(130px, 17vw, 210px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.eps-footer__sky-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.eps-footer__sun {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-float 5.8s ease-in-out infinite;
}

.eps-footer__sun-halo {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-halo 4.2s ease-in-out infinite;
}

.eps-footer__sun-halo--b {
  animation-duration: 5.6s;
  animation-delay: 0.35s;
}

.eps-footer__sun-rays {
  transform-origin: 0 0;
  animation: eps-footer-sun-rays 18s linear infinite;
}

.eps-footer__sun-core {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-core 3.2s ease-in-out infinite;
}

.eps-footer__sun-core-shine {
  transform-origin: 154.5px 63.5px;
  animation: eps-footer-sun-shine 2.8s ease-in-out infinite;
}

.eps-footer__sun-ring--a {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-ring-a 4.8s ease-in-out infinite;
}

.eps-footer__sun-ring--b {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-ring-b 10s linear infinite;
}

.eps-footer__sun-ring--c {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-ring-c 22s linear infinite;
}

.eps-footer__sun-orbit {
  transform-origin: 158px 68px;
  animation: eps-footer-sun-orbit 12s linear infinite;
}

.eps-footer__sun-orbit--b {
  animation-duration: 9s;
  animation-direction: reverse;
}

.eps-footer__sun-bead {
  transform-box: fill-box;
  transform-origin: center;
  animation: eps-footer-sun-spark 2.2s ease-in-out infinite;
}

.eps-footer__sun-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: eps-footer-sun-spark 2.4s ease-in-out infinite;
}

.eps-footer__sun-spark--2 { animation-delay: 0.35s; animation-duration: 2.8s; }
.eps-footer__sun-spark--3 { animation-delay: 0.7s; animation-duration: 3.1s; }
.eps-footer__sun-spark--4 { animation-delay: 0.15s; animation-duration: 2.5s; }
.eps-footer__sun-spark--5 { animation-delay: 1s; animation-duration: 3.4s; }

.eps-footer__breeze {
  animation: eps-footer-breeze 4.2s linear infinite;
}

.eps-footer__breeze--2 { animation-duration: 5s; animation-delay: 0.35s; }
.eps-footer__breeze--3 { animation-duration: 5.8s; animation-delay: 0.8s; }

.eps-footer__sky-bloom {
  transform-box: fill-box;
  transform-origin: center;
}

.eps-footer__sky-bloom--1 { animation: eps-footer-bloom-sway 2.8s ease-in-out infinite; }
.eps-footer__sky-bloom--2 { animation: eps-footer-bloom-float 3.2s ease-in-out infinite 0.15s; }
.eps-footer__sky-bloom--3 { animation: eps-footer-bloom-sway 3.6s ease-in-out infinite 0.3s; }

.eps-footer__sky-leaf { animation: eps-footer-leaf 2.6s ease-in-out infinite; }
.eps-footer__sky-leaf--b { animation: eps-footer-leaf 3.1s ease-in-out infinite 0.35s; }

.eps-footer__dew { animation: eps-footer-dew 2.2s ease-in-out infinite; }
.eps-footer__dew--2 { animation-delay: 0.28s; }
.eps-footer__dew--3 { animation-delay: 0.56s; }
.eps-footer__dew--4 { animation-delay: 0.84s; }
.eps-footer__dew--5 { animation-delay: 1.12s; }

@keyframes eps-footer-sun-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes eps-footer-sun-halo {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.18); opacity: 0.85; }
}

@keyframes eps-footer-sun-core {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes eps-footer-sun-shine {
  0%, 100% { opacity: 0.28; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.8; transform: translate(1.5px, -1.5px) scale(1.25); }
}

@keyframes eps-footer-sun-rays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes eps-footer-sun-ring-a {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes eps-footer-sun-ring-b {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes eps-footer-sun-ring-c {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes eps-footer-sun-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes eps-footer-sun-spark {
  0%, 100% { opacity: 0.35; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes eps-footer-breeze {
  0% { stroke-dashoffset: 0; opacity: 0.28; }
  50% { opacity: 0.55; }
  100% { stroke-dashoffset: -48; opacity: 0.3; }
}

@keyframes eps-footer-dew {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  40% { transform: translateY(-7px) scale(1.15); opacity: 0.85; }
  70% { transform: translateY(-3px) scale(1.05); opacity: 0.55; }
}

.eps-footer__flower {
  transform-origin: center;
  animation: eps-footer-sway 4.2s ease-in-out infinite;
}

.eps-footer__leaf {
  animation: eps-footer-leaf 3.4s ease-in-out infinite;
}

@keyframes eps-footer-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes eps-footer-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-9px) rotate(-2deg); }
}

@keyframes eps-footer-sway {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.06); }
}

@keyframes eps-footer-leaf {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.9; transform: translateX(3px); }
}

.eps-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1.15rem;
  padding: 1.45rem 0 0.9rem;
  align-items: start;
}

.eps-footer__col {
  min-width: 0;
}

.eps-footer__col--engage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  align-items: stretch;
  margin-top: 0.15rem;
}

@media (min-width: 1180px) {
  .eps-footer__grid {
    grid-template-columns:
      minmax(0, 1.35fr)
      minmax(0, 0.68fr)
      minmax(0, 0.82fr)
      minmax(0, 1.05fr)
      minmax(0, 1.05fr);
    gap: 0.7rem 0.95rem;
    align-items: start;
  }

  .eps-footer__col--engage {
    display: contents;
    grid-column: auto;
    margin-top: 0;
  }
}

.eps-footer__col--brand {
  position: relative;
  z-index: 1;
  padding-left: clamp(0.35rem, 2vw, 1rem);
}

.eps-footer__lead {
  margin: 0.4rem 0 0;
  max-width: none;
  color: #5a4a50;
  font-size: 0.78rem;
  line-height: 1.5;
}

.eps-footer__eyebrow {
  margin: 0 0 0.15rem;
  font-family: var(--eps-font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-footer__cta-lead {
  margin: 0 0 0.45rem;
  color: #5a4a50;
  font-size: 0.7rem;
  max-width: none;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.eps-footer__title {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #2f1a28;
  letter-spacing: -0.01em;
}

.eps-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.22rem;
}

.eps-footer__menu a {
  color: #6a5a60;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.eps-footer__menu a:hover {
  color: #4e2a4e;
}

.eps-footer__cta-card {
  height: auto;
  margin: 0;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(252, 244, 248, 0.58) 100%);
  border: 1px solid rgba(193, 141, 162, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 14px rgba(78, 42, 78, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.eps-footer__pulse {
  height: auto;
  margin: 0;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(252, 244, 248, 0.55) 100%);
  border: 1px solid rgba(193, 141, 162, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 14px rgba(78, 42, 78, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eps-footer__pulse-title {
  margin: 0 0 0.18rem;
  font-family: var(--eps-font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: #2f1a28;
  line-height: 1.2;
}

.eps-footer__pulse-lead {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  line-height: 1.35;
  color: #6a5a60;
}

.eps-footer__pulse-form {
  display: grid;
  gap: 0.28rem;
  position: relative;
}

.eps-footer__pulse-honey {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.eps-footer__pulse-field input {
  width: 100%;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(78, 42, 78, 0.14);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  color: #2f1a28;
}

.eps-footer__pulse-field input:focus {
  outline: 2px solid rgba(196, 93, 138, 0.45);
  outline-offset: 1px;
}

.eps-footer__pulse-btn {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  min-height: 1.95rem;
  font-size: 0.72rem;
  padding-block: 0.35rem;
}

.eps-footer__pulse-note {
  margin: 0;
  font-size: 0.6rem;
  color: #8a7880;
  line-height: 1.3;
}

.eps-footer__pulse-status {
  margin: 0;
  min-height: 1em;
  font-size: 0.66rem;
  color: #4e2a4e;
  font-weight: 600;
}

.eps-footer__pulse-status.is-error {
  color: #9b3a4a;
}

.eps-footer__col--engage .eps-btn,
.eps-footer__btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 0.74rem;
  padding: 0.42rem 0.7rem;
  min-height: 2rem;
  height: auto;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
}

.eps-footer__btn > span:not(.eps-btn__icon) {
  min-width: 0;
  flex: 1 1 auto;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.25;
  text-wrap: balance;
}

.eps-footer__compliance {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(193, 141, 162, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.1));
}

.eps-footer__compliance-inner {
  padding: 0.55rem 0 0.5rem;
}

.eps-footer__anpc {
  text-align: center;
}

.eps-footer__anpc-title {
  margin: 0 0 0.08rem;
  font-family: var(--eps-font-display);
  font-size: 0.76rem;
  font-weight: 600;
  color: #2f1a28;
  letter-spacing: 0.01em;
}

.eps-footer__anpc-text {
  margin: 0 auto 0.35rem;
  max-width: 42ch;
  color: #6a5a60;
  font-size: 0.68rem;
  line-height: 1.4;
}

.eps-footer__anpc-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.eps-footer__anpc-badge {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: transparent !important;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: opacity 0.25s var(--eps-ease), transform 0.25s var(--eps-ease);
}

.eps-footer__anpc-badge:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.eps-footer__anpc-badge img {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
  background: transparent;
  mix-blend-mode: normal;
}

.eps-footer__anpc-badge--sal {
  border-radius: 8px;
  overflow: hidden;
  background: transparent !important;
}

.eps-footer__anpc-badge--sal img {
  width: 140px;
  height: auto;
  max-width: min(140px, 100%);
  background: transparent;
}

.eps-footer__anpc-badge--cpr {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
}

.eps-footer__anpc-badge--cpr img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.eps-footer__seam {
  position: relative;
  z-index: 2;
  height: 14px;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(250, 246, 244, 0.35), rgba(78, 42, 78, 0.08));
}

.eps-footer__seam-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(193, 141, 162, 0.2) 8%,
      rgba(196, 93, 138, 0.65) 32%,
      rgba(232, 160, 188, 0.85) 50%,
      rgba(196, 93, 138, 0.65) 68%,
      rgba(193, 141, 162, 0.2) 92%,
      transparent 100%
    );
  box-shadow: 0 0 10px rgba(196, 93, 138, 0.28);
}

.eps-footer__seam-line::before,
.eps-footer__seam-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #f3c4d4 0%, #c45d8a 55%, transparent 72%);
  box-shadow: 0 0 10px rgba(196, 93, 138, 0.55);
}

.eps-footer__seam-line::before {
  left: 12%;
}

.eps-footer__seam-line::after {
  right: 12%;
}

.eps-footer__seam-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 18%,
    rgba(243, 196, 212, 0.55) 42%,
    rgba(196, 93, 138, 0.5) 55%,
    rgba(232, 160, 188, 0.35) 68%,
    transparent 100%
  );
  filter: blur(1px);
  animation: eps-footer-seam-run 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes eps-footer-seam-run {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(340%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-footer__seam-glow {
    animation: none;
    opacity: 0.35;
    left: 31%;
    width: 38%;
    transform: none;
  }
}

.eps-footer__bar {
  position: relative;
  z-index: 1;
  border-top: 0;
  background:
    radial-gradient(ellipse 42% 90% at 88% 40%, rgba(196, 93, 138, 0.16), transparent 62%),
    radial-gradient(ellipse 30% 70% at 12% 80%, rgba(78, 42, 78, 0.45), transparent 55%),
    linear-gradient(180deg, #2f1a28 0%, #1a0f18 100%);
  color: rgba(255, 255, 255, 0.62);
}

.eps-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0 0.6rem;
  width: min(100% - 2.5rem, var(--eps-container));
  margin-inline: auto;
}

.eps-footer__copy {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.52);
}

.eps-footer__bar-copy {
  display: grid;
  gap: 0.12rem;
  max-width: min(100%, 42rem);
}

.eps-rights-micro {
  margin: 0;
  font-size: 0.6rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}

.eps-rights-micro a {
  color: rgba(243, 196, 212, 0.85);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 196, 212, 0.35);
}

.eps-rights-micro a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

/* EmpireX credit — compact */
.eps-footer__dev {
  position: relative;
  display: block;
  flex: 0 0 auto;
  margin: 0;
  padding: 1px;
  border-radius: 10px;
  text-decoration: none !important;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-footer__dev:hover {
  transform: translateY(-1px);
}

.eps-footer__dev-border {
  position: absolute;
  inset: -55%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #f3c4d4 0%,
    #c45d8a 16%,
    #d4a017 34%,
    #4a7fd4 52%,
    #e8a0bc 70%,
    #f6d6e4 88%,
    #f3c4d4 100%
  );
  animation: eps-soon-dev-spin 5s linear infinite;
  z-index: 0;
  filter: saturate(1.12);
}

.eps-footer__dev-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.32rem 0.55rem 0.34rem 0.6rem;
  border-radius: 9px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(196, 93, 138, 0.28), transparent 55%),
    linear-gradient(155deg, #3a1840 0%, #24102c 45%, #120914 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 16px rgba(20, 8, 24, 0.28);
}

.eps-footer__dev-label {
  font-family: var(--eps-font-ui);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 236, 244, 0.72);
  line-height: 1;
  white-space: nowrap;
}

.eps-footer__dev-logo {
  display: block;
  width: auto;
  height: 18px;
  max-width: min(110px, 42vw);
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.eps-footer__dev:hover .eps-footer__dev-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 10px rgba(212, 160, 23, 0.22));
}

@media (prefers-reduced-motion: reduce) {
  .eps-footer__dev-border {
    animation: none;
  }

  .eps-footer__dev:hover,
  .eps-footer__dev:hover .eps-footer__dev-logo {
    transform: none;
  }
}

/* legacy class kept empty for safety if cached HTML */
.eps-footer__credit {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .eps-footer__bloom--tr,
  .eps-footer__bloom--br,
  .eps-footer__flower,
  .eps-footer__leaf,
  .eps-footer__vine,
  .eps-footer__bloom-cluster--1,
  .eps-footer__bloom-cluster--2,
  .eps-footer__bloom-cluster--3,
  .eps-footer__bloom-cluster--4,
  .eps-footer__leaf--1,
  .eps-footer__leaf--2,
  .eps-footer__leaf--3,
  .eps-footer__petal--a,
  .eps-footer__petal--b,
  .eps-footer__petal--c,
  .eps-footer__sun,
  .eps-footer__sun-rays,
  .eps-footer__sun-halo,
  .eps-footer__sun-halo--b,
  .eps-footer__sun-core,
  .eps-footer__sun-core-shine,
  .eps-footer__sun-ring--a,
  .eps-footer__sun-ring--b,
  .eps-footer__sun-ring--c,
  .eps-footer__sun-orbit,
  .eps-footer__sun-orbit--b,
  .eps-footer__sun-bead,
  .eps-footer__sun-spark,
  .eps-footer__breeze,
  .eps-footer__sky-bloom--1,
  .eps-footer__sky-bloom--2,
  .eps-footer__sky-bloom--3,
  .eps-footer__sky-leaf,
  .eps-footer__dew {
    animation: none !important;
  }
}

/* Floating WhatsApp + scroll top ? ultra */
.eps-float {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

/* Booking modal open: keep chrome stable when scrollbar locks */
body.ib-lock .eps-float {
  right: calc(max(1.15rem, env(safe-area-inset-right, 0px)) + var(--ib-sb, 0px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.ib-lock .eps-siderail {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 640px) {
  body.ib-lock .eps-float {
    right: calc(max(0.75rem, env(safe-area-inset-right, 0px)) + var(--ib-sb, 0px));
  }
}

.eps-float__btn {
  --eps-float-size: 3.35rem;
  position: relative;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--eps-float-size);
  height: var(--eps-float-size);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 14px 34px rgba(40, 28, 38, 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    opacity 0.3s ease,
    visibility 0.3s ease,
    background 0.3s ease;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  overflow: visible;
}

.eps-float__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 18px 40px rgba(40, 28, 38, 0.28);
}

.eps-float__btn:focus-visible {
  outline: 2px solid #c18da2;
  outline-offset: 3px;
}

.eps-float__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  line-height: 0;
}

/* Tip stays LEFT of the circle — never over the icon. Only on real hover. */
.eps-float__tip {
  position: absolute;
  left: auto;
  right: calc(100% + 0.7rem);
  top: 50%;
  z-index: 5;
  transform: translate3d(8px, -50%, 0);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(47, 26, 40, 0.94);
  color: #faf6f4;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  box-shadow: 0 10px 24px rgba(47, 26, 40, 0.18);
}

@media (hover: hover) and (pointer: fine) {
  .eps-float__btn:hover .eps-float__tip,
  .eps-float__btn:focus-visible .eps-float__tip {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50%, 0);
  }
}

.eps-float__btn--wa {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

.eps-float__btn--wa:hover {
  background: linear-gradient(145deg, #2fe374 0%, #0f7a6d 100%);
}

.eps-float__pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid rgba(37, 211, 102, 0.55);
  animation: eps-float-pulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes eps-float-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

.eps-float__btn--top {
  background: linear-gradient(155deg, #6b3558 0%, #3a1f3a 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.94);
}

.eps-float__btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.eps-float__btn--top:hover {
  background: linear-gradient(155deg, #7a4066 0%, #2f1a28 100%);
}

.eps-float__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: rotate(-90deg);
  pointer-events: none;
}

.eps-float__ring-bg,
.eps-float__ring-fg {
  fill: none;
  stroke-width: 2.2;
}

.eps-float__ring-bg {
  stroke: rgba(255, 255, 255, 0.18);
}

.eps-float__ring-fg {
  stroke: #e8c9d6;
  stroke-linecap: round;
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
  transition: stroke-dashoffset 0.12s linear;
}

/* Desktop left siderail ? slim progress + thin section label */
.eps-siderail {
  display: none;
}

@media (min-width: 1180px) {
  .eps-siderail {
    position: fixed;
    left: max(0.55rem, env(safe-area-inset-left, 0px));
    top: max(5.35rem, env(safe-area-inset-top, 0px));
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.45rem 0.38rem 0.75rem;
    width: 3.5rem;
    height: auto;
    min-height: 0;
    border-radius: 1.75rem;
    background: rgba(250, 246, 244, 0.97);
    border: 1px solid rgba(193, 141, 162, 0.32);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.55) inset,
      0 14px 32px rgba(47, 26, 40, 0.09);
    overflow: visible;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .eps-siderail.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .eps-siderail__mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(154, 95, 120, 0.22);
    text-decoration: none !important;
    box-shadow: 0 6px 14px rgba(78, 42, 78, 0.09);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .eps-siderail__mark img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    display: block;
  }

  .eps-siderail__mark:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 20px rgba(78, 42, 78, 0.12);
  }

  .eps-siderail__stage {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0;
  }

  .eps-siderail__track {
    position: absolute;
    left: 50%;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 2px;
    margin: 0;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(78, 42, 78, 0.1);
    overflow: hidden;
    z-index: 0;
  }

  .eps-siderail__fill {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    border-radius: inherit;
    background: linear-gradient(180deg, #e8a0bc 0%, #c45d8a 48%, #4e2a4e 100%);
    box-shadow: 0 0 8px rgba(196, 93, 138, 0.35);
    transition: height 0.12s linear;
  }

  .eps-siderail__live {
    position: relative;
    z-index: 2;
    margin: 0;
    max-height: 82%;
    overflow: hidden;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--eps-font-body);
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    color: #4e2a4e;
    opacity: 0;
    pointer-events: none;
    padding: 0.65rem 0.2rem;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      rgba(250, 246, 244, 0.05) 0%,
      rgba(250, 246, 244, 0.97) 16%,
      rgba(250, 246, 244, 0.99) 84%,
      rgba(250, 246, 244, 0.05) 100%
    );
    box-shadow: 0 0 0 1px rgba(250, 246, 244, 0.4);
    transition: opacity 0.28s ease, color 0.28s ease;
  }

  .eps-siderail__live.is-swap {
    opacity: 1;
  }

  .eps-siderail__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    width: 100%;
    padding: 0.15rem 0.05rem 0.15rem;
    border-radius: 12px;
    color: #4e2a4e !important;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .eps-siderail__cta:hover {
    background: rgba(193, 141, 162, 0.14);
    transform: translateY(-1px);
  }

  .eps-siderail__cta-icon {
    display: grid;
    place-items: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 9px;
    background: linear-gradient(155deg, #4e2a4e, #6b3558);
    color: #faf6f4;
    box-shadow: 0 5px 12px rgba(78, 42, 78, 0.14);
  }

  .eps-siderail__cta-icon svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .eps-siderail__cta-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--eps-font-body);
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a5578;
    line-height: 1.05;
    white-space: nowrap;
    padding: 0.1rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-siderail {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .eps-float {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    gap: 0.55rem;
  }

  .eps-float__btn {
    --eps-float-size: 3rem;
  }

  .eps-float__tip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-float__pulse {
    animation: none;
  }
}

/* Reveal motion — content stays visible until JS arms (.eps-reveal-armed) */
[data-eps-reveal] {
  opacity: 1;
  transform: none;
}

[data-eps-reveal] .eps-reveal-item {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-eps-reveal].eps-reveal-armed:not(.is-visible) .eps-reveal-item {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(3px);
}

[data-eps-reveal].eps-reveal-armed .eps-reveal-item {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-eps-reveal].is-visible .eps-reveal-item {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-eps-reveal].is-visible .eps-reveal-item:nth-child(1) { transition-delay: 0.04s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(2) { transition-delay: 0.1s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(3) { transition-delay: 0.16s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(4) { transition-delay: 0.22s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(5) { transition-delay: 0.28s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(6) { transition-delay: 0.34s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(7) { transition-delay: 0.4s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(8) { transition-delay: 0.46s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(9) { transition-delay: 0.52s; }
[data-eps-reveal].is-visible .eps-reveal-item:nth-child(n+10) { transition-delay: 0.56s; }

/* Legal / document pages: never hide body copy behind reveal */
.eps-section--legal .eps-reveal-item,
.eps-page-shell--legal [data-eps-reveal] .eps-reveal-item {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .eps-topbar,
  html.eps-ready .eps-topbar,
  .eps-header--float,
  html.eps-ready .eps-header--float,
  [data-eps-reveal] .eps-reveal-item,
  [data-eps-reveal].eps-reveal-armed:not(.is-visible) .eps-reveal-item,
  [data-eps-reveal].is-visible .eps-reveal-item {
    transition: none !important;
    animation: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--eps-mauve);
  outline-offset: 3px;
}

.eps-btn:focus-visible {
  outline-offset: 4px;
}

/* About */
.eps-about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.eps-about__panel {
  padding: 2rem;
  border-radius: var(--eps-radius);
  background: linear-gradient(160deg, rgba(193, 141, 162, 0.22), rgba(78, 42, 78, 0.08));
  border: 1px solid rgba(78, 42, 78, 0.06);
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 0.5rem;
}

.eps-about__stat-label {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: 1.75rem;
  color: var(--eps-plum);
}

.eps-about__stat-value {
  margin: 0;
  color: var(--eps-muted);
  font-size: 0.95rem;
}

/* About ? story split (photo left, copy right) */
.eps-about--story {
  padding-top: clamp(0.75rem, 2.2vw, 1.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Continu? acela?i cream ? f?r? band? gri sub dock */
body.home .eps-hero.eps-hero--print + .eps-about--story,
body.frontpage .eps-hero.eps-hero--print + .eps-about--story,
body.home main > .eps-about--story,
body.frontpage main > .eps-about--story,
body.home .eps-about--bridge,
body.frontpage .eps-about--bridge {
  background: #faf6f4;
}

.eps-about--story .eps-about__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(193, 141, 162, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 252, 250, 0.98) 0%, rgba(250, 246, 244, 0.96) 55%, rgba(247, 238, 242, 0.94) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 22px 50px rgba(47, 26, 40, 0.08);
}

.eps-about--story .eps-about__media {
  min-height: 100%;
  background: #efe4e8;
}

.eps-about--story .eps-about__photo {
  display: block;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: auto;
}

.eps-about--story .eps-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Flower between photo & text, bottom center */
.eps-about__bloom {
  position: absolute;
  left: 46%;
  bottom: 1.1rem;
  z-index: 4;
  width: 88px;
  height: 88px;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(78, 42, 78, 0.12));
}

.eps-about__bloom-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.eps-about__bloom-flower {
  transform-origin: 60px 52px;
  animation: none;
}

.eps-about__petal {
  transform-origin: 60px 52px;
  animation: none;
}

.eps-about__petal:nth-child(2),
.eps-about__petal:nth-child(3),
.eps-about__petal:nth-child(4),
.eps-about__petal:nth-child(5) {
  animation-delay: 0s;
}

@keyframes eps-about-bloom-sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

@keyframes eps-about-petal-breathe {
  0%, 100% { opacity: 0.82; }
  50% { opacity: 1; }
}

.eps-about--story .eps-about__content {
  position: relative;
  padding: clamp(1.6rem, 3.2vw, 2.6rem) clamp(1.4rem, 3vw, 2.4rem) clamp(1.6rem, 2.8vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eps-about--story .eps-eyebrow {
  margin: 0 0 0.55rem;
}

.eps-about--story .eps-section__title {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  line-height: 1.18;
}

.eps-about__accent {
  font-style: italic;
  font-weight: 550;
  color: #9a5f78;
}

.eps-about__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 1.15rem;
  background: linear-gradient(90deg, #c18da2, rgba(193, 141, 162, 0));
}

.eps-about--story .eps-about__story {
  display: grid;
  gap: 0.75rem;
  max-width: 52ch;
}

.eps-about--story .eps-about__story .eps-section__text {
  margin: 0;
  font-size: clamp(0.92rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: #5a4a50;
}

.eps-about--story .eps-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.eps-about__quote {
  margin: 1.45rem 0 0;
  padding: 1rem 1.1rem 1rem 1.15rem;
  max-width: 46ch;
  border-left: 2px solid #c18da2;
  border-radius: 0 14px 14px 0;
  background: rgba(241, 228, 232, 0.45);
}

.eps-about__quote p {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--eps-plum);
}

.eps-about__quote footer {
  margin-top: 0.55rem;
  font-family: var(--eps-font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a5f78;
}

/* 556–958: photo 50% left, content 50% right */
@media (max-width: 958px) and (min-width: 556px) {
  .eps-about--story .eps-about__shell {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .eps-about--story .eps-about__media {
    min-height: 100%;
  }

  .eps-about--story .eps-about__photo {
    min-height: 360px;
    max-height: none;
    height: 100%;
  }

  .eps-about--story .eps-about__photo img {
    object-fit: cover;
    object-position: center top;
  }

  .eps-about--story .eps-about__content {
    padding: clamp(1.2rem, 2.5vw, 1.85rem) clamp(1rem, 2.2vw, 1.6rem);
  }

  .eps-about__bloom {
    left: 50%;
    bottom: 1rem;
    top: auto;
    width: 72px;
    height: 72px;
  }

  .eps-about__bloom-flower,
  .eps-about__petal {
    animation: none !important;
  }
}

/* ≤555: stack 100%, photo centered, no flower motion */
@media (max-width: 555px) {
  .eps-about--story .eps-about__shell {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .eps-about--story .eps-about__media {
    width: 100%;
  }

  .eps-about--story .eps-about__photo {
    min-height: 300px;
    max-height: 400px;
    width: 100%;
  }

  .eps-about--story .eps-about__photo img {
    object-fit: cover;
    object-position: center center;
  }

  .eps-about--story .eps-about__content {
    padding: 1.25rem 1.1rem 1.35rem;
  }

  .eps-about--story .eps-about__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eps-about--story .eps-about__actions .eps-btn {
    width: 100%;
    justify-content: center;
  }

  .eps-about__bloom {
    left: 50%;
    bottom: auto;
    top: min(280px, 52%);
    width: 64px;
    height: 64px;
    display: none !important;
  }

  .eps-about__bloom-flower,
  .eps-about__petal {
    animation: none !important;
  }
}

/* Hide about flower on all mobile / small tablet */
@media (max-width: 719px) {
  .eps-about__bloom {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-about__bloom-flower,
  .eps-about__petal {
    animation: none !important;
  }
}

/* Services catalog */
.eps-section__header {
  max-width: 560px;
  margin-bottom: 2rem;
}

.eps-section__header--center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.eps-section__title--display {
  letter-spacing: 0.08em;
  font-family: var(--eps-font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.eps-services__catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 0.5rem;
}

.eps-service-block {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.eps-service-block__title {
  margin: 0 0 1rem;
  font-family: var(--eps-font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--eps-plum);
  line-height: 1.35;
}

.eps-service-block__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 0.55rem;
  color: var(--eps-text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.eps-service-block__list li::marker {
  color: var(--eps-mauve);
}

.eps-services__action {
  margin-top: 2.5rem;
  text-align: center;
}

/* ---------- Services atelier ? photo + editorial clinic ---------- */
.eps-services--atelier {
  --eps-svc-x: 50%;
  --eps-svc-y: 42%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(2.6rem, 5vw, 3.8rem);
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
  background: #2a1828;
}

.eps-services__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.eps-services__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03);
  animation: eps-services-ken 28s ease-in-out infinite alternate;
}

.eps-services__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 242, 246, 0.22) 0%, rgba(248, 242, 246, 0.08) 38%, rgba(248, 242, 246, 0.12) 72%, rgba(248, 242, 246, 0.28) 100%),
    radial-gradient(ellipse 58% 48% at 50% 8%, rgba(255, 255, 255, 0.28), transparent 72%);
}

.eps-services__cursor {
  position: absolute;
  z-index: 1;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  left: var(--eps-svc-x);
  top: var(--eps-svc-y);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(196, 93, 138, 0.38) 0%,
      rgba(158, 90, 140, 0.18) 38%,
      rgba(78, 42, 78, 0.05) 62%,
      transparent 74%);
  filter: blur(2px);
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: left, top;
}

.eps-services--atelier.is-pointer .eps-services__cursor {
  opacity: 1;
}

@keyframes eps-services-ken {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-0.8%, -0.5%, 0); }
}

.eps-services--atelier .eps-container,
.eps-services__inner {
  position: relative;
  z-index: 2;
}

.eps-services--atelier > .eps-container.eps-services__inner {
  width: min(100% - 2.25rem, 64rem);
  max-width: 64rem;
}

.eps-services__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eps-services__eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  font-family: var(--eps-font-body);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a4f72;
}

.eps-services__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.4rem;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #c45d8a, transparent);
}

.eps-services__title {
  margin: 0 0 0.7rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  color: #4a274c;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.eps-services__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: #3f3038;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.eps-services__stage {
  position: relative;
  padding: clamp(1.15rem, 2.4vw, 1.65rem) clamp(1rem, 2.2vw, 1.55rem);
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(255, 252, 253, 0.58) 0%, rgba(255, 248, 250, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 48px rgba(47, 26, 40, 0.12);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  overflow: hidden;
}

.eps-services__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(196, 93, 138, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 92% 100%, rgba(78, 42, 78, 0.06), transparent 55%);
  opacity: 0.9;
}

.eps-services__columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.eps-services__columns::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6%;
  bottom: 6%;
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(193, 141, 162, 0.45) 12%,
    rgba(196, 93, 138, 0.35) 50%,
    rgba(193, 141, 162, 0.45) 88%,
    transparent 100%
  );
}

.eps-services__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 0.15rem clamp(1rem, 2.4vw, 1.75rem);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.eps-services__col:first-child {
  padding-left: 0.15rem;
}

.eps-services__col:last-child {
  padding-right: 0.15rem;
}

.eps-services__col-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(193, 141, 162, 0.28);
  min-width: 0;
}

.eps-services__col-index {
  flex: 0 0 auto;
  font-family: var(--eps-font-display);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #c45d8a;
  opacity: 0.9;
  padding-top: 0.1rem;
}

.eps-services__col-copy {
  min-width: 0;
}

.eps-services__col-kicker {
  margin: 0 0 0.22rem;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a5670;
}

.eps-services__col-title {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  font-weight: 600;
  line-height: 1.28;
  color: #2f1a28;
}

.eps-services--atelier .eps-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  flex: 1;
  min-width: 0;
  gap: 0.1rem;
}

.eps-services--atelier .eps-services__list li {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.48rem 0.35rem 0.48rem 0.15rem;
  border-radius: 10px;
  border-bottom: 0;
  color: #3a2832;
  font-size: 0.9rem;
  line-height: 1.38;
  transition: background 0.28s ease, transform 0.28s ease;
}

.eps-services--atelier .eps-services__list li:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(2px);
}

.eps-services__item-label {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 500;
}

.eps-services__item-icon {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  color: #6b3558;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(193, 141, 162, 0.22);
  box-shadow: 0 4px 10px rgba(78, 42, 78, 0.06);
}

.eps-services__item-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.eps-services--atelier .eps-services__action {
  margin-top: clamp(1.5rem, 2.8vw, 2rem);
  text-align: center;
}

.eps-services__btn {
  position: relative;
  min-width: min(100%, 17.5rem);
  justify-content: center;
  border-radius: 14px;
  padding: 0.88rem 1.7rem;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  background: linear-gradient(145deg, #6b3558 0%, #4e2a4e 48%, #3a1f3a 100%);
  border-color: #4e2a4e;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 14px 36px rgba(78, 42, 78, 0.38),
    0 0 0 0 rgba(196, 93, 138, 0.45);
  animation: eps-services-cta-pulse 2.8s ease-in-out infinite;
}

.eps-services__btn::before {
  display: none;
}

.eps-services__btn:hover,
.eps-services__btn:focus {
  background: linear-gradient(145deg, #7a3f66 0%, #5a3358 50%, #432446 100%);
  border-color: #5a3358;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 18px 42px rgba(78, 42, 78, 0.45),
    0 0 28px rgba(196, 93, 138, 0.35);
  animation: none;
}

.eps-services__btn:active {
  transform: translateY(0);
  animation: none;
}

.eps-services__btn .eps-btn__icon {
  color: #fff;
}

@keyframes eps-services-cta-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 14px 36px rgba(78, 42, 78, 0.38),
      0 0 0 0 rgba(196, 93, 138, 0.4);
  }
  55% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 16px 40px rgba(78, 42, 78, 0.42),
      0 0 0 10px rgba(196, 93, 138, 0);
  }
}

@media (max-width: 720px) {
  .eps-services--atelier > .eps-container.eps-services__inner {
    width: min(100% - 1.5rem, 64rem);
  }

  .eps-services__columns {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .eps-services__columns::after {
    display: none;
  }

  .eps-services__col,
  .eps-services__col:first-child,
  .eps-services__col:last-child {
    padding: 0;
  }

  .eps-services__col + .eps-services__col {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(193, 141, 162, 0.3);
  }

  .eps-services__btn {
    width: 100%;
  }
}

@media (hover: none), (pointer: coarse) {
  .eps-services__cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-services__photo img,
  .eps-services__btn {
    animation: none !important;
  }

  .eps-services--atelier .eps-services__list li {
    transition: none;
  }

  .eps-services--atelier .eps-services__list li:hover {
    transform: none;
  }
}

/* ---------- Services ultra carousel (compact multi-peek) ---------- */
.eps-services--carousel.eps-services--atelier {
  padding-top: clamp(1.6rem, 3vw, 2.35rem);
  padding-bottom: clamp(1.7rem, 3.2vw, 2.5rem);
}

.eps-services--carousel > .eps-container.eps-services__inner {
  width: min(100% - 0.75rem, 96rem);
  max-width: 96rem;
}

.eps-services--carousel .eps-services__head {
  margin: 0 auto 0.85rem;
  max-width: 34rem;
}

.eps-services--carousel .eps-services__title {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  margin-bottom: 0.4rem;
}

.eps-services--carousel .eps-services__lead {
  font-size: clamp(0.84rem, 1.05vw, 0.94rem);
  line-height: 1.45;
}

.eps-services--carousel .eps-services__stage {
  display: none;
}

.eps-svc-carousel {
  position: relative;
  margin: 0 auto;
  width: 100%;
  --eps-svc-slide-w: min(26%, 18.5rem);
}

.eps-svc-carousel__viewport {
  overflow: hidden;
  padding: 0.4rem 0 0.65rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.eps-svc-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-svc-carousel__track.is-jumping {
  transition: none !important;
}

.eps-svc-carousel__slide {
  position: relative;
  flex: 0 0 var(--eps-svc-slide-w);
  min-height: clamp(13rem, 28vh, 17.5rem);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  transform: scale(0.96);
  opacity: 1;
  filter: none;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  box-shadow: 0 10px 26px rgba(47, 26, 40, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #efe4dc;
}

.eps-svc-carousel__slide.is-active {
  transform: scale(1);
  box-shadow:
    0 16px 36px rgba(47, 26, 40, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.eps-svc-carousel__slide.is-near {
  transform: scale(0.98);
}

.eps-svc-carousel__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eps-svc-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  opacity: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-svc-carousel__slide.is-active .eps-svc-carousel__media img {
  transform: scale(1);
}

.eps-svc-carousel__glass {
  position: absolute;
  z-index: 2;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  display: grid;
  gap: 0.14rem;
  padding: 0.58rem 0.65rem 0.62rem;
  border-radius: 12px;
  background:
    linear-gradient(
      125deg,
      rgba(255, 252, 253, 0.92) 0%,
      rgba(255, 248, 250, 0.88) 55%,
      rgba(255, 255, 255, 0.84) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 18px rgba(47, 26, 40, 0.1);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
  transform: none;
}

.eps-svc-carousel__kicker {
  margin: 0;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(154, 79, 114, 0.9);
}

.eps-svc-carousel__name {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: clamp(0.92rem, 1.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.18;
  color: rgba(47, 26, 40, 0.92);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.eps-svc-carousel__meta {
  margin: 0.04rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.62rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  color: rgba(78, 42, 78, 0.55);
}

.eps-svc-carousel__link {
  margin-top: 0.22rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(154, 95, 120, 0.88) !important;
  text-decoration: none !important;
  opacity: 0.85;
  transition: gap 0.22s ease, color 0.2s ease, opacity 0.2s ease;
}

.eps-svc-carousel__slide:hover .eps-svc-carousel__link,
.eps-svc-carousel__slide.is-active .eps-svc-carousel__link:hover {
  gap: 0.42rem;
  opacity: 1;
  color: rgba(78, 42, 78, 0.92) !important;
}

.eps-svc-carousel__nav {
  position: absolute;
  top: 44%;
  z-index: 8;
  transform: translateY(-50%);
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 252, 253, 0.78);
  color: #4e2a4e;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 18px rgba(47, 26, 40, 0.12);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.eps-svc-carousel__nav:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 22px rgba(47, 26, 40, 0.16);
}

.eps-svc-carousel__nav--prev { left: 0.15rem; }
.eps-svc-carousel__nav--next { right: 0.15rem; }

.eps-svc-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28rem;
  margin-top: 0.2rem;
  padding: 0 0.35rem;
}

.eps-svc-carousel__dot {
  width: 0.42rem;
  height: 0.42rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(78, 42, 78, 0.22);
  cursor: pointer;
  transition: width 0.22s ease, background 0.2s ease;
}

.eps-svc-carousel__dot.is-active {
  width: 1.05rem;
  background: linear-gradient(90deg, #c45d8a, #4e2a4e);
}

.eps-services--carousel .eps-services__action {
  margin-top: 0.85rem;
}

.eps-services--carousel .eps-services__btn {
  min-width: min(100%, 15rem);
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .eps-svc-carousel {
    --eps-svc-slide-w: min(36%, 17rem);
  }
}

@media (max-width: 900px) {
  .eps-svc-carousel {
    --eps-svc-slide-w: min(44%, 15.5rem);
  }

  .eps-svc-carousel__slide {
    min-height: clamp(12rem, 34vw, 15.5rem);
  }

  .eps-svc-carousel__nav {
    width: 2.15rem;
    height: 2.15rem;
  }
}

@media (max-width: 640px) {
  .eps-svc-carousel {
    --eps-svc-slide-w: min(68%, 15rem);
  }

  .eps-svc-carousel__viewport {
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }

  .eps-svc-carousel__nav--prev { left: 0.35rem; }
  .eps-svc-carousel__nav--next { right: 0.35rem; }
}

@media (max-width: 420px) {
  .eps-svc-carousel {
    --eps-svc-slide-w: min(78%, 14.5rem);
  }

  .eps-svc-carousel__nav--prev { left: 0.2rem; }
  .eps-svc-carousel__nav--next { right: 0.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .eps-svc-carousel__track,
  .eps-svc-carousel__slide,
  .eps-svc-carousel__media img,
  .eps-svc-carousel__glass {
    transition: none !important;
  }
}

/* ---------- FAQ base (buttons must reset browser chrome) ---------- */
.eps-faq__item {
  background: var(--eps-white);
  border-radius: 16px;
  border: 1px solid rgba(78, 42, 78, 0.06);
  overflow: hidden;
}

.eps-faq__q {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.eps-faq__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--eps-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--eps-plum);
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.eps-faq__button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.eps-faq__button:hover,
.eps-faq__button:active,
.eps-faq__button:focus {
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.eps-faq__button:focus-visible {
  outline: 2px solid rgba(196, 93, 138, 0.55);
  outline-offset: -3px;
  border-radius: 10px;
}

.eps-faq__panel {
  padding: 0 1.25rem 1.15rem;
  color: var(--eps-muted);
}

.eps-faq__panel p {
  margin: 0;
}

.eps-faq__panel[hidden] {
  display: none !important;
}

/* ---------- FAQ atelier ? compact 50/50 ---------- */
.eps-faq--atelier {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-top: clamp(2.2rem, 4.5vw, 3.2rem);
  padding-bottom: clamp(2.3rem, 4.8vw, 3.4rem);
  background:
    radial-gradient(ellipse 50% 42% at 12% 0%, rgba(243, 196, 212, 0.22), transparent 62%),
    radial-gradient(ellipse 44% 38% at 90% 10%, rgba(193, 141, 162, 0.12), transparent 58%),
    linear-gradient(180deg, #faf6f4 0%, #f7f0f3 48%, #faf6f4 100%);
}

.eps-faq__bloom {
  position: absolute;
  width: clamp(78px, 10vw, 120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.62;
}

.eps-faq__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-faq__bloom--tl {
  top: 0.25rem;
  left: 0;
  animation: eps-faq-float-a 5.2s ease-in-out infinite;
}

.eps-faq__bloom--tr {
  top: 0.35rem;
  right: 0;
  animation: eps-faq-float-b 5.8s ease-in-out infinite;
}

.eps-faq__bloom--bl,
.eps-faq__bloom--br {
  display: none;
}

.eps-faq__flower {
  transform-origin: center;
  animation: eps-faq-sway 4.2s ease-in-out infinite;
}

.eps-faq__leaf {
  animation: eps-faq-leaf 3.4s ease-in-out infinite;
}

@keyframes eps-faq-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

@keyframes eps-faq-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes eps-faq-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@keyframes eps-faq-leaf {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

.eps-faq--atelier .eps-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
}

.eps-faq__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.35rem;
}

.eps-faq__eyebrow {
  margin: 0 0 0.28rem;
  font-family: var(--eps-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-faq__title {
  margin: 0 0 0.4rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: #5a2f5c;
  letter-spacing: -0.02em;
}

.eps-faq__ornament {
  display: none;
}

.eps-faq__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: #5a4a50;
  font-size: clamp(0.88rem, 1.15vw, 0.98rem);
  line-height: 1.55;
}

.eps-faq--atelier .eps-faq__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.eps-faq--atelier .eps-faq__list.is-expanded .eps-faq__item:not(.is-open) {
  opacity: 1;
  filter: none;
}

.eps-faq--atelier .eps-faq__item {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 244, 248, 0.9) 100%);
  border: 1px solid rgba(193, 141, 162, 0.26);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 16px rgba(78, 42, 78, 0.04);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  transition-delay: calc(var(--eps-fi, 1) * 0.03s);
  overflow: hidden;
}

.eps-faq--atelier.is-visible .eps-faq__item,
.eps-faq--atelier.is-in .eps-faq__item {
  opacity: 1;
  transform: none;
}

.eps-faq--atelier .eps-faq__item:hover {
  border-color: rgba(193, 141, 162, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 10px 22px rgba(78, 42, 78, 0.07);
}

.eps-faq--atelier .eps-faq__item.is-open,
.eps-faq--atelier .eps-faq__item:has(.eps-faq__button[aria-expanded="true"]) {
  border-color: rgba(196, 93, 138, 0.42);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 244, 248, 0.96) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 12px 26px rgba(78, 42, 78, 0.09);
}

.eps-faq--atelier .eps-faq__button {
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.7rem;
  font-family: var(--eps-font-display);
  font-size: clamp(0.86rem, 1.05vw, 0.94rem);
  font-weight: 600;
  line-height: 1.3;
  color: #2f1a28;
  background: transparent !important;
}

.eps-faq__num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  font-family: var(--eps-font-display);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: #6b3558;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.98), transparent 52%),
    linear-gradient(155deg, #fff7f9, #f3e4ea);
  border: 1px solid rgba(193, 141, 162, 0.4);
  box-shadow: 0 4px 10px rgba(78, 42, 78, 0.06);
}

.eps-faq__label {
  flex: 1;
  min-width: 0;
}

.eps-faq__toggle {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(193, 141, 162, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-faq__toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.45rem;
  height: 1.5px;
  background: #c45d8a;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.eps-faq__toggle-bar:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.eps-faq--atelier .eps-faq__button[aria-expanded="true"] .eps-faq__toggle {
  background: #4e2a4e;
  border-color: #4e2a4e;
  transform: rotate(180deg);
}

.eps-faq--atelier .eps-faq__button[aria-expanded="true"] .eps-faq__toggle-bar {
  background: #fff;
}

.eps-faq--atelier .eps-faq__button[aria-expanded="true"] .eps-faq__toggle-bar:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.eps-faq--atelier .eps-faq__button[aria-expanded="true"] .eps-faq__num {
  color: #fff;
  background: linear-gradient(155deg, #c45d8a, #4e2a4e);
  border-color: transparent;
}

.eps-faq--atelier .eps-faq__panel {
  position: static;
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: none;
  clip-path: none;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.35s ease;
}

.eps-faq--atelier .eps-faq__panel.is-open {
  grid-template-rows: 1fr;
  padding: 0 0.7rem 0.85rem;
  pointer-events: auto;
}

.eps-faq--atelier .eps-faq__panel.is-closing {
  grid-template-rows: 0fr;
  padding: 0 0.7rem;
  pointer-events: none;
}

.eps-faq--atelier .eps-faq__panel[hidden] {
  display: none !important;
}

.eps-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.eps-faq--atelier .eps-faq__panel p {
  margin: 0;
  padding-top: 0.15rem;
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
  line-height: 1.55;
  color: #5a4a50;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.32s ease 0.06s,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.eps-faq--atelier .eps-faq__panel.is-open p {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .eps-faq--atelier .eps-faq__panel,
  .eps-faq--atelier .eps-faq__panel p {
    transition: none !important;
    transform: none !important;
  }

  .eps-faq--atelier .eps-faq__panel.is-open p {
    opacity: 1 !important;
  }
}

.eps-faq__cta {
  position: relative;
  z-index: 0;
  margin-top: clamp(1.15rem, 2.4vw, 1.55rem);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.25s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.eps-faq--atelier.is-visible .eps-faq__cta,
.eps-faq--atelier.is-in .eps-faq__cta {
  opacity: 1;
  transform: none;
}

.eps-faq__btn,
.eps-faq__more {
  min-width: min(100%, 14rem);
  justify-content: center;
  border-radius: 999px;
}

.eps-faq__more {
  border-color: rgba(78, 42, 78, 0.35);
  color: #4e2a4e !important;
}

@media (max-width: 980px) {
  .eps-faq--atelier .eps-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .eps-faq--atelier .eps-faq__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .eps-faq__bloom {
    width: 72px;
    opacity: 0.4;
  }

  .eps-faq--atelier .eps-faq__button {
    gap: 0.55rem;
    padding: 0.72rem 0.7rem;
  }

  .eps-faq__num {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.64rem;
  }

  .eps-faq__btn,
  .eps-faq__more {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-faq__bloom--tl,
  .eps-faq__bloom--tr,
  .eps-faq__flower,
  .eps-faq__leaf {
    animation: none !important;
  }

  .eps-faq--atelier .eps-faq__item,
  .eps-faq__cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* CTA band */
.eps-cta-band {
  margin: 2rem 0 0;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--eps-plum) 0%, #6a3a62 55%, #8a5578 100%);
  color: #fff;
}

.eps-cta-band__inner {
  max-width: 640px;
  text-align: center;
}

.eps-eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
}

.eps-cta-band__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.15;
  color: #fff;
}

.eps-cta-band__text {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- CTA atelier ? photo stage + soft ribbon ---------- */
.eps-cta-band--atelier {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: clamp(2.35rem, 5vw, 3.6rem) 0;
  background:
    radial-gradient(ellipse 48% 90% at 50% 50%, #6d3d5c 0%, transparent 70%),
    radial-gradient(ellipse 34% 60% at 8% 30%, rgba(196, 93, 138, 0.28), transparent 58%),
    linear-gradient(120deg, #3a1f3a 0%, #4e2a4e 42%, #5c3458 100%);
  color: #fff;
}

.eps-cta-band__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.eps-cta-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.1);
  filter: saturate(0.9) brightness(0.68) contrast(1.05);
  animation: eps-cta-ken 22s ease-in-out infinite alternate;
}

.eps-cta-band__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 18, 40, 0.72) 0%, rgba(78, 42, 78, 0.52) 48%, rgba(58, 28, 52, 0.68) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.eps-cta-band__glow {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(78vw, 520px);
  height: min(46vw, 220px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 196, 212, 0.42), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 1;
  animation: eps-cta-glow 7.5s ease-in-out infinite;
}

.eps-cta-band__mist {
  position: absolute;
  inset: auto 0 -20% 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(243, 196, 212, 0.12) 40%, rgba(78, 42, 78, 0.2));
  pointer-events: none;
  z-index: 1;
  animation: eps-cta-mist 9s ease-in-out infinite alternate;
}

@keyframes eps-cta-ken {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes eps-cta-mist {
  0% {
    opacity: 0.55;
    transform: translateY(0);
  }
  100% {
    opacity: 0.9;
    transform: translateY(-4%);
  }
}

.eps-cta-band__ring {
  display: none;
}

.eps-cta-band__bloom {
  position: absolute;
  width: clamp(72px, 9vw, 110px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.72;
}

.eps-cta-band__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-cta-band__bloom--tl {
  top: -0.15rem;
  left: -0.35rem;
  animation: eps-cta-float-a 6.8s ease-in-out infinite;
}

.eps-cta-band__bloom--tr,
.eps-cta-band__bloom--bl {
  display: none;
}

.eps-cta-band__bloom--br {
  bottom: -0.2rem;
  right: -0.3rem;
  width: clamp(64px, 8vw, 96px);
  animation: eps-cta-float-b 7.4s ease-in-out infinite 0.4s;
}

.eps-cta-band__flower {
  transform-origin: center;
  animation: eps-cta-sway 5.2s ease-in-out infinite;
}

.eps-cta-band__leaf {
  animation: eps-cta-leaf 4.2s ease-in-out infinite;
}

.eps-cta-band__spark {
  display: none;
}

@keyframes eps-cta-glow {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes eps-cta-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes eps-cta-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-9px) rotate(-2deg); }
}

@keyframes eps-cta-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@keyframes eps-cta-leaf {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

.eps-cta-band__stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.eps-cta-band__glass {
  position: relative;
  width: min(100%, 58rem);
  padding: 1.25rem 1.45rem;
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 55%, rgba(243, 196, 212, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 18px 44px rgba(20, 8, 20, 0.32);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-cta-band--atelier.is-visible .eps-cta-band__glass,
.eps-cta-band--atelier.is-in .eps-cta-band__glass {
  opacity: 1;
  transform: none;
}

.eps-cta-band__glass-shine {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 72%);
  pointer-events: none;
  transform: rotate(-8deg);
}

.eps-cta-band--atelier .eps-cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem 1.6rem;
  text-align: left;
}

.eps-cta-band__copy {
  min-width: 0;
  flex: 1;
}

.eps-cta-band__eyebrow {
  margin: 0 0 0.28rem;
  font-family: var(--eps-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 196, 212, 0.92);
}

.eps-cta-band__ornament {
  display: none;
}

.eps-cta-band--atelier .eps-cta-band__title {
  margin: 0 0 0.4rem;
  max-width: 30ch;
  font-size: clamp(1.35rem, 2.55vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 28px rgba(20, 8, 20, 0.28);
}

.eps-cta-band--atelier .eps-cta-band__title,
.eps-cta-band--atelier .eps-cta-band__title span,
#eps-cta-title,
#eps-cta-title span {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 2px 22px rgba(10, 4, 14, 0.42), 0 1px 0 rgba(10, 4, 14, 0.2);
}

.eps-cta-band--atelier .eps-cta-band__text,
.eps-cta-band--atelier .eps-cta-band__text span {
  color: rgba(255, 255, 255, 0.88) !important;
}

.eps-cta-band--atelier .eps-cta-band__text {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.eps-cta-band__btn {
  flex: 0 0 auto;
  min-width: 12.5rem;
  justify-content: center;
  border-radius: 999px;
  border-width: 1.5px;
  padding: 0.78rem 1.3rem;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 22px rgba(20, 8, 20, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.eps-cta-band__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(20, 8, 20, 0.22);
}

@media (max-width: 720px) {
  .eps-cta-band--atelier {
    padding: 2rem 0;
  }

  .eps-cta-band__bloom {
    width: 68px;
    opacity: 0.45;
  }

  .eps-cta-band__glass {
    padding: 1.15rem 1.05rem 1.2rem;
    border-radius: 18px;
  }

  .eps-cta-band--atelier .eps-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1rem;
  }

  .eps-cta-band--atelier .eps-cta-band__title {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.28rem, 5.5vw, 1.55rem);
  }

  .eps-cta-band--atelier .eps-cta-band__text {
    margin-left: 0;
    margin-right: 0;
  }

  .eps-cta-band__btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-cta-band__glow,
  .eps-cta-band__mist,
  .eps-cta-band__photo img,
  .eps-cta-band__bloom--tl,
  .eps-cta-band__bloom--br,
  .eps-cta-band__flower,
  .eps-cta-band__leaf {
    animation: none !important;
  }

  .eps-cta-band__photo img {
    transform: scale(1.05);
  }

  .eps-cta-band__glass {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .eps-cta-band__btn:hover {
    transform: none;
  }
}

/* Post grid / cards */
.eps-archive__header {
  margin-bottom: 2rem;
}

.eps-archive__desc {
  color: var(--eps-muted);
}

.eps-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.eps-card {
  background: var(--eps-white);
  border-radius: var(--eps-radius);
  overflow: hidden;
  box-shadow: var(--eps-shadow-soft);
  border: 1px solid rgba(78, 42, 78, 0.04);
  transition: transform 0.3s var(--eps-ease), box-shadow 0.3s var(--eps-ease);
}

.eps-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--eps-shadow);
}

.eps-card__link {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
  height: 100%;
}

.eps-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--eps-mauve-soft);
}

.eps-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eps-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.eps-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--eps-font-display);
  font-size: 1.35rem;
  color: var(--eps-plum);
  line-height: 1.25;
}

.eps-card__excerpt {
  margin: 0 0 0.75rem;
  color: var(--eps-muted);
  font-size: 0.92rem;
}

.eps-card__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--eps-mauve);
}

/* Global breadcrumb bar — separate from UX anchors (V2) */
.eps-breadcrumb-bar {
  padding: 0.45rem 0 0.2rem;
}
.eps-breadcrumb-bar .eps-breadcrumbs {
  display: block;
  max-width: 100%;
}
.eps-ux {
  /* local page anchors only — no breadcrumb inside */
}

/* Compact professional crumbs bar (interior pages) */
.eps-crumbs-bar {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 246, 244, 0.55));
  border-bottom: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-crumbs-wrap {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0.38rem 0;
}

.eps-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  color: var(--eps-muted);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.eps-crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--eps-font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.eps-crumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.eps-crumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--eps-muted);
  text-decoration: none !important;
  padding: 0.12rem 0.28rem;
  border-radius: 5px;
  transition: color 0.2s var(--eps-ease), background 0.2s var(--eps-ease);
}

.eps-crumbs__link:hover,
.eps-crumbs__link:focus-visible {
  color: var(--eps-plum);
  background: rgba(193, 141, 162, 0.12);
}

.eps-crumbs__home {
  display: inline-flex;
  color: #9a5f78;
  line-height: 0;
}

.eps-crumbs__home svg,
.eps-crumbs__ico {
  width: 14px;
  height: 14px;
}

.eps-crumbs__sep {
  color: rgba(78, 42, 78, 0.28);
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin: 0 0.05rem;
}

.eps-crumbs__current {
  color: var(--eps-plum);
  font-weight: 650;
  padding: 0.12rem 0.28rem;
}

.eps-crumbs__flora {
  display: none;
}

@media (max-width: 640px) {
  .eps-crumbs-wrap {
    padding: 0.3rem 0;
  }

  .eps-crumbs__list {
    font-size: 0.74rem;
  }
}

/* Breadcrumbs — psychology pill (legacy / other pages) */
.eps-breadcrumbs {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.eps-breadcrumbs--pill .eps-breadcrumbs__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  min-height: 48px;
  padding: 0.2rem 0.55rem 0.2rem 0.35rem;
  border-radius: 999px;
  background: #fffdfb;
  border: 1px solid rgba(78, 42, 78, 0.12);
  box-shadow: 0 10px 28px rgba(78, 42, 78, 0.06);
  position: relative;
  overflow: hidden;
}

.eps-container > .eps-breadcrumbs,
.eps-content-wrap > .eps-breadcrumbs,
.eps-page-chrome--solo .eps-breadcrumbs {
  margin: 0.85rem 0 1.1rem;
  display: block;
}

.eps-breadcrumbs__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--eps-muted);
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.eps-breadcrumbs__list::-webkit-scrollbar { display: none; }

.eps-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  min-height: 44px;
  flex: 0 0 auto;
}

.eps-breadcrumbs__sep {
  display: block;
  flex-shrink: 0;
  color: rgba(78, 42, 78, 0.35);
  margin: 0 0.1rem;
}

.eps-breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  color: var(--eps-muted);
  text-decoration: none !important;
  transition: color 0.2s var(--eps-ease), background 0.2s var(--eps-ease);
}

.eps-breadcrumbs__link:hover {
  color: var(--eps-plum);
  background: rgba(193, 141, 162, 0.12);
}

.eps-breadcrumbs__home-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(248, 232, 237, 0.95);
  color: var(--eps-plum);
  border: 1px solid rgba(193, 141, 162, 0.28);
  line-height: 0;
}

.eps-breadcrumbs__current {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  color: var(--eps-plum);
  font-weight: 650;
  letter-spacing: -0.01em;
  max-width: 28ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eps-breadcrumbs__flora {
  display: inline-flex;
  align-items: center;
  margin-left: 0.15rem;
  opacity: 0.18;
  color: #c18da2;
  pointer-events: none;
  flex-shrink: 0;
}

.eps-breadcrumbs__flora svg {
  width: 56px;
  height: auto;
}

@media (max-width: 640px) {
  .eps-breadcrumbs__flora { display: none; }
}

/* Unified page chrome: breadcrumbs + UX subnav */
.eps-page-chrome {
  position: sticky;
  top: calc(var(--eps-topbar-h) + var(--eps-header-h) - 1px);
  z-index: 40;
}

.eps-page-chrome__flora { display: none; }

.eps-page-chrome--solo {
  position: relative;
  top: auto;
  margin: 0.75rem auto 0;
  padding: 0.35rem 0;
}

.eps-page-chrome .eps-ux {
  position: relative;
  top: auto;
  background: rgba(250, 246, 244, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(193, 141, 162, 0.28);
  box-shadow: 0 10px 28px rgba(78, 42, 78, 0.05);
}

.eps-ux__crumbs {
  flex: 0 1 auto;
  min-width: 0;
  margin-right: 0.15rem;
  padding-right: 0.85rem;
  border-right: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-ux__crumbs .eps-crumbs {
  width: auto;
}

.eps-ux__crumbs .eps-crumbs__list {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  flex-wrap: nowrap;
  max-width: min(42vw, 22rem);
  overflow: hidden;
}

.eps-ux__crumbs .eps-crumbs__item {
  min-width: 0;
}

.eps-ux__crumbs .eps-crumbs__item--current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eps-ux__crumbs .eps-crumbs__current {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.1rem 0.15rem;
  font-weight: 600;
}

.eps-ux__crumbs .eps-crumbs__link {
  padding: 0.1rem 0.2rem;
  color: rgba(107, 90, 104, 0.92);
}

.eps-ux__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem 0.9rem;
  min-height: 52px;
  padding-block: 0.4rem;
}

.eps-ux--legal .eps-ux__inner,
.eps-main--page-shell > .eps-ux .eps-ux__inner {
  min-height: 50px;
}

.eps-main--page-shell > .eps-ux {
  background: rgba(255, 252, 250, 0.94);
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow: 0 6px 18px rgba(78, 42, 78, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eps-main--page-shell > .eps-ux .eps-ux__link {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .eps-ux__crumbs {
    width: 100%;
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(193, 141, 162, 0.2);
  }

  .eps-ux__crumbs .eps-crumbs__list {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .eps-ux__inner {
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 0.45rem;
  }

  .eps-ux__list {
    width: 100%;
    order: 3;
  }

  .eps-ux__cta {
    margin-left: auto;
  }
}

/* Mobile: crumbs clutter + collide with float header — pills only, clear sticky gap */
@media (max-width: 719px) {
  :root {
    --eps-ux-sticky-top: calc(2px + var(--eps-header-h) + 10px);
  }

  .eps-ux,
  .eps-main--page-shell > .eps-ux {
    top: var(--eps-ux-sticky-top);
    z-index: 90;
    margin: 0.55rem 0.7rem 0.15rem;
    width: auto;
    max-width: none;
    border-radius: 14px;
    border: 1px solid rgba(78, 42, 78, 0.1);
    background: rgba(255, 252, 250, 0.96);
    box-shadow: 0 8px 22px rgba(78, 42, 78, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .admin-bar .eps-ux,
  .admin-bar .eps-main--page-shell > .eps-ux {
    top: calc(46px + var(--eps-ux-sticky-top));
  }

  .eps-ux__crumbs {
    display: none;
  }

  .eps-ux__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.35rem;
    min-height: 44px;
    padding: 0.3rem 0.4rem;
  }

  .eps-ux__list {
    width: auto;
    flex: 1;
    order: 0;
    gap: 0.3rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .eps-ux__list::-webkit-scrollbar {
    display: none;
  }

  .eps-main--page-shell > .eps-ux .eps-ux__link,
  .eps-ux__link {
    padding: 0.38rem 0.78rem;
    font-size: 0.78rem;
  }

  /* Standalone crumbs bar (pages without UX) */
  .eps-crumbs-bar {
    margin: 0.45rem 0.7rem 0;
    border-radius: 12px;
    border: 1px solid rgba(78, 42, 78, 0.08);
    background: rgba(255, 252, 250, 0.96);
  }

  .eps-crumbs-wrap {
    padding: 0.4rem 0.55rem;
  }

  .eps-crumbs__list {
    font-size: 0.74rem;
  }
}

@media screen and (min-width: 783px) {
  .admin-bar .eps-ux,
  .admin-bar .eps-main--page-shell > .eps-ux {
    top: calc(32px + var(--eps-topbar-h) + var(--eps-header-h) - 1px);
  }
}

@media screen and (min-width: 783px) and (max-width: 900px) {
  .admin-bar .eps-ux,
  .admin-bar .eps-main--page-shell > .eps-ux {
    top: calc(32px + var(--eps-topbar-h) + var(--eps-header-h) - 1px);
  }
}

/* Search */
.eps-search {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
  max-width: 480px;
}

.eps-search__input {
  flex: 1;
  min-width: 180px;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border-radius: var(--eps-radius-pill);
  border: 1.5px solid rgba(78, 42, 78, 0.15);
  background: #fff;
  font-family: var(--eps-font-body);
  font-size: 0.95rem;
  color: var(--eps-text);
}

.eps-search__btn {
  width: auto;
}

/* Pagination */
.eps-pagination,
.navigation.pagination {
  margin-top: 2.5rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--eps-radius-pill);
  background: #fff;
  color: var(--eps-plum);
  border: 1px solid rgba(78, 42, 78, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--eps-plum);
  color: #fff !important;
  border-color: var(--eps-plum);
}

/* Comments */
.eps-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-comments__title {
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.75rem;
}

.eps-comments__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.eps-comments__list .comment {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(78, 42, 78, 0.06);
}

.eps-comments__form textarea,
.eps-comments__form input[type="text"],
.eps-comments__form input[type="email"],
.eps-comments__form input[type="url"] {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(78, 42, 78, 0.15);
  font-family: var(--eps-font-body);
  margin-bottom: 0.75rem;
}

.eps-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.eps-footer__nap {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
  font-size: 0.78rem;
  color: #5a4a50;
}

.eps-footer__nap li {
  display: grid;
  gap: 0.02rem;
}

.eps-footer__nap-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c45d8a;
  font-weight: 600;
}

.eps-footer__nap a {
  color: #4e2a4e;
  font-weight: 500;
}

.eps-footer__nap a:hover {
  color: #c45d8a;
}

.eps-footer__widgets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  padding-bottom: 1.1rem;
}

.eps-footer__legal {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.25rem 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.55rem 0 0;
  border-top: 1px solid rgba(193, 141, 162, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.015em;
}

.eps-footer__legal a {
  color: #6a5a60;
  transition: color 0.2s var(--eps-ease);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.15rem;
}

.eps-footer__legal a:hover {
  color: #4e2a4e;
}

.eps-none {
  text-align: center;
  padding: 2rem 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .eps-nav__list > li > a,
  .eps-nav__mega-trigger {
    font-size: 0.86rem;
    padding: 0.45rem 0.48rem;
  }

  .eps-header__inner {
    gap: 0.75rem 0.85rem;
  }

  .eps-logo--lg .eps-logo__name {
    font-size: 1.45rem;
  }
}

@media (max-width: 1100px) {
  .eps-topbar__trust-full {
    display: none;
  }

  .eps-topbar__trust-short {
    display: inline;
  }

  .eps-topbar__row {
    justify-content: center;
    gap: 0.3rem 0.55rem;
    flex-wrap: wrap;
  }

  .eps-topbar__row > li:not(:last-child)::after {
    margin-left: 0.55rem;
  }
}

/* <=719: ONLY mail + Autorizat â€” compact single row */
@media (max-width: 719px) {
  :root {
    --eps-topbar-h: 32px;
  }

  .eps-topbar {
    z-index: 100;
    min-height: 32px;
  }

  .eps-topbar__inner {
    padding: 0.2rem 0;
    width: calc(100% - 1rem);
    max-width: none;
    box-sizing: border-box;
  }

  .eps-topbar__row {
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: center;
    gap: 0.65rem 1rem;
    overflow: visible;
    width: 100%;
  }

  .eps-topbar__row > li {
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    white-space: nowrap;
  }

  .eps-topbar__item--phone,
  .eps-topbar__item--conf,
  .eps-topbar__item--ro {
    display: none !important;
  }

  .eps-topbar__item--mail,
  .eps-topbar__item--autorizat {
    display: inline-flex !important;
  }

  .eps-topbar__item--social {
    display: inline-flex !important;
    margin-left: 0;
  }

  .eps-social--topbar .eps-social__text {
    display: none;
  }

  .eps-topbar__trust-full {
    display: none;
  }

  .eps-topbar__trust-short {
    display: inline;
  }

  .eps-header {
    z-index: 200;
  }

  .eps-header__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
  }

  .eps-header__tools {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    justify-self: end;
    flex-shrink: 0;
    min-width: max-content;
  }

  .eps-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .eps-nav-toggle {
    display: inline-grid !important;
    z-index: 250;
    width: 42px;
    height: 42px;
    align-self: center;
  }

  .eps-header__cta {
    display: none !important;
  }
}

/* Mid tablet: hide Rom?nia so labels don't truncate */
@media (max-width: 980px) and (min-width: 768px) {
  .eps-topbar__item--ro {
    display: none;
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  :root {
    --eps-topbar-h: 42px;
  }

  .eps-topbar__inner {
    padding: 0.28rem 0;
  }

  .eps-header__cta {
    display: none;
  }
}

/* Nav + drawer + hamburger from ≤1186 */
@media (max-width: 1186px) {
  .eps-topbar {
    min-height: var(--eps-topbar-h);
  }

  /* Compact 2-row topbar ? nothing truncated / hidden by overflow */
  .eps-topbar__inner {
    padding: 0.35rem 0;
    width: min(100% - 1.25rem, var(--eps-container));
  }

  .eps-topbar__row {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    gap: 0.25rem 0.85rem;
    row-gap: 0.2rem;
  }

  .eps-topbar__row > li {
    white-space: nowrap;
    font-size: 0.72rem;
  }

  /* Keep email + phone; short trust labels only ? no mid-word cut */
  .eps-topbar__trust-full {
    display: none;
  }

  .eps-topbar__trust-short {
    display: inline;
  }

  .eps-topbar__conf-full {
    display: none;
  }

  .eps-topbar__conf-short {
    display: inline;
  }

  .eps-topbar__contacts,
  .eps-topbar__trust {
    justify-content: center;
    gap: 0.45rem 0.85rem;
  }

  .eps-topbar__note > :not(.eps-topbar__pill) {
    display: none;
  }

  .eps-topbar__pill-full {
    display: none;
  }

  .eps-topbar__pill-short {
    display: inline;
  }

  .eps-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
  }

  .eps-header__tools {
    gap: 0.45rem;
    flex-shrink: 0;
    min-width: max-content;
  }

  .eps-header__cta {
    display: none;
  }

  .eps-header:not(.is-nav-open) .eps-nav-toggle {
    display: inline-grid !important;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    width: 42px;
    height: 42px;
    z-index: 260;
  }

  .eps-header .eps-logo--wordmark {
    min-width: 0;
    max-width: 100%;
  }

  .eps-header .eps-logo--wordmark img,
  .eps-header .eps-logo--wordmark .custom-logo {
    max-width: min(100%, 12.5rem);
  }

  .eps-hero__full-inner {
    padding: 3.5rem 0 5.5rem;
  }

  .eps-hero__full-nav {
    right: 1.25rem;
    left: 1.25rem;
    justify-content: center;
  }

  .eps-hero__full-title {
    max-width: none;
  }

  .eps-hero__full-media,
  .eps-hero__full-img {
    object-position: center top;
  }

  .eps-slider__content {
    margin-left: 1.25rem;
    padding-bottom: 6rem;
  }

  .eps-slider__controls {
    right: 1.25rem;
    left: 1.25rem;
    justify-content: center;
  }

  .eps-hero__badge {
    width: 96px;
    height: 96px;
    font-size: 0.6rem;
    right: 0.2rem;
    bottom: 14%;
  }

  .eps-hero--pro {
    padding: 1.75rem 0 3rem;
  }

  .eps-hero--pro .eps-hero__media {
    justify-self: center;
    order: 2;
    width: min(100%, 380px);
    margin-top: 0.5rem;
  }

  .eps-hero--pro .eps-hero__content {
    order: 1;
  }

  .eps-hero--pro .eps-hero__title {
    max-width: none;
  }

  .eps-hero__float {
    right: 0.35rem;
    top: 0.85rem;
    max-width: 10.5rem;
    padding: 0.7rem 0.85rem;
  }

  .eps-hero__botanical {
    opacity: 0.16;
    width: min(160px, 36vw);
  }

  .eps-nav {
    display: none;
  }

  .eps-nav.is-open {
    display: flex;
  }

  .eps-nav__mobile-head {
    display: none;
  }

  html.eps-nav-open,
  html.eps-nav-open body {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  html.eps-nav-open .eps-topbar,
  html.eps-nav-open .eps-float {
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }

  /* ?? Mobile menu: deep plum atelier (mockup) ?? */
  .eps-header.is-nav-open {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    z-index: 5000 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
    background: #2a1424 !important;
  }

  body.admin-bar .eps-header.is-nav-open {
    top: 32px !important;
    inset: 32px 0 0 0 !important;
    height: calc(100% - 32px) !important;
    max-height: calc(100dvh - 32px) !important;
  }

  @media screen and (max-width: 782px) {
    body.admin-bar .eps-header.is-nav-open {
      top: 46px !important;
      inset: 46px 0 0 0 !important;
      height: calc(100% - 46px) !important;
      max-height: calc(100dvh - 46px) !important;
    }
  }

  .eps-header.is-nav-open .eps-header__shell {
    position: relative;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    padding:
      max(0.25rem, env(safe-area-inset-top, 0px))
      max(0.75rem, env(safe-area-inset-right, 0px))
      max(0.65rem, env(safe-area-inset-bottom, 0px))
      max(0.75rem, env(safe-area-inset-left, 0px)) !important;
    background:
      radial-gradient(ellipse at 10% 92%, rgba(196, 93, 138, 0.2), transparent 44%),
      radial-gradient(ellipse at 94% 6%, rgba(232, 160, 188, 0.14), transparent 42%),
      radial-gradient(ellipse at 78% 55%, rgba(107, 53, 88, 0.22), transparent 48%),
      linear-gradient(165deg, #3a1c30 0%, #2a1424 48%, #1f0f1b 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: eps-nav-sheet-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .eps-header.is-nav-open .eps-header__shell::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 240' fill='none'%3E%3Cpath d='M28 210c28-52 68-64 96-38-36 24-64 48-96 38Z' stroke='%23e8a0bc' stroke-width='1.2' opacity='.45'/%3E%3Cpath d='M52 148c14-32 44-40 66-20-28 12-48 28-66 20Z' stroke='%23f3c4d4' stroke-width='1.1' opacity='.35'/%3E%3Cpath d='M18 164c-10-34 12-62 42-70-12 34-6 62-42 70Z' stroke='%23e8a0bc' stroke-width='1.1' opacity='.32'/%3E%3Ccircle cx='74' cy='142' r='2.4' fill='%23e8a0bc' opacity='.4'/%3E%3C/svg%3E")
      left -4% bottom -2% / min(52vw, 220px) no-repeat,
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M168 28c-24 42-10 72 22 84-30 8-54-18-22-84Z' stroke='%23f3c4d4' stroke-width='1.15' opacity='.4'/%3E%3Cpath d='M132 58c-14 26-8 52 14 64-22 2-40-18-14-64Z' stroke='%23e8a0bc' stroke-width='1.05' opacity='.32'/%3E%3Cpath d='M154 88c18 12 26 34 16 52' stroke='%23f3c4d4' stroke-width='1' opacity='.28'/%3E%3Ccircle cx='148' cy='72' r='2.2' fill='%23f3c4d4' opacity='.38'/%3E%3C/svg%3E")
      right -2% top 2% / min(44vw, 190px) no-repeat,
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' fill='none'%3E%3Cpath d='M20 40c18-28 48-32 68-12-24 10-44 24-68 12Z' stroke='%23e8a0bc' stroke-width='1' opacity='.22'/%3E%3Cpath d='M132 128c-16 22-42 28-62 12 22-8 40-20 62-12Z' stroke='%23f3c4d4' stroke-width='1' opacity='.2'/%3E%3C/svg%3E")
      left 8% top 38% / min(28vw, 120px) no-repeat;
  }

  .eps-header.is-nav-open .eps-header__shell::after {
    display: none !important;
  }

  .eps-header.is-nav-open .eps-header__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    height: 100%;
    min-height: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }

  .eps-header.is-nav-open .eps-logo,
  .eps-header.is-nav-open .eps-logo--custom,
  .eps-header.is-nav-open .eps-logo--wordmark,
  .eps-header.is-nav-open .eps-logo--lg {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
  }

  .eps-header.is-nav-open .eps-header__tools,
  .eps-header.is-nav-open .eps-header__actions,
  .eps-header.is-nav-open .eps-nav-toggle {
    display: none !important;
  }

  .eps-header.is-nav-open .eps-nav {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    inset: auto;
    display: flex !important;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    max-height: none;
    --eps-m-svc-top: 38%;
    --eps-m-svc-bottom: 5rem;
  }

  .eps-nav__sheet-top {
    display: none;
  }

  .eps-header.is-nav-open .eps-nav__sheet-top {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.55rem;
    flex: 0 0 auto;
    margin: 0 0 0.15rem;
  }

  .eps-header.is-nav-open .eps-nav__mobile-head {
    display: block !important;
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0.72rem 0.85rem 0.8rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(90, 42, 70, 0.92) 0%, rgba(58, 28, 48, 0.88) 100%);
    border: 1px solid rgba(232, 160, 188, 0.22);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    animation: eps-nav-item-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .eps-nav__mobile-flora {
    display: block !important;
    position: absolute;
    right: -0.6rem;
    top: 42%;
    transform: translateY(-50%);
    width: 7.2rem;
    height: 8.2rem;
    color: rgba(243, 196, 212, 0.62);
    pointer-events: none;
  }

  .eps-nav__mobile-flora svg {
    width: 100%;
    height: 100%;
  }

  .eps-nav__mobile-kicker {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 245, 250, 0.78);
  }

  .eps-nav__mobile-name {
    margin: 0.28rem 0 0.55rem;
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: 13ch;
    font-family: var(--eps-font-display);
    font-size: 1.55rem;
    font-weight: 560;
    line-height: 1.1;
    color: #fffaf8;
    text-align: left;
  }

  .eps-nav__mobile-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    display: grid !important;
    gap: 0.35rem;
  }

  .eps-nav__mobile-contact li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 236, 244, 0.82);
  }

  .eps-nav__mobile-contact svg {
    flex: 0 0 auto;
    opacity: 0.85;
  }

  .eps-nav__mobile-contact a,
  .eps-nav__mobile-contact span {
    color: rgba(255, 236, 244, 0.88) !important;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none !important;
    word-break: break-word;
  }

  .eps-nav__close {
    display: none;
  }

  .eps-header.is-nav-open .eps-nav__close {
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    margin: 0.15rem 0 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    cursor: pointer;
    z-index: 5;
  }

  .eps-nav__close-x {
    position: relative;
    width: 14px;
    height: 14px;
  }

  .eps-nav__close-x::before,
  .eps-nav__close-x::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1.5px;
    border-radius: 2px;
    background: rgba(255, 250, 248, 0.92);
  }

  .eps-nav__close-x::before { transform: translate(-50%, -50%) rotate(45deg); }
  .eps-nav__close-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

  .eps-nav__list {
    flex: 0 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    max-height: none;
    overflow: visible;
    padding: 0.15rem 0.15rem 0;
    margin: 0;
  }

  .eps-header.is-nav-open .eps-nav__list {
    overflow: visible;
  }

  .eps-nav__list > li {
    width: 100%;
    border-bottom: 0;
    animation: eps-nav-item-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .eps-nav__list > li:last-child {
    border-bottom: 0;
  }

  .eps-nav__list > li:nth-child(1) { animation-delay: 0.04s; }
  .eps-nav__list > li:nth-child(2) { animation-delay: 0.08s; }
  .eps-nav__list > li:nth-child(3) { animation-delay: 0.12s; }
  .eps-nav__list > li:nth-child(4) { animation-delay: 0.16s; }
  .eps-nav__list > li:nth-child(5) { animation-delay: 0.2s; }
  .eps-nav__list > li:nth-child(6) { animation-delay: 0.24s; }

  .eps-nav__list > li > a,
  .eps-nav__mega-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
    padding: 0.58rem 0.1rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #fff6f9 !important;
    border-radius: 0;
    background: transparent;
    font-family: var(--eps-font-display);
  }

  .eps-nav__ico {
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0;
    color: #f3c4d4;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .eps-nav__ico-svg,
  .eps-nav__ico svg {
    width: 1.28rem;
    height: 1.28rem;
    display: block;
  }

  .eps-nav__list > li > a:hover .eps-nav__ico,
  .eps-nav__mega-trigger:hover .eps-nav__ico,
  .eps-nav__list > li > a:focus-visible .eps-nav__ico {
    color: #fff8fc;
    background: transparent;
    border-color: transparent;
  }

  .eps-nav__label {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }

  .eps-nav__chev,
  .eps-nav__caret {
    display: block !important;
    flex: 0 0 auto;
    margin-left: auto;
    color: rgba(255, 240, 246, 0.72);
    transition: transform 0.25s ease;
  }

  .eps-nav__item--mega.is-svc-open .eps-nav__caret {
    transform: rotate(90deg);
  }

  .eps-nav__list > li > a::after {
    display: none;
  }

  .eps-nav__mobile-bloom {
    display: none;
  }

  .eps-header.is-nav-open .eps-nav__mobile-bloom {
    display: block !important;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
    min-height: 9rem;
    margin: 0.3rem 0.1rem 0.4rem;
    border-radius: 0;
    overflow: visible;
    isolation: isolate;
    animation: eps-nav-item-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
    transition: opacity 0.28s ease, transform 0.28s ease;
    box-shadow: none;
  }

  .eps-header.is-nav-open .eps-nav.is-svc-open .eps-nav__mobile-bloom {
    opacity: 0.2;
    transform: scale(0.985);
    pointer-events: none;
  }

  .eps-nav__mobile-bloom-art {
    display: block !important;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    color: rgba(243, 196, 212, 0.48);
  }

  .eps-nav__mobile-bloom-art--tl {
    left: -0.55rem;
    top: -0.65rem;
    width: 5.4rem;
    height: 5.4rem;
  }

  .eps-nav__mobile-bloom-art--br {
    right: -0.45rem;
    bottom: -0.55rem;
    width: 5rem;
    height: 5rem;
  }

  .eps-nav__mobile-bloom-art svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .eps-nav__mobile-bloom-frame {
    display: block !important;
    position: absolute;
    inset: 0.55rem 0.35rem 0.45rem;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  }

  .eps-nav__mobile-bloom-photo {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .eps-nav__mobile-bloom-photo picture,
  .eps-nav__mobile-bloom-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
  }

  .eps-nav__mobile-bloom-veil {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      transparent 38%,
      rgba(42, 20, 36, 0.32) 64%,
      rgba(26, 12, 22, 0.74) 100%
    );
  }

  .eps-nav__mobile-bloom-flower {
    display: none !important;
  }

  .eps-nav__mobile-bloom-text {
    display: grid !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.85rem;
    z-index: 3;
    margin: 0;
    padding: 0 1rem;
    justify-items: center;
    gap: 0.2rem;
    font-family: var(--eps-font-display);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #fff8fb;
    text-align: center;
    text-shadow: 0 2px 12px rgba(20, 8, 16, 0.45);
  }

  .eps-nav__mobile-bloom-heart {
    display: inline-grid;
    place-items: center;
    color: #f3c4d4;
  }

  .eps-nav__mobile-bloom-glass {
    display: none !important;
  }

  .eps-nav__cta-mobile {
    display: none;
  }

  .eps-header.is-nav-open .eps-nav__cta-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    flex: 0 0 auto;
    margin-top: auto;
    width: 100%;
    min-height: 2.85rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    border: 0;
    text-decoration: none !important;
    color: #fff !important;
    white-space: normal;
    background: linear-gradient(95deg, #d48aa8 0%, #c45d8a 42%, #6b3558 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    animation: eps-nav-item-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  }

  .eps-nav__cta-ico {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    opacity: 0.95;
  }

  .eps-nav__cta-ico svg {
    width: 18px;
    height: 18px;
  }

  .eps-nav__cta-label {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    font-family: var(--eps-font-display);
    font-size: 1.02rem;
    font-weight: 560;
    letter-spacing: -0.01em;
    white-space: normal;
    line-height: 1.25;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .eps-nav__cta-chev {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    opacity: 0.9;
  }

  @keyframes eps-nav-sheet-in {
    from { opacity: 0.4; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
  }

  @keyframes eps-nav-item-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
  }

  @keyframes eps-nav-glow {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(2%, -1.5%, 0) scale(1.05); }
  }

  @media (prefers-reduced-motion: reduce) {
    .eps-header.is-nav-open .eps-header__shell,
    .eps-nav__list > li,
    .eps-header.is-nav-open .eps-nav__mobile-head,
    .eps-header.is-nav-open .eps-nav__mobile-bloom,
    .eps-nav__cta-mobile {
      animation: none !important;
    }
  }

  .eps-mega,
  .eps-mega[hidden],
  .eps-nav__item--mega.is-open .eps-mega,
  .eps-nav__item--mega.is-open .eps-mega[hidden] {
    display: none !important;
  }

  .eps-nav__m-svc {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .eps-header.is-nav-open .eps-nav__m-svc {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--eps-m-svc-top, 38%);
    bottom: var(--eps-m-svc-bottom, 5rem);
    z-index: 24;
    margin: 0;
    padding: 0.85rem 0.75rem 1rem;
    border-radius: 18px;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(160deg, rgba(58, 28, 48, 0.98) 0%, rgba(42, 20, 36, 0.97) 100%);
    border: 1px solid rgba(232, 160, 188, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    color: #fff6f9;
  }

  .eps-header.is-nav-open .eps-nav.is-svc-open .eps-nav__m-svc,
  .eps-header.is-nav-open .eps-nav__m-svc:not([hidden]) {
    display: flex;
  }

  .eps-nav__m-svc[hidden] {
    display: none !important;
  }

  .eps-nav__m-featured {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    text-decoration: none !important;
    color: #fff6f9 !important;
    background: linear-gradient(135deg, rgba(196, 93, 138, 0.35), rgba(78, 42, 78, 0.55));
    border: 1px solid rgba(232, 160, 188, 0.28);
  }

  .eps-nav__m-featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: #f3c4d4;
    color: #3f1c34;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .eps-nav__m-featured-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
  }

  .eps-nav__m-featured-copy strong {
    font-family: var(--eps-font-display);
    font-size: 0.98rem;
    font-weight: 560;
    line-height: 1.2;
    color: #fffaf8;
  }

  .eps-nav__m-featured-copy small {
    font-size: 0.78rem;
    color: rgba(255, 230, 240, 0.75);
    line-height: 1.35;
  }

  .eps-nav__m-group-title {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e8a0bc !important;
    text-decoration: none !important;
  }

  .eps-nav__m-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
  }

  .eps-nav__m-list a {
    display: block;
    padding: 0.45rem 0.15rem;
    font-size: 0.92rem;
    color: rgba(255, 246, 249, 0.9) !important;
    text-decoration: none !important;
    border-radius: 8px;
  }

  .eps-nav__m-list a:hover,
  .eps-nav__m-list a:focus-visible {
    background: rgba(232, 160, 188, 0.12);
  }

  .eps-nav__m-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.15rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 160, 188, 0.28);
    color: #fff6f9 !important;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
  }

  .eps-header__actions {
    gap: 0.35rem;
  }

  .eps-header__actions .eps-lang {
    flex-shrink: 0;
  }

  .eps-header__actions .eps-lang__list {
    padding: 2px;
    gap: 2px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(78, 42, 78, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }

  .eps-header__actions .eps-lang__btn {
    position: relative;
    box-sizing: border-box;
    width: 28px;
    height: 24px;
    padding: 0 !important;
    margin: 0;
    gap: 0;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
  }

  .eps-header__actions .eps-lang__btn:hover {
    background: rgba(255, 255, 255, 0.92) !important;
    transform: none;
  }

  .eps-header__actions .eps-lang__btn.is-active,
  .eps-header__actions .eps-lang__btn.is-active:hover {
    background: rgba(255, 255, 255, 0.98) !important;
    color: transparent !important;
    box-shadow: none !important;
  }

  .eps-header__actions .eps-lang__btn.is-active .eps-lang__flag {
    box-shadow:
      0 0 0 1.5px rgba(196, 93, 138, 0.55),
      0 0 0 3px rgba(255, 255, 255, 0.95),
      0 2px 6px rgba(47, 26, 40, 0.1);
  }

  .eps-header__actions .eps-lang__flag {
    width: 20px;
    height: 14px;
    margin: 0;
    border-radius: 2.5px;
  }

  .eps-header__actions .eps-lang__code {
    display: none !important;
  }

  .eps-header__cta {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
    border-radius: 12px;
    white-space: nowrap;
  }

  .eps-header__cta .eps-btn__icon {
    display: none;
  }

  .eps-header__cta span:last-child {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .eps-hero__grid {
    grid-template-columns: 1fr;
    padding-bottom: 1.25rem;
  }

  .eps-hero__media {
    justify-self: center;
    width: min(100%, 380px);
  }

  .eps-hero__title {
    max-width: none;
  }

  .eps-usp,
  .eps-services__grid,
  .eps-services__catalog,
  .eps-mega__inner,
  .eps-mega__cols,
  .eps-post-grid,
  .eps-footer__widgets,
  .eps-about__grid {
    grid-template-columns: 1fr;
  }

  .eps-usp {
    gap: 0.35rem;
    padding: 1.1rem 1.15rem;
  }

  .eps-usp__item + .eps-usp__item {
    border-left: 0;
    border-top: 1px solid rgba(78, 42, 78, 0.06);
    padding-left: 0.25rem;
    padding-top: 0.85rem;
    margin-top: 0.35rem;
  }

  .eps-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1rem;
    padding-top: 1.35rem;
    padding-bottom: 1rem;
  }

  .eps-footer__col--brand {
    grid-column: 1 / -1;
    padding-left: 0.25rem;
  }

  .eps-footer__col--engage {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

/* ≤1186: CTA in header bar — full label, smaller type (never "Programe...") */
@media (max-width: 1186px) and (min-width: 641px) {
  .eps-header__cta {
    display: inline-flex !important;
    padding: 0.42rem 0.7rem;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .eps-header__cta .eps-btn__icon {
    display: none;
  }

  .eps-header__cta span:last-child {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 640px) {
  :root {
    --eps-header-h: 58px;
    --eps-topbar-h: 32px;
  }

  .eps-topbar__contacts .eps-topbar__link span {
    font-size: 0.72rem;
  }

  .eps-topbar__conf-full {
    display: none;
  }

  .eps-topbar__conf-short {
    display: inline;
  }

  .eps-topbar__row > li:not(:last-child)::after {
    display: none;
  }

  .eps-topbar__row {
    gap: 0.55rem 0.85rem;
  }

  .eps-logo--lg .eps-logo__name {
    font-size: 1.25rem;
  }

  .eps-logo--lg .eps-logo__mark {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .eps-logo--lg .eps-logo__mark-img {
    width: 46px;
    height: 46px;
    max-height: 46px !important;
  }

  .eps-header__cta {
    display: none;
  }

  .eps-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem;
  }

  .eps-header__tools {
    gap: 0.28rem;
    flex-shrink: 0;
    min-width: max-content;
  }

  .eps-header:not(.is-nav-open) .eps-nav-toggle {
    display: inline-grid !important;
    width: 40px;
    height: 40px;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .eps-header .eps-logo--wordmark {
    min-width: 0;
    max-width: calc(100% - 0.25rem);
  }

  .eps-header .eps-logo--wordmark img,
  .eps-header .eps-logo--wordmark .custom-logo,
  .eps-logo--wordmark img,
  .eps-logo--wordmark .custom-logo {
    max-width: min(100%, 10.5rem);
    height: auto;
  }

  .eps-header__shell {
    height: auto;
    min-height: var(--eps-header-h);
  }

  .eps-hero {
    padding-top: 1.25rem;
  }

  .eps-hero.eps-hero--print,
  .eps-hero.eps-hero--full {
    padding: 0;
  }

  .eps-hero--pro {
    padding: 1.35rem 0 2.5rem;
  }

  .eps-hero--pro .eps-hero__media {
    width: min(100%, 320px);
  }

  .eps-hero__portrait {
    border-radius: 22px;
    box-shadow:
      0 0 0 7px rgba(240, 220, 200, 0.4),
      0 0 32px rgba(220, 180, 140, 0.22),
      0 18px 40px rgba(78, 42, 78, 0.1);
  }

  .eps-hero__float {
    max-width: 9.5rem;
    font-size: 0.72rem;
    right: 0.15rem;
  }

  .eps-hero__avail {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.82rem;
    padding: 0.5rem 0.8rem;
  }

  .eps-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eps-hero__link {
    text-align: center;
    width: fit-content;
    margin-inline: auto;
  }

  .eps-hero__actions .eps-btn,
  .eps-about--story .eps-about__actions .eps-btn,
  .eps-cta-band .eps-btn,
  .eps-footer__col--engage .eps-btn,
  .eps-footer__btn,
  .eps-search__btn {
    width: 100%;
  }

  .eps-usp__title {
    font-size: 1rem;
  }

  .eps-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 1.55rem;
    padding-bottom: 1.15rem;
    gap: 1.35rem 0.9rem;
  }

  .eps-footer__col--brand {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .eps-footer__col--nav,
  .eps-footer__col--services {
    min-width: 0;
  }

  .eps-footer__col--engage {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.25rem;
  }

  .eps-footer__lead {
    margin-top: 0.55rem;
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .eps-footer__nap {
    margin-top: 0.95rem;
    gap: 0.55rem;
  }

  .eps-footer__nap li {
    gap: 0.15rem;
  }

  .eps-footer__title {
    margin: 0 0 0.55rem;
    font-size: 0.86rem;
  }

  .eps-footer__menu {
    gap: 0.4rem;
  }

  .eps-footer__menu a {
    font-size: 0.76rem;
    line-height: 1.45;
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    padding: 0.12rem 0;
  }

  .eps-footer__cta-card,
  .eps-footer__pulse {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .eps-footer__cta-lead {
    margin-bottom: 0.65rem;
  }

  .eps-footer__compliance-inner {
    padding: 0.95rem 0 0.85rem;
  }

  .eps-footer__anpc-title {
    margin-bottom: 0.25rem;
  }

  .eps-footer__anpc-text {
    margin-bottom: 0.65rem;
  }

  .eps-footer__legal {
    margin-top: 0.95rem;
    padding-top: 0.75rem;
    gap: 0.35rem 0.75rem;
  }

  .eps-footer__meadow {
    width: 78px;
    opacity: 0.38;
    bottom: 5.5rem;
  }

  .eps-footer__sky {
    width: 92px;
    opacity: 0.42;
    bottom: 5.5rem;
  }

  .eps-footer__bloom {
    width: 64px;
    opacity: 0.35;
  }

  .eps-footer__col--engage .eps-btn,
  .eps-footer__btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    padding: 0.5rem 0.7rem;
    font-size: 0.74rem;
    min-height: 2.35rem;
  }

  .eps-footer__anpc-badge--sal img {
    width: min(130px, 65vw);
  }

  .eps-footer__anpc-badge--cpr img {
    width: 28px;
    height: 28px;
  }

  .eps-footer__bar-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 0 1.05rem;
  }

  .eps-footer__bar-copy {
    max-width: 36rem;
  }

  .eps-footer__dev {
    width: auto;
    max-width: 100%;
  }

  .eps-footer__dev-inner {
    min-width: 0;
    width: auto;
    padding: 0.35rem 0.55rem 0.38rem 0.6rem;
  }

  .eps-footer__dev-logo {
    height: 17px;
  }

  .eps-404__links {
    flex-direction: column;
  }

  .eps-about__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eps-card-grid--2,
  .eps-card-grid--4,
  .eps-card-grid--5,
  .eps-card-grid--ends,
  .eps-stats__grid {
    grid-template-columns: 1fr;
  }

  .eps-stats--ultra .eps-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .eps-journey__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 400px) {
  .eps-stats--ultra .eps-stats__grid {
    grid-template-columns: 1fr;
  }

  .eps-topbar__link span {
    font-size: 0.68rem;
  }

  .eps-logo--wordmark img,
  .eps-logo--wordmark .custom-logo {
    max-width: min(100%, 9.75rem);
  }

  .eps-footer__grid {
    gap: 1.15rem 0.7rem;
    padding-top: 1.35rem;
    padding-bottom: 1rem;
  }

  .eps-footer__menu {
    gap: 0.35rem;
  }

  .eps-footer__menu a {
    font-size: 0.72rem;
  }

  .eps-footer__title {
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
  }

  .eps-footer__nap {
    margin-top: 0.85rem;
    gap: 0.5rem;
    font-size: 0.72rem;
  }
}

/* ---------- Ultra cards ---------- */
.eps-card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.eps-card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.eps-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.eps-card-grid--5 {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
}

.eps-card-grid--ends {
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
}

.eps-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 1.65rem 1.45rem;
  border-radius: calc(var(--eps-radius) + 2px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 244, 0.94) 100%);
  border: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 36px rgba(78, 42, 78, 0.07);
  overflow: hidden;
  outline: none;
  cursor: default;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.45s var(--eps-ease),
    box-shadow 0.45s var(--eps-ease),
    border-color 0.35s var(--eps-ease),
    background 0.45s var(--eps-ease);
}

.eps-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(193, 141, 162, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 42%,
    rgba(78, 42, 78, 0.18) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.4s var(--eps-ease);
}

.eps-card__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 141, 162, 0.35) 0%, transparent 70%);
  top: var(--eps-gy, -40%);
  left: var(--eps-gx, 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s var(--eps-ease);
}

.eps-card > *:not(.eps-card__glow) {
  position: relative;
  z-index: 1;
}

.eps-card.is-active,
.eps-card:hover,
.eps-card:focus-visible {
  transform: translate3d(0, -6px, 0) scale(1.012);
  border-color: rgba(193, 141, 162, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px rgba(78, 42, 78, 0.14);
}

.eps-card.is-active::before,
.eps-card:hover::before,
.eps-card:focus-visible::before {
  opacity: 1;
}

.eps-card.is-active .eps-card__glow,
.eps-card:hover .eps-card__glow,
.eps-card:focus-visible .eps-card__glow {
  opacity: 1;
}

.eps-card--yes {
  border-top: 3px solid var(--eps-mauve);
}

.eps-card--no {
  border-top: 3px solid rgba(78, 42, 78, 0.28);
}

.eps-card--quote {
  min-height: 100%;
}

.eps-card__heading {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: 1.35rem;
  color: var(--eps-plum);
  line-height: 1.25;
}

.eps-card__heading--sm {
  font-size: 1.12rem;
}

.eps-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--eps-muted);
  line-height: 1.55;
}

.eps-card__list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.eps-card__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--eps-muted);
  line-height: 1.5;
}

.eps-card__mark {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.eps-card__mark--yes {
  background: var(--eps-mauve-soft);
  color: var(--eps-plum);
}

.eps-card__mark--no {
  background: var(--eps-cream-deep);
  color: var(--eps-muted);
}

.eps-card__letter,
.eps-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  font-family: var(--eps-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--eps-plum);
  background: linear-gradient(145deg, var(--eps-mauve-soft), rgba(255, 255, 255, 0.7));
  box-shadow: 0 6px 16px rgba(78, 42, 78, 0.08);
}

.eps-card__index {
  font-size: 1.05rem;
  color: var(--eps-mauve);
}

.eps-card__quote-mark {
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  font-family: var(--eps-font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--eps-mauve);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.eps-card__quote {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--eps-text);
  font-style: italic;
  flex: 1;
}

.eps-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.eps-card__name {
  font-style: normal;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--eps-plum);
}

.eps-card__role {
  font-size: 0.8rem;
  color: var(--eps-muted);
}

.eps-audience__cta,
.eps-benefits__cta {
  margin-top: 2.15rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

/* ---------- Testimonials atelier ? floral line BG + 3-up ---------- */
.eps-testimonials--atelier {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-bottom: clamp(2.5rem, 5.2vw, 3.8rem);
  background: #3a2438;
}

.eps-testimonials__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.eps-testimonials__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(0.98);
}

.eps-testimonials__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(250, 244, 247, 0.72) 0%, rgba(248, 240, 244, 0.58) 45%, rgba(245, 236, 241, 0.7) 100%),
    radial-gradient(ellipse 55% 48% at 50% 12%, rgba(255, 255, 255, 0.28), transparent 70%);
}

.eps-testimonials__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 46px,
      rgba(78, 42, 78, 0.05) 46px,
      rgba(78, 42, 78, 0.05) 47px
    ),
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 62px,
      rgba(196, 93, 138, 0.045) 62px,
      rgba(196, 93, 138, 0.045) 63px
    );
}

.eps-testimonials__glow {
  position: absolute;
  inset: 18% 18% auto;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232, 160, 188, 0.22), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.eps-testimonials__bloom {
  position: absolute;
  width: clamp(78px, 10vw, 120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.62;
}

.eps-testimonials__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-testimonials__bloom--tl {
  top: 0.25rem;
  left: -0.4rem;
  animation: eps-testimonials-float-a 5.2s ease-in-out infinite;
}

.eps-testimonials__bloom--tr {
  top: 0.35rem;
  right: -0.4rem;
  animation: eps-testimonials-float-b 5.8s ease-in-out infinite;
}

.eps-testimonials__bloom--bl {
  bottom: 1.2rem;
  left: 2%;
  width: clamp(64px, 8vw, 96px);
  opacity: 0.42;
  animation: eps-testimonials-float-a 6.4s ease-in-out infinite reverse;
}

.eps-testimonials__flower {
  transform-origin: center;
  animation: eps-testimonials-sway 4.2s ease-in-out infinite;
}

.eps-testimonials__leaf {
  animation: eps-testimonials-leaf 3.4s ease-in-out infinite;
}

@keyframes eps-testimonials-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

@keyframes eps-testimonials-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes eps-testimonials-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@keyframes eps-testimonials-leaf {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

.eps-testimonials--atelier .eps-container {
  position: relative;
  z-index: 1;
}

.eps-testimonials__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.55rem;
}

.eps-testimonials__eyebrow {
  margin: 0 0 0.28rem;
  font-family: var(--eps-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-testimonials__title {
  margin: 0 0 0.4rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: #5a2f5c;
  letter-spacing: -0.02em;
}

.eps-testimonials__lead {
  margin: 0 auto;
  max-width: 32rem;
  color: #6a5a60;
  font-size: clamp(0.88rem, 1.15vw, 0.98rem);
  line-height: 1.55;
}

.eps-testimonials__stage {
  position: relative;
  max-width: min(72rem, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.6vw, 1.7rem) clamp(1.05rem, 2.4vw, 1.55rem) 1.1rem;
  border-radius: 22px;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
  filter: none !important;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-testimonials__duo,
.eps-testimonials__trio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.eps-testimonials--trio .eps-testimonials__trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.eps-testimonials--trio .eps-testimonials__stage {
  max-width: min(78rem, 100%);
}

.eps-testimonials--trio .eps-testimonials__card {
  padding: 0.8rem 0.85rem 0.88rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.58) 0%, rgba(252, 244, 248, 0.34) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.eps-testimonials--trio .eps-testimonials__quote {
  font-size: clamp(0.84rem, 1.05vw, 0.94rem);
  line-height: 1.5;
}

.eps-testimonials__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  min-width: 0;
  height: 100%;
  padding: 0.9rem 1rem 0.95rem;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(252, 244, 248, 0.5) 100%);
  border: 1px solid rgba(193, 141, 162, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.eps-testimonials__card.is-typing {
  border-color: rgba(196, 93, 138, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 16px 34px rgba(78, 42, 78, 0.1);
}

.eps-testimonials__card.is-typing::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 48%;
  height: 60%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(243, 196, 212, 0.55), transparent 58%),
    radial-gradient(circle at 70% 60%, rgba(201, 162, 39, 0.2), transparent 55%);
  filter: blur(12px);
  opacity: 0.7;
  animation: eps-tale-glow 2.4s ease-in-out infinite;
}

@keyframes eps-tale-glow {
  0%, 100% { opacity: 0.4; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.85; transform: translate(-6%, -4%) scale(1.08); }
}

.eps-testimonials--atelier.is-visible .eps-testimonials__stage,
.eps-testimonials--atelier.is-in .eps-testimonials__stage,
[data-eps-reveal].is-visible .eps-testimonials__stage.eps-reveal-item {
  opacity: 1;
  transform: none;
  filter: none !important;
}

.eps-testimonials__glass {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 244, 248, 0.78) 48%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(193, 141, 162, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 24px 48px rgba(78, 42, 78, 0.08),
    0 8px 18px rgba(196, 93, 138, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.eps-testimonials__glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(232, 160, 188, 0.35), transparent 42%, transparent 58%, rgba(193, 141, 162, 0.22));
  opacity: 0.55;
  z-index: -1;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.eps-testimonials__track {
  position: relative;
  z-index: 1;
  display: grid;
}

.eps-testimonials__slide {
  grid-area: 1 / 1;
  display: block;
  margin: 0;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
  pointer-events: none;
  z-index: 0;
}

.eps-testimonials__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.eps-testimonials__stage[data-eps-dir="prev"] .eps-testimonials__slide:not(.is-active) {
  transform: translateY(-8px);
}

.eps-testimonials__mark {
  display: block;
  font-family: var(--eps-font-display);
  font-size: clamp(2.2rem, 3.6vw, 2.9rem);
  line-height: 0.7;
  color: #c45d8a;
  opacity: 0.72;
  pointer-events: none;
  margin-bottom: 0.1rem;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.eps-testimonials__card.is-typing .eps-testimonials__mark {
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 10px rgba(232, 160, 188, 0.55));
}

.eps-testimonials__quote {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-family: var(--eps-font-display);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #3a2140;
}

.eps-testimonials__quote.is-soft-in {
  animation: eps-quote-soft 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes eps-quote-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.eps-testimonials__char {
  display: inline;
  opacity: 0;
  transition: opacity 0.14s ease;
}

.eps-testimonials__char.is-space {
  white-space: pre;
}

.eps-testimonials__char.is-on {
  opacity: 1;
}

.eps-testimonials__char.is-fresh {
  color: #5c3458;
}

.eps-testimonials__quote.is-typed .eps-testimonials__char {
  opacity: 1;
  color: inherit;
  transition: none;
}

@media (max-width: 768px) {
  .eps-testimonials__card.is-typing::after {
    display: none;
  }

  .eps-testimonials__card.is-typing .eps-testimonials__mark {
    transform: none;
    filter: none;
  }

  .eps-testimonials__quote.is-soft-in {
    animation-duration: 0.72s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-testimonials__char {
    opacity: 1 !important;
    transition: none !important;
  }

  .eps-testimonials__quote.is-soft-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .eps-testimonials__card.is-typing::after {
    display: none !important;
    animation: none !important;
  }
}

.eps-testimonials__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(193, 141, 162, 0.22);
}

.eps-testimonials__who {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.eps-testimonials__name {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2f1a28;
  font-family: var(--eps-font-body);
}

.eps-testimonials__role {
  font-size: 0.76rem;
  color: #8a7880;
  line-height: 1.35;
}

.eps-testimonials__index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--eps-font-display);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #c45d8a;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.35s ease 0.08s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.eps-testimonials__slide.is-active .eps-testimonials__index,
.eps-testimonials__card.is-typed .eps-testimonials__index {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .eps-testimonials__index {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.eps-testimonials__index-sep {
  margin: 0 0.14em;
  opacity: 0.45;
  font-weight: 500;
}

.eps-testimonials__controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.eps-testimonials__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(78, 42, 78, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #4e2a4e;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(78, 42, 78, 0.06);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.eps-testimonials__arrow:hover {
  background: #4e2a4e;
  border-color: #4e2a4e;
  color: #fff;
  box-shadow: 0 8px 20px rgba(78, 42, 78, 0.18);
  transform: translateY(-1px);
}

.eps-testimonials__arrow:focus-visible {
  outline: 2px solid #c45d8a;
  outline-offset: 3px;
}

.eps-testimonials__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(193, 141, 162, 0.2);
}

.eps-testimonials__dot {
  width: 0.42rem;
  height: 0.42rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(78, 42, 78, 0.22);
  cursor: pointer;
  transition:
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    transform 0.25s ease;
}

.eps-testimonials__dot.is-active {
  width: 1.35rem;
  background: linear-gradient(90deg, #c45d8a, #c18da2);
}

.eps-testimonials__dot:focus-visible {
  outline: 2px solid #c45d8a;
  outline-offset: 2px;
}

.eps-testimonials__cta {
  margin-top: clamp(1.25rem, 2.6vw, 1.7rem);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.eps-testimonials__btn,
.eps-testimonials__more {
  min-width: min(100%, 14rem);
  justify-content: center;
  border-radius: 999px;
}

.eps-testimonials__btn {
  border-width: 1.5px;
}

.eps-testimonials__more {
  border-color: rgba(78, 42, 78, 0.35);
  color: #4e2a4e !important;
}

@media (max-width: 980px) {
  .eps-testimonials--trio .eps-testimonials__trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .eps-testimonials__bloom {
    width: 72px;
    opacity: 0.4;
  }

  .eps-testimonials__bloom--bl {
    display: none;
  }

  .eps-testimonials__stage {
    padding: 1.05rem 0.85rem 0.95rem;
    border-radius: 18px;
  }

  .eps-testimonials__duo {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .eps-testimonials--trio .eps-testimonials__trio {
    grid-template-columns: 1fr;
  }

  .eps-testimonials__card {
    padding: 0.75rem 0.8rem;
  }

  .eps-testimonials__quote {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  }

  .eps-testimonials__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .eps-testimonials__index {
    align-self: flex-end;
  }

  .eps-testimonials__btn,
  .eps-testimonials__more {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-testimonials__bloom--tl,
  .eps-testimonials__bloom--tr,
  .eps-testimonials__bloom--bl,
  .eps-testimonials__flower,
  .eps-testimonials__leaf {
    animation: none !important;
  }

  .eps-testimonials__stage,
  .eps-testimonials__slide,
  .eps-testimonials__dot {
    transition: none !important;
  }

  .eps-testimonials__stage {
    opacity: 1 !important;
    transform: none !important;
  }

  .eps-testimonials__slide {
    transform: none !important;
  }
}

.eps-audience__note {
  margin: 0;
  max-width: 36rem;
  color: var(--eps-muted);
  font-size: 1rem;
}

/* ---------- Benefits atelier ? Ce ob?ii (warm, icons) ---------- */
.eps-benefits--atelier {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.2rem, 6.5vw, 4.8rem);
  background:
    radial-gradient(ellipse 50% 42% at 12% 0%, rgba(243, 196, 212, 0.28), transparent 62%),
    radial-gradient(ellipse 44% 38% at 92% 8%, rgba(193, 141, 162, 0.18), transparent 60%),
    linear-gradient(180deg, #faf6f4 0%, #f7f0f3 48%, #faf6f4 100%);
}

.eps-benefits__wash {
  position: absolute;
  inset: 18% 8% auto;
  height: 42%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 247, 250, 0.65), transparent 70%);
  z-index: 0;
}

.eps-benefits__bloom {
  position: absolute;
  width: clamp(96px, 13vw, 150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.eps-benefits__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-benefits__bloom--tl {
  top: 0.5rem;
  left: -0.35rem;
  animation: eps-benefits-float-a 7.4s ease-in-out infinite;
}

.eps-benefits__bloom--tr {
  top: 0.7rem;
  right: -0.35rem;
  animation: eps-benefits-float-b 8.1s ease-in-out infinite;
}

.eps-benefits__flower {
  transform-origin: center;
  animation: eps-benefits-sway 5.6s ease-in-out infinite;
}

.eps-benefits__leaf {
  animation: eps-benefits-leaf 4.7s ease-in-out infinite;
}

@keyframes eps-benefits-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes eps-benefits-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes eps-benefits-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@keyframes eps-benefits-leaf {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 0.75; transform: translateY(-3px); }
}

.eps-benefits--atelier .eps-container,
.eps-benefits__wrap {
  position: relative;
  z-index: 1;
}

.eps-benefits__wrap {
  width: min(100% - 2rem, 72rem);
}

.eps-benefits__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.65rem;
}

.eps-benefits__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-benefits__ornament {
  display: inline-flex;
  width: 4.5rem;
  margin-bottom: 0.7rem;
}

.eps-benefits__ornament svg {
  width: 100%;
  height: auto;
}

.eps-benefits__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.2;
  color: #5a2f5c;
  letter-spacing: -0.02em;
}

.eps-benefits__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: #5a4a50;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.65;
}

.eps-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.05rem);
  align-items: stretch;
}

.eps-benefits__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  background: #fffafb;
  border: 1px solid rgba(193, 141, 162, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 32px rgba(78, 42, 78, 0.08);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  transition-delay: calc(var(--eps-bi, 1) * 0.08s);
}

.eps-benefits__media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #e8d0da;
}

.eps-benefits__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: eps-benefits-card-ken 20s ease-in-out infinite alternate;
  animation-delay: calc(var(--eps-bi, 1) * 0.5s);
}

.eps-benefits__media-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 251, 0.55) 55%, #fffafb 100%);
}

.eps-benefits__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  width: 100%;
  margin-top: -1.15rem;
  padding: 0 clamp(0.85rem, 1.4vw, 1.1rem) clamp(0.95rem, 1.5vw, 1.2rem);
  box-sizing: border-box;
}

@keyframes eps-benefits-card-ken {
  0% { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}

.eps-benefits--atelier.is-visible .eps-benefits__card,
.eps-benefits--atelier.is-in .eps-benefits__card {
  opacity: 1;
  transform: none;
}

.eps-benefits__card:nth-child(1) { transform: translateY(24px); }
.eps-benefits__card:nth-child(2) { transform: translateY(28px); }
.eps-benefits__card:nth-child(3) { transform: translateY(26px); }
.eps-benefits__card:nth-child(4) { transform: translateY(30px); }

.eps-benefits--atelier.is-visible .eps-benefits__card:nth-child(n),
.eps-benefits--atelier.is-in .eps-benefits__card:nth-child(n) {
  transform: none;
}

.eps-benefits__card:hover {
  border-color: rgba(196, 93, 138, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 20px 40px rgba(78, 42, 78, 0.12);
}

/* Online RO ? purple comet trail on hover (loops while hovered) */
.eps-benefits__comet {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.eps-benefits__card--online:hover .eps-benefits__comet,
.eps-benefits__card--online:focus-within .eps-benefits__comet {
  opacity: 1;
}

.eps-benefits__comet-tail {
  position: absolute;
  top: -15%;
  left: -55%;
  width: 70%;
  height: 3.1rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 160, 188, 0.05) 18%,
    rgba(196, 93, 138, 0.45) 48%,
    rgba(78, 42, 78, 0.72) 68%,
    rgba(243, 196, 212, 0.85) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 18px rgba(196, 93, 138, 0.55),
    0 0 36px rgba(78, 42, 78, 0.25);
  filter: blur(0.4px);
  transform: rotate(-32deg) translate3d(0, 0, 0);
  animation: eps-comet-sweep 1.55s linear infinite;
  animation-play-state: paused;
}

.eps-benefits__comet-tail--b {
  top: 42%;
  height: 2.2rem;
  width: 58%;
  opacity: 0.72;
  animation-duration: 2.05s;
  animation-delay: -0.7s;
  filter: blur(1px);
}

.eps-benefits__card--online:hover .eps-benefits__comet-tail,
.eps-benefits__card--online:focus-within .eps-benefits__comet-tail {
  animation-play-state: running;
}

.eps-benefits__card--online:hover {
  border-color: rgba(154, 95, 120, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 22px 44px rgba(78, 42, 78, 0.16),
    0 0 0 1px rgba(196, 93, 138, 0.18);
}

@keyframes eps-comet-sweep {
  0% { transform: rotate(-32deg) translate3d(-10%, 0, 0); }
  100% { transform: rotate(-32deg) translate3d(210%, 120%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .eps-benefits__comet-tail {
    animation: none !important;
    opacity: 0 !important;
  }
}

.eps-benefits__card:hover .eps-benefits__media img {
  transform: scale(1.08);
}

.eps-benefits__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.98), transparent 52%),
    linear-gradient(155deg, #fff7f9, #f3e4ea);
  border: 1px solid rgba(193, 141, 162, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 22px rgba(78, 42, 78, 0.12);
  animation: eps-benefits-icon-float 5.2s ease-in-out infinite;
  animation-delay: calc(var(--eps-bi, 1) * 0.32s);
}

.eps-benefits__icon-glow {
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(193, 141, 162, 0.32), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
  animation: eps-benefits-icon-glow 4s ease-in-out infinite;
  animation-delay: calc(var(--eps-bi, 1) * 0.25s);
}

.eps-benefits__mark {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: block;
  overflow: visible;
}

.eps-benefits__mark-spark,
.eps-benefits__mark-pulse,
.eps-benefits__mark-hands {
  transform-origin: center;
  animation: eps-benefits-mark-breathe 3.6s ease-in-out infinite;
}

.eps-benefits__icon--tools .eps-benefits__mark-hands {
  transform-origin: 24px 24px;
  animation: eps-benefits-mark-tick 5.8s ease-in-out infinite;
}

.eps-benefits__icon--clarity .eps-benefits__mark-spark,
.eps-benefits__icon--online .eps-benefits__mark-spark {
  animation: eps-benefits-mark-spark 2.8s ease-in-out infinite;
}

@keyframes eps-benefits-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes eps-benefits-icon-glow {
  0%, 100% { opacity: 0.3; transform: scale(0.92); }
  50% { opacity: 0.65; transform: scale(1.06); }
}

@keyframes eps-benefits-mark-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes eps-benefits-mark-tick {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(7deg); }
}

@keyframes eps-benefits-mark-spark {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.1); }
}

.eps-benefits__card-title {
  margin: 0 0 0.4rem;
  font-family: var(--eps-font-display);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.28;
  color: #5a2f5c;
}

.eps-benefits__rule {
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #c45d8a, rgba(193, 141, 162, 0.12));
}

.eps-benefits__card-text {
  margin: 0;
  color: #5a4a50;
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
  line-height: 1.5;
}

.eps-benefits--atelier .eps-benefits__cta {
  margin-top: clamp(1.6rem, 3vw, 2.1rem);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.eps-benefits--atelier.is-visible .eps-benefits__cta,
.eps-benefits--atelier.is-in .eps-benefits__cta {
  opacity: 1;
  transform: none;
}

.eps-benefits__btn {
  min-width: min(100%, 15.5rem);
  justify-content: center;
  border-radius: 999px;
  padding-inline: 1.6rem;
}

@media (max-width: 1100px) {
  .eps-benefits__wrap {
    width: min(100% - 1.75rem, 58rem);
  }

  .eps-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

@media (max-width: 720px) {
  .eps-benefits__wrap {
    width: min(100% - 1.5rem, 58rem);
  }

  .eps-benefits__grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-inline: auto;
  }

  .eps-benefits__bloom {
    width: 84px;
    opacity: 0.45;
  }

  .eps-benefits__card {
    border-radius: 16px;
  }

  .eps-benefits__media {
    aspect-ratio: 16 / 9;
  }

  .eps-benefits__card-body {
    margin-top: -1.1rem;
    padding: 0 1.1rem 1.15rem;
  }

  .eps-benefits__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-benefits__media img,
  .eps-benefits__bloom--tl,
  .eps-benefits__bloom--tr,
  .eps-benefits__flower,
  .eps-benefits__leaf,
  .eps-benefits__icon,
  .eps-benefits__icon-glow,
  .eps-benefits__mark-spark,
  .eps-benefits__mark-pulse,
  .eps-benefits__mark-hands {
    animation: none !important;
  }

  .eps-benefits__card,
  .eps-benefits--atelier .eps-benefits__cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Flow collab ? Cum se desf??oar? ultra ---------- */
.eps-flow--collab {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.2rem, 6.5vw, 4.8rem);
  background:
    radial-gradient(ellipse 46% 38% at 50% 0%, rgba(243, 196, 212, 0.18), transparent 70%),
    linear-gradient(180deg, #faf7f5 0%, #f7f1f3 52%, #faf7f5 100%);
}

.eps-flow__bloom {
  position: absolute;
  width: clamp(100px, 14vw, 168px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.eps-flow__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-flow__bloom--tl {
  top: 0.45rem;
  left: -0.35rem;
  animation: eps-flow-float-a 7.3s ease-in-out infinite;
}

.eps-flow__bloom--tr {
  top: 0.55rem;
  right: -0.4rem;
  width: clamp(120px, 16vw, 190px);
  animation: eps-flow-float-b 8s ease-in-out infinite;
}

.eps-flow__flower {
  transform-origin: center;
  animation: eps-flow-sway 5.7s ease-in-out infinite;
}

.eps-flow__petal {
  animation: eps-flow-leaf 4.8s ease-in-out infinite;
}

.eps-flow__wave {
  animation: eps-flow-leaf 5.5s ease-in-out infinite;
}

@keyframes eps-flow-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes eps-flow-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes eps-flow-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@keyframes eps-flow-leaf {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 0.85; transform: translateY(-3px); }
}

.eps-flow--collab .eps-container {
  position: relative;
  z-index: 1;
}

.eps-flow__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.1rem;
}

.eps-flow__eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--eps-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-flow__ornament {
  display: inline-flex;
  margin-bottom: 0.65rem;
}

.eps-flow__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.2;
  color: #5a2f5c;
  letter-spacing: -0.02em;
}

.eps-flow__lead {
  margin: 0 auto;
  max-width: 36rem;
  color: #5a4a50;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.65;
}

.eps-flow__path {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.eps-flow__card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  background: #fffefd;
  border: 1px solid rgba(193, 141, 162, 0.24);
  border-radius: 20px;
  padding: clamp(1.1rem, 1.8vw, 1.35rem) clamp(0.95rem, 1.5vw, 1.2rem) 1.25rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 32px rgba(47, 26, 40, 0.06);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  transition-delay: calc(0.12s + var(--eps-fi, 1) * 0.1s);
}

.eps-flow--collab.is-visible .eps-flow__card,
.eps-flow--collab.is-in .eps-flow__card {
  opacity: 1;
  transform: none;
}

.eps-flow__card:nth-child(odd) {
  transform: translateY(32px) rotate(-0.4deg);
}

.eps-flow__card:nth-child(even) {
  transform: translateY(26px) rotate(0.4deg);
}

.eps-flow--collab.is-visible .eps-flow__card:nth-child(odd),
.eps-flow--collab.is-visible .eps-flow__card:nth-child(even),
.eps-flow--collab.is-in .eps-flow__card:nth-child(odd),
.eps-flow--collab.is-in .eps-flow__card:nth-child(even) {
  transform: none;
}

.eps-flow__card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 40px rgba(47, 26, 40, 0.1);
}

.eps-flow__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.eps-flow__num {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  font-family: var(--eps-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b3558;
  background: linear-gradient(155deg, #fff7f9, #f3e4ea);
  border: 1px solid rgba(193, 141, 162, 0.35);
}

.eps-flow__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  color: var(--eps-plum);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), transparent 48%),
    linear-gradient(155deg, #fff9fb 0%, #f4e6ea 55%, #ead7e2 100%);
  border: 1px solid rgba(193, 141, 162, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 22px rgba(78, 42, 78, 0.12);
  animation: eps-flow-icon-float 5.4s ease-in-out infinite;
  animation-delay: calc(var(--eps-fi, 1) * 0.35s);
}

.eps-flow__icon-glow {
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(193, 141, 162, 0.28), transparent 68%);
  opacity: 0.55;
  pointer-events: none;
  animation: eps-flow-icon-glow 4.2s ease-in-out infinite;
  animation-delay: calc(var(--eps-fi, 1) * 0.28s);
}

.eps-flow__mark {
  position: relative;
  z-index: 1;
  width: 1.85rem;
  height: 1.85rem;
  display: block;
  overflow: visible;
}

.eps-flow__mark-pulse,
.eps-flow__mark-hands,
.eps-flow__mark-spark,
.eps-flow__mark-bloom {
  transform-origin: center;
  animation: eps-flow-mark-breathe 3.8s ease-in-out infinite;
}

.eps-flow__icon--clock .eps-flow__mark-hands {
  animation: eps-flow-mark-tick 6s ease-in-out infinite;
  transform-origin: 24px 24px;
}

.eps-flow__icon--brain .eps-flow__mark-spark {
  animation: eps-flow-mark-spark 2.8s ease-in-out infinite;
}

.eps-flow__icon--leaf .eps-flow__mark-bloom {
  animation: eps-flow-mark-sway 4.6s ease-in-out infinite;
  transform-origin: 24px 34px;
}

.eps-flow__icon--shield {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96), transparent 48%),
    linear-gradient(155deg, #fff8fb 0%, #f0dce6 100%);
}

.eps-flow__icon--clock {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96), transparent 48%),
    linear-gradient(155deg, #fffaf7 0%, #efe0e8 100%);
}

.eps-flow__icon--brain {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96), transparent 48%),
    linear-gradient(155deg, #faf5fb 0%, #e8d5e4 100%);
}

.eps-flow__icon--leaf {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96), transparent 48%),
    linear-gradient(155deg, #f8f4f7 0%, #ead8e2 100%);
}

@keyframes eps-flow-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes eps-flow-icon-glow {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes eps-flow-mark-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes eps-flow-mark-tick {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(6deg); }
}

@keyframes eps-flow-mark-spark {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes eps-flow-mark-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

.eps-flow__card-title {
  margin: 0 0 0.55rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  font-weight: 600;
  line-height: 1.3;
  color: #2f1a28;
}

.eps-flow__rule {
  display: block;
  width: 2.4rem;
  height: 1.5px;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #c45d8a, rgba(196, 93, 138, 0.15));
}

.eps-flow__card-text {
  margin: 0;
  color: #5a4a50;
  font-size: clamp(0.86rem, 1.1vw, 0.93rem);
  line-height: 1.58;
}

.eps-flow__curve {
  flex: 0 0 clamp(22px, 3.2vw, 40px);
  align-self: center;
  height: clamp(64px, 9vw, 96px);
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.22s + var(--eps-fi, 1) * 0.1s);
}

.eps-flow__curve-h {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.eps-flow__curve-v {
  display: none;
}

.eps-flow__curve-path {
  stroke-dasharray: none;
  animation: eps-flow-glow 2.8s ease-in-out infinite;
}

.eps-flow__curve-dot {
  animation: eps-flow-leaf 2.6s ease-in-out infinite;
}

.eps-flow--collab.is-visible .eps-flow__curve,
.eps-flow--collab.is-in .eps-flow__curve {
  opacity: 1;
  transform: none;
}

@keyframes eps-flow-glow {
  0%, 100% { opacity: 0.45; stroke-width: 1.3px; }
  50% { opacity: 0.95; stroke-width: 1.7px; }
}

@media (max-width: 980px) {
  .eps-flow__path {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .eps-flow__curve {
    display: none;
  }

  .eps-flow__card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .eps-flow__path {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 26rem;
    margin-inline: auto;
  }

  .eps-flow__curve {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 100%;
    height: 48px;
    margin: -0.1rem 0;
  }

  .eps-flow__curve-h {
    display: none;
  }

  .eps-flow__curve-v {
    display: block;
    width: 48px;
    height: 56px;
    overflow: visible;
  }

  .eps-flow__bloom {
    width: 88px;
    opacity: 0.48;
  }

  .eps-flow__bloom--tr {
    width: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-flow__bloom--tl,
  .eps-flow__bloom--tr,
  .eps-flow__flower,
  .eps-flow__petal,
  .eps-flow__wave,
  .eps-flow__curve-path,
  .eps-flow__curve-dot,
  .eps-flow__icon,
  .eps-flow__icon-glow,
  .eps-flow__mark-pulse,
  .eps-flow__mark-hands,
  .eps-flow__mark-spark,
  .eps-flow__mark-bloom {
    animation: none !important;
  }

  .eps-flow__card,
  .eps-flow__curve {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Audience fit ? mockup ultra ---------- */
.eps-audience--fit {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(243, 196, 212, 0.22), transparent 70%),
    linear-gradient(180deg, #faf6f4 0%, #f7f0f2 55%, #faf6f4 100%);
}

.eps-audience__bloom {
  position: absolute;
  width: clamp(110px, 16vw, 180px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.eps-audience__bloom--tl {
  top: 0.5rem;
  left: -0.5rem;
  animation: eps-audience-float-a 7s ease-in-out infinite;
}

.eps-audience__bloom--tr {
  top: 0.75rem;
  right: -0.5rem;
  animation: eps-audience-float-b 8s ease-in-out infinite;
}

.eps-audience__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-audience__flower {
  transform-origin: center;
  animation: eps-audience-sway 5.5s ease-in-out infinite;
}

.eps-audience__leaf {
  transform-origin: center;
  animation: eps-audience-leaf 4.8s ease-in-out infinite;
}

@keyframes eps-audience-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes eps-audience-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes eps-audience-sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

@keyframes eps-audience-leaf {
  0%, 100% { opacity: 0.65; transform: translateY(0); }
  50% { opacity: 0.95; transform: translateY(-3px); }
}

.eps-audience--fit .eps-container {
  position: relative;
  z-index: 1;
}

.eps-audience__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.eps-audience__ornament {
  display: inline-flex;
  width: 4rem;
  margin-bottom: 0.75rem;
  color: #c18da2;
}

.eps-audience__ornament svg {
  width: 100%;
  height: auto;
}

.eps-audience__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.18;
  color: #5a2f5c;
  letter-spacing: -0.02em;
}

.eps-audience__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: #5a4a50;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.65;
}

.eps-audience__trio {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.85fr) 1fr;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: stretch;
}

.eps-audience__panel {
  position: relative;
  background: #fffefd;
  border: 1px solid rgba(193, 141, 162, 0.24);
  border-radius: 22px;
  padding: clamp(1.2rem, 2.2vw, 1.55rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 36px rgba(47, 26, 40, 0.06);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  transition-delay: calc(var(--eps-ap, 1) * 0.12s);
}

.eps-audience--fit.is-visible .eps-audience__panel,
.eps-audience--fit.is-in .eps-audience__panel {
  opacity: 1;
  transform: none;
}

.eps-audience__panel--yes {
  transform: translateX(-24px) translateY(18px);
}

.eps-audience__panel--no {
  transform: translateX(24px) translateY(18px);
}

.eps-audience__panel--quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.4rem);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 242, 246, 0.96) 100%);
  transform: translateY(36px) scale(0.96);
}

.eps-audience--fit.is-visible .eps-audience__panel--yes,
.eps-audience--fit.is-visible .eps-audience__panel--no,
.eps-audience--fit.is-visible .eps-audience__panel--quote,
.eps-audience--fit.is-in .eps-audience__panel--yes,
.eps-audience--fit.is-in .eps-audience__panel--no,
.eps-audience--fit.is-in .eps-audience__panel--quote {
  transform: none;
}

.eps-audience__panel:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 44px rgba(47, 26, 40, 0.1);
}

.eps-audience__panel-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #2f1a28;
}

.eps-audience__badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  color: #6b3558;
  background: linear-gradient(155deg, #fff7f9, #f4e6ea);
  border: 1px solid rgba(193, 141, 162, 0.35);
}

.eps-audience__badge--no {
  color: #8a3048;
}

.eps-audience__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.eps-audience__list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #5a4a50;
  font-size: 0.92rem;
  line-height: 1.5;
}

.eps-audience__mark {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: rgba(193, 141, 162, 0.16);
  color: #6b3558;
}

.eps-audience__mark--no {
  background: rgba(154, 95, 120, 0.14);
  color: #8a3048;
}

.eps-audience__moon {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 0.35rem 0 0.15rem;
}

.eps-audience__moon-svg,
.eps-audience__moon-img {
  width: min(100%, 168px);
  height: auto;
  overflow: visible;
}

.eps-audience__moon-img {
  display: block;
  animation: eps-audience-moon-float 5.8s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(78, 42, 78, 0.12));
}

.eps-audience__tree {
  transform-origin: 154px 128px;
  animation: eps-audience-tree 6s ease-in-out infinite;
}

.eps-audience__petals path {
  animation: eps-audience-petal 5s ease-in-out infinite;
}

.eps-audience__petals path:nth-child(2) { animation-delay: 0.4s; }
.eps-audience__petals path:nth-child(3) { animation-delay: 0.8s; }
.eps-audience__petals path:nth-child(4) { animation-delay: 1.2s; }

@keyframes eps-audience-moon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes eps-audience-tree {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

@keyframes eps-audience-petal {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-5px); opacity: 0.9; }
}

.eps-audience__quote {
  margin: 0;
  padding: 0.35rem 0.25rem 0.15rem;
  text-align: center;
}

.eps-audience__quote p {
  margin: 0;
  font-family: var(--eps-font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.55;
  color: #4e2a4e;
}

.eps-audience__band {
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem 0.85rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(243, 196, 212, 0.35), rgba(247, 238, 242, 0.9));
  border: 1px solid rgba(193, 141, 162, 0.28);
  box-shadow: 0 12px 28px rgba(78, 42, 78, 0.06);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.eps-audience--fit.is-visible .eps-audience__band,
.eps-audience--fit.is-in .eps-audience__band {
  opacity: 1;
  transform: none;
}

.eps-audience__band-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #fff;
  color: #6b3558;
  border: 1px solid rgba(193, 141, 162, 0.3);
}

.eps-audience__band-text {
  flex: 1 1 14rem;
  margin: 0;
  color: #4e2a4e;
  font-size: 0.95rem;
  line-height: 1.5;
}

.eps-audience__band-cta {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  .eps-audience__trio {
    grid-template-columns: 1fr;
    max-width: 34rem;
    margin-inline: auto;
  }

  .eps-audience__panel--quote {
    order: -1;
  }

  .eps-audience__panel--yes,
  .eps-audience__panel--no,
  .eps-audience__panel--quote {
    transform: translateY(24px);
  }

  .eps-audience__bloom {
    width: 100px;
    opacity: 0.55;
  }

  .eps-audience__band {
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.65rem;
    padding: 0.95rem 1.1rem;
  }

  .eps-audience__band-icon {
    margin-inline: auto;
  }

  .eps-audience__band-text {
    flex: 0 1 auto;
    width: 100%;
    max-width: 32ch;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .eps-audience__band-cta {
    flex: 0 0 auto;
    margin-left: 0;
    margin-top: 0.15rem;
    width: 100%;
    max-width: 17.5rem;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .eps-audience__bloom--tl { left: -1.5rem; }
  .eps-audience__bloom--tr { right: -1.5rem; }

  .eps-audience__panel {
    border-radius: 18px;
    padding: 1.1rem 1rem;
  }

  .eps-audience__list li {
    font-size: 0.88rem;
  }

  .eps-audience__band {
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
    margin-top: 1.1rem;
  }

  .eps-audience__band-text {
    max-width: 28ch;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-audience__bloom--tl,
  .eps-audience__bloom--tr,
  .eps-audience__flower,
  .eps-audience__leaf,
  .eps-audience__tree,
  .eps-audience__petals path {
    animation: none !important;
  }

  .eps-audience__panel,
  .eps-audience__band {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.eps-card--end p {
  margin: 0.4rem 0 0;
  color: var(--eps-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.eps-journey__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eps-mauve);
}

.eps-journey__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eps-mauve);
}

.eps-journey__summary {
  margin: 2rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--eps-muted);
  font-size: 1.02rem;
}

/* ---------- Journey map ? Harta drumului ultra ---------- */
.eps-journey--map {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.6rem);
  padding-bottom: clamp(3.2rem, 6.5vw, 5rem);
  background:
    radial-gradient(ellipse 42% 36% at 50% 0%, rgba(243, 196, 212, 0.2), transparent 70%),
    linear-gradient(180deg, #faf7f5 0%, #f8f1f3 48%, #faf7f5 100%);
}

.eps-journey__bloom {
  position: absolute;
  width: clamp(100px, 14vw, 168px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.82;
}

.eps-journey__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-journey__bloom--tl {
  top: 0.4rem;
  left: -0.4rem;
  animation: eps-journey-float-a 7.2s ease-in-out infinite;
}

.eps-journey__bloom--tr {
  top: 0.6rem;
  right: -0.4rem;
  animation: eps-journey-float-b 8s ease-in-out infinite;
}

.eps-journey__bloom--bl {
  bottom: 0.8rem;
  left: -0.2rem;
  animation: eps-journey-float-b 7.6s ease-in-out infinite 0.4s;
}

.eps-journey__bloom--br {
  bottom: 1rem;
  right: -0.2rem;
  animation: eps-journey-float-a 8.4s ease-in-out infinite 0.6s;
}

.eps-journey__flower {
  transform-origin: center;
  animation: eps-journey-sway 5.8s ease-in-out infinite;
}

.eps-journey__petal {
  animation: eps-journey-leaf 4.6s ease-in-out infinite;
}

.eps-journey__spark {
  animation: eps-journey-spark 3.4s ease-in-out infinite;
}

@keyframes eps-journey-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-11px) rotate(2deg); }
}

@keyframes eps-journey-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-13px) rotate(-2deg); }
}

@keyframes eps-journey-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@keyframes eps-journey-leaf {
  0%, 100% { opacity: 0.62; transform: translateY(0); }
  50% { opacity: 0.92; transform: translateY(-3px); }
}

@keyframes eps-journey-spark {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.eps-journey--map .eps-container {
  position: relative;
  z-index: 1;
}

.eps-journey__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.1rem;
}

.eps-journey__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-journey__ornament {
  display: inline-flex;
  width: 4.5rem;
  margin-bottom: 0.7rem;
  color: #c9a46a;
}

.eps-journey__ornament svg {
  width: 100%;
  height: auto;
}

.eps-journey__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: #5a2f5c;
  letter-spacing: -0.02em;
}

.eps-journey__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: #5a4a50;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.65;
}

.eps-journey__bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0.65rem, 1.8vw, 1.15rem);
  align-items: stretch;
  max-width: 56rem;
  margin: 0 auto 2.1rem;
}

.eps-journey__pole {
  position: relative;
  background: #fffefd;
  border: 1px solid rgba(193, 141, 162, 0.24);
  border-radius: 20px;
  padding: clamp(1.05rem, 2vw, 1.35rem) clamp(1rem, 1.8vw, 1.25rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 32px rgba(47, 26, 40, 0.06);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  transition-delay: calc(var(--eps-jp, 1) * 0.1s);
}

.eps-journey--map.is-visible .eps-journey__pole,
.eps-journey--map.is-in .eps-journey__pole {
  opacity: 1;
  transform: none;
}

.eps-journey__pole--a { transform: translateX(-18px) translateY(16px); }
.eps-journey__pole--c { transform: translateX(18px) translateY(16px); }

.eps-journey--map.is-visible .eps-journey__pole--a,
.eps-journey--map.is-visible .eps-journey__pole--c,
.eps-journey--map.is-in .eps-journey__pole--a,
.eps-journey--map.is-in .eps-journey__pole--c {
  transform: none;
}

.eps-journey__pole:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 40px rgba(47, 26, 40, 0.1);
}

.eps-journey__pole-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(155deg, #fff7f9, #f4e6ea);
  border: 1px solid rgba(193, 141, 162, 0.32);
  color: #6b3558;
}

.eps-journey__pole-label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--eps-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c45d8a;
}

.eps-journey__pole p {
  margin: 0;
  color: #5a4a50;
  font-size: 0.92rem;
  line-height: 1.55;
}

.eps-journey__bridge-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 3.5rem;
  align-self: center;
  opacity: 0;
  transform: scaleX(0.6);
  transition:
    opacity 0.55s ease 0.2s,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.eps-journey--map.is-visible .eps-journey__bridge-line,
.eps-journey--map.is-in .eps-journey__bridge-line {
  opacity: 1;
  transform: none;
}

.eps-journey__bridge-dash {
  flex: 1 1 auto;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(193, 141, 162, 0.55) 18%,
    rgba(196, 93, 138, 0.7) 50%,
    rgba(193, 141, 162, 0.55) 82%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(193, 141, 162, 0.25);
  animation: eps-bridge-glow 3.2s ease-in-out infinite;
}

@keyframes eps-bridge-glow {
  0%, 100% { opacity: 0.55; filter: saturate(1); }
  50% { opacity: 1; filter: saturate(1.15); }
}

.eps-journey__bridge-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #6b3558;
  background: #fff;
  border: 1px solid rgba(193, 141, 162, 0.35);
  box-shadow: 0 6px 14px rgba(78, 42, 78, 0.08);
}

.eps-journey__path {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.eps-journey__step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  background: #fffefd;
  border: 1px solid rgba(193, 141, 162, 0.22);
  border-radius: 18px;
  padding: clamp(1.05rem, 1.8vw, 1.3rem) clamp(0.85rem, 1.4vw, 1.05rem) 1.2rem;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(47, 26, 40, 0.055);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  transition-delay: calc(0.18s + var(--eps-js, 1) * 0.09s);
}

.eps-journey--map.is-visible .eps-journey__step,
.eps-journey--map.is-in .eps-journey__step {
  opacity: 1;
  transform: none;
}

.eps-journey__step:nth-child(odd) {
  transform: translateY(34px) rotate(-0.6deg);
}

.eps-journey__step:nth-child(even) {
  transform: translateY(28px) rotate(0.6deg);
}

.eps-journey--map.is-visible .eps-journey__step:nth-child(odd),
.eps-journey--map.is-visible .eps-journey__step:nth-child(even),
.eps-journey--map.is-in .eps-journey__step:nth-child(odd),
.eps-journey--map.is-in .eps-journey__step:nth-child(even) {
  transform: none;
}

.eps-journey__step:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 36px rgba(47, 26, 40, 0.1);
}

.eps-journey__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
  color: #c45d8a;
}

.eps-journey__num-flourish {
  width: 0.85rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a46a, transparent);
}

.eps-journey__num-flourish--l {
  background: linear-gradient(90deg, transparent, #c9a46a);
}

.eps-journey__num-flourish--r {
  background: linear-gradient(90deg, #c9a46a, transparent);
}

.eps-journey__step-title {
  margin: 0 0 0.5rem;
  font-family: var(--eps-font-display);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.3;
  color: #2f1a28;
}

.eps-journey__step-text {
  margin: 0;
  color: #5a4a50;
  font-size: clamp(0.82rem, 1.05vw, 0.9rem);
  line-height: 1.55;
}

.eps-journey__curve {
  flex: 0 0 clamp(22px, 3.2vw, 40px);
  align-self: center;
  height: clamp(64px, 9vw, 96px);
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.28s + var(--eps-js, 1) * 0.08s);
}

.eps-journey__curve-h {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.eps-journey__curve-v {
  display: none;
}

.eps-journey__curve-path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: eps-journey-glow 2.8s ease-in-out infinite;
}

.eps-journey__curve-dot {
  animation: eps-journey-spark 2.6s ease-in-out infinite;
}

.eps-journey--map.is-visible .eps-journey__curve,
.eps-journey--map.is-in .eps-journey__curve {
  opacity: 1;
  transform: none;
}

@keyframes eps-journey-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@media (max-width: 1100px) {
  .eps-journey__path {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.65rem 0.35rem;
    align-items: stretch;
  }

  .eps-journey__step {
    text-align: left;
  }

  .eps-journey__curve {
    display: none;
  }

  .eps-journey__step:nth-child(1) { grid-column: 1; grid-row: 1; }
  .eps-journey__step:nth-child(3) { grid-column: 3; grid-row: 1; }
  .eps-journey__step:nth-child(5) { grid-column: 1; grid-row: 2; }
  .eps-journey__step:nth-child(7) { grid-column: 3; grid-row: 2; }
  .eps-journey__step:nth-child(9) {
    grid-column: 1 / -1;
    max-width: 22rem;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .eps-journey__bridge {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .eps-journey__bridge-line {
    min-height: 2.6rem;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .eps-journey__bridge-dash {
    flex: 0 0 1.1rem;
    width: 2px;
    height: 1.1rem;
    margin-inline: auto;
    border: 0;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(193, 141, 162, 0.55) 20%,
      rgba(196, 93, 138, 0.75) 50%,
      rgba(193, 141, 162, 0.55) 80%,
      transparent 100%
    );
  }

  .eps-journey__pole--a,
  .eps-journey__pole--c {
    transform: translateY(20px);
  }
}

@media (max-width: 640px) {
  .eps-journey__path {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 26rem;
    margin-inline: auto;
  }

  .eps-journey__step {
    text-align: center;
    width: 100%;
  }

  .eps-journey__step:nth-child(9) {
    max-width: none;
  }

  .eps-journey__curve {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 100%;
    height: 48px;
    margin: -0.1rem 0;
  }

  .eps-journey__curve-h {
    display: none;
  }

  .eps-journey__curve-v {
    display: block;
    width: 48px;
    height: 56px;
    overflow: visible;
  }

  .eps-journey__bloom {
    width: 88px;
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-journey__bloom--tl,
  .eps-journey__bloom--tr,
  .eps-journey__bloom--bl,
  .eps-journey__bloom--br,
  .eps-journey__flower,
  .eps-journey__petal,
  .eps-journey__spark,
  .eps-journey__curve-path,
  .eps-journey__curve-dot {
    animation: none !important;
  }

  .eps-journey__pole,
  .eps-journey__bridge-line,
  .eps-journey__step,
  .eps-journey__curve {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.eps-stats {
  position: relative;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--eps-plum) 0%, var(--eps-plum-deep) 100%);
  color: #fff;
  overflow: hidden;
}

/* Compact glass strip ? Iunia atelier modern */
.eps-stats--ultra,
.eps-stats--glass {
  padding: clamp(1.55rem, 3.2vw, 2.35rem) 0;
  background:
    radial-gradient(ellipse 70% 120% at 8% -10%, rgba(232, 160, 188, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 100% at 92% 110%, rgba(196, 93, 138, 0.22), transparent 50%),
    linear-gradient(118deg, #2a1628 0%, #4e2a4e 46%, #3a1f3a 100%);
  border-block: 0;
  isolation: isolate;
}

.eps-stats--atelier {
  overflow: hidden;
}

.eps-stats--ultra::before,
.eps-stats--glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(90deg, transparent, rgba(243, 196, 212, 0.14), transparent);
  opacity: 0.95;
}

.eps-stats__glow {
  display: none;
}

.eps-stats--ultra .eps-stats__glow,
.eps-stats--glass .eps-stats__glow {
  display: block;
  position: absolute;
  inset: -20% 18% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(243, 196, 212, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: eps-stats-glow 7s ease-in-out infinite;
}

.eps-stats__bloom {
  position: absolute;
  width: clamp(64px, 8vw, 96px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.eps-stats__bloom svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eps-stats__bloom--l {
  left: 0.35rem;
  top: 0.55rem;
  animation: eps-stats-float 6.5s ease-in-out infinite;
}

.eps-stats__bloom--r {
  right: 0.35rem;
  bottom: 0.45rem;
  animation: eps-stats-float 7.2s ease-in-out infinite reverse;
}

@keyframes eps-stats-glow {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes eps-stats-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.eps-stats__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto 0.95rem;
  max-width: 32rem;
}

.eps-stats__eyebrow {
  margin: 0 0 0.2rem;
  font-family: var(--eps-font-display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 196, 212, 0.92);
}

.eps-stats__tagline {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.01em;
}

.eps-stats__glass {
  position: relative;
  z-index: 1;
  padding: 0.55rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 18px 42px rgba(20, 8, 18, 0.24);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.eps-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.eps-stats--ultra .eps-stats__grid,
.eps-stats--glass .eps-stats__grid {
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.eps-stats__item {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  transition: background 0.35s var(--eps-ease), transform 0.35s var(--eps-ease);
}

.eps-stats--ultra .eps-stats__item,
.eps-stats--glass .eps-stats__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-radius: 0;
  min-width: 0;
  overflow: hidden;
  animation: eps-stat-rise 0.7s var(--eps-ease) both;
  animation-delay: calc(var(--eps-stat-i, 0) * 0.08s);
}

.eps-stats--ultra .eps-stats__item:not(:last-child)::after,
.eps-stats--glass .eps-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(250, 246, 244, 0.22) 22%,
    rgba(250, 246, 244, 0.22) 78%,
    transparent
  );
  pointer-events: none;
}

.eps-stats__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.eps-stats--ultra .eps-stats__item:hover,
.eps-stats--glass .eps-stats__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.eps-stats__icon {
  display: none;
}

.eps-stats--ultra .eps-stats__icon,
.eps-stats--glass .eps-stats__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0;
  color: #faf6f4;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.3s var(--eps-ease);
}

.eps-stats--ultra .eps-stats__icon svg,
.eps-stats--glass .eps-stats__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.eps-stats--ultra .eps-stats__icon-img,
.eps-stats--glass .eps-stats__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(20, 8, 18, 0.35));
}

.eps-stats--ultra .eps-stats__item:hover .eps-stats__icon,
.eps-stats--glass .eps-stats__item:hover .eps-stats__icon {
  transform: translateY(-2px) scale(1.04);
}

.eps-stats__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  overflow: hidden;
}

.eps-stats__value {
  display: block;
  font-family: var(--eps-font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.eps-stats--ultra .eps-stats__value,
.eps-stats--glass .eps-stats__value {
  font-size: clamp(1.55rem, 2.6vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fffefd;
  white-space: nowrap;
  overflow: hidden;
  text-shadow:
    0 0 24px rgba(232, 160, 188, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.2);
}

.eps-stats__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em) scale(0.88);
  filter: blur(2px);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.28s ease;
}

.eps-stats__char.is-space {
  width: 0.22em;
}

.eps-stats__char.is-on,
.eps-stats__value.is-typed .eps-stats__char {
  opacity: 1;
  transform: none;
  filter: none;
}

.eps-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.eps-stats--ultra .eps-stats__label,
.eps-stats--glass .eps-stats__label {
  margin-top: 0;
  max-width: none;
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(250, 246, 244, 0.8);
  opacity: 1;
}

@keyframes eps-stat-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-stats--ultra .eps-stats__item,
  .eps-stats--glass .eps-stats__item,
  .eps-stats__glow,
  .eps-stats__bloom--l,
  .eps-stats__bloom--r {
    animation: none;
  }

  .eps-stats__char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .eps-stats--ultra .eps-stats__grid,
  .eps-stats--glass .eps-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .eps-stats--ultra .eps-stats__item:nth-child(2n)::after,
  .eps-stats--glass .eps-stats__item:nth-child(2n)::after {
    display: none;
  }

  .eps-stats--ultra .eps-stats__item:nth-child(-n+2)::before,
  .eps-stats--glass .eps-stats__item:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(250, 246, 244, 0.18), transparent);
  }

  .eps-stats--ultra .eps-stats__item,
  .eps-stats--glass .eps-stats__item {
    padding: 0.8rem 0.85rem;
  }
}

@media (max-width: 560px) {
  .eps-stats--ultra,
  .eps-stats--glass {
    padding: 1.25rem 0;
  }

  .eps-stats__head {
    margin-bottom: 0.75rem;
  }

  .eps-stats__bloom {
    opacity: 0.4;
    width: 56px;
  }

  .eps-stats__glass {
    padding: 0.35rem;
    border-radius: 18px;
  }

  .eps-stats--ultra .eps-stats__value,
  .eps-stats--glass .eps-stats__value {
    font-size: clamp(1.2rem, 5.4vw, 1.65rem);
  }

  .eps-stats--ultra .eps-stats__grid,
  .eps-stats--glass .eps-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .eps-stats--ultra .eps-stats__label,
  .eps-stats--glass .eps-stats__label {
    font-size: 0.68rem;
  }
}

.eps-about__story {
  display: grid;
  gap: 0.85rem;
}

.eps-about__story .eps-section__text {
  margin: 0;
}

.eps-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .eps-card-grid--4,
  .eps-card-grid--5,
  .eps-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eps-card,
  .eps-card__glow,
  .eps-stats__item {
    transition: none !important;
  }

  .eps-card.is-active,
  .eps-card:hover,
  .eps-card:focus-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- UX Booster + professional pages ---------- */
.eps-ux {
  position: sticky;
  top: calc(var(--eps-topbar-h) + var(--eps-header-h) - 1px);
  z-index: 40;
  background: rgba(250, 246, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow: 0 8px 24px rgba(78, 42, 78, 0.05);
}

.eps-page-chrome .eps-ux {
  /* sticky handled by .eps-page-chrome */
  position: relative;
  top: auto;
}

.eps-ux__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem 0.9rem;
  min-height: 52px;
  padding-block: 0.4rem;
}

.eps-main--page-shell > .eps-ux {
  background: rgba(255, 252, 250, 0.94);
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
  box-shadow: 0 6px 18px rgba(78, 42, 78, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eps-main--page-shell > .eps-ux .eps-ux__link {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
}

@media (max-width: 719px) {
  .eps-ux,
  .eps-main--page-shell > .eps-ux {
    top: var(--eps-ux-sticky-top, calc(2px + var(--eps-header-h) + 10px));
    z-index: 90;
    margin: 0.55rem 0.7rem 0.15rem;
    width: auto;
    border-radius: 14px;
    border: 1px solid rgba(78, 42, 78, 0.1);
    border-bottom: 1px solid rgba(78, 42, 78, 0.1);
    background: rgba(255, 252, 250, 0.96);
    box-shadow: 0 8px 22px rgba(78, 42, 78, 0.07);
  }

  .admin-bar .eps-ux,
  .admin-bar .eps-main--page-shell > .eps-ux {
    top: calc(46px + var(--eps-ux-sticky-top, calc(2px + var(--eps-header-h) + 10px)));
  }

  .eps-ux__crumbs {
    display: none !important;
  }

  .eps-ux__inner {
    flex-wrap: nowrap;
    min-height: 44px;
    padding: 0.3rem 0.4rem;
  }

  .eps-ux__list {
    width: auto;
    flex: 1;
    order: 0;
  }
}

.eps-ux__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  scrollbar-width: thin;
}

.eps-ux__list li {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.eps-ux__link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--eps-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eps-muted);
  white-space: nowrap;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: color 0.25s var(--eps-ease), background 0.25s var(--eps-ease), border-color 0.25s var(--eps-ease);
}

.eps-ux__link:hover,
.eps-ux__link.is-active {
  color: var(--eps-plum);
  background: rgba(193, 141, 162, 0.18);
  border-color: rgba(193, 141, 162, 0.35);
}

.eps-ux__cta {
  flex-shrink: 0;
  padding: 0.45rem 1rem !important;
  font-size: 0.78rem !important;
}

.eps-main--page-shell .eps-page-shell {
  padding-bottom: 2rem;
}

.eps-page-hero {
  padding: 2.5rem 0 1.5rem;
}

.eps-page-hero__title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--eps-plum);
}

.eps-page-hero__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.08rem;
  color: var(--eps-muted);
  line-height: 1.65;
}

.eps-page-hero__actions {
  margin-top: 1.35rem;
}

.eps-page-section .eps-section__header--tight {
  margin-bottom: 1rem;
}

.eps-page-cta {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.eps-page-cta__text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--eps-muted);
  max-width: 36rem;
}

.eps-prose {
  max-width: 42rem;
  color: var(--eps-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.eps-prose--wide {
  max-width: 48rem;
}

.eps-prose p {
  margin: 0 0 1rem;
}

.eps-prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.25rem;
}

.eps-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.eps-check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--eps-text);
  line-height: 1.5;
}

.eps-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--eps-mauve);
}

.eps-muted {
  color: var(--eps-muted);
  font-size: 0.95rem;
}

.eps-card-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.eps-stats--inline {
  border-radius: var(--eps-radius);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .eps-card-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .eps-ux__cta {
    display: none;
  }

  .eps-card-grid--3 {
    grid-template-columns: 1fr;
  }

  .eps-ux {
    top: var(--eps-header-h);
  }

  .eps-page-chrome {
    top: var(--eps-header-h);
  }
}

/* ========== Unique page layouts (EmpirePsi 1.9) ========== */

.eps-page-hero__inner {
  display: block;
}

.eps-page-hero__copy {
  max-width: 42rem;
}

.eps-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Hero variants */
.eps-page-hero--center .eps-page-hero__inner {
  text-align: center;
}

.eps-page-hero--center .eps-page-hero__copy {
  margin-inline: auto;
  max-width: 40rem;
}

.eps-page-hero--center .eps-page-hero__lead {
  margin-inline: auto;
}

.eps-page-hero--center .eps-page-hero__actions {
  justify-content: center;
}

.eps-page-hero--compact {
  padding: 1.75rem 0 1rem;
}

.eps-page-hero--compact .eps-page-hero__title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}

.eps-page-hero--focus {
  padding: 2rem 0 1.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(193, 141, 162, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(250, 246, 244, 0.2), transparent);
}

.eps-page-hero--focus .eps-page-hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
}

.eps-page-hero--editorial {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-page-hero--editorial .eps-page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
}

.eps-page-hero--legal {
  padding: 0.85rem 0 0.35rem;
}

.eps-page-hero--legal .eps-page-hero__title {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.eps-page-hero--legal .eps-page-hero__lead {
  font-size: 0.94rem;
  max-width: 40rem;
}

.eps-page-hero--split .eps-page-hero__inner,
.eps-page-hero--split-soft .eps-page-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eps-page-hero--split {
  padding: 2.75rem 0 2rem;
}

.eps-page-hero--split-soft {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(135deg, rgba(193, 141, 162, 0.14), rgba(250, 246, 244, 0.4) 55%, transparent);
}

.eps-page-shell--story .eps-page-hero--split {
  background:
    linear-gradient(120deg, rgba(78, 42, 78, 0.04), transparent 40%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(193, 141, 162, 0.2), transparent 60%);
}

/* Story portrait */
.eps-story-portrait {
  margin: 0;
  position: relative;
}

.eps-story-portrait__frame {
  border-radius: 1.25rem 1.25rem 0.35rem 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(78, 42, 78, 0.16);
  aspect-ratio: 4 / 5;
  background: var(--eps-mauve-soft);
}

.eps-story-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eps-story-portrait__cap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.85rem;
  padding-left: 0.25rem;
}

.eps-story-portrait__cap span {
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.1rem;
}

.eps-story-portrait__cap small {
  color: var(--eps-muted);
  font-size: 0.85rem;
}

/* Story rail */
.eps-section--story-rail {
  padding-top: 0.5rem;
}

.eps-story-rail {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 1.75rem;
  max-width: 46rem;
}

.eps-story-rail__mark {
  border-radius: 99px;
  background: linear-gradient(180deg, var(--eps-mauve), var(--eps-plum));
}

.eps-story-rail__body p:last-child {
  margin-bottom: 0;
}

/* Manifesto rows */
.eps-manifesto {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-manifesto__row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
  transition: background 0.3s var(--eps-ease), padding-left 0.3s var(--eps-ease);
}

.eps-manifesto__row:hover,
.eps-manifesto__row.is-active {
  background: rgba(193, 141, 162, 0.08);
  padding-left: 0.75rem;
}

.eps-manifesto__num {
  font-family: var(--eps-font-display);
  font-size: 1.35rem;
  color: var(--eps-mauve);
  line-height: 1.2;
}

.eps-manifesto__row h3 {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-display);
  font-size: 1.2rem;
  color: var(--eps-plum);
}

.eps-manifesto__row p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
}

/* Fit split */
.eps-fit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--eps-radius);
  overflow: hidden;
  border: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-fit-split__col {
  padding: 1.75rem 1.5rem;
}

.eps-fit-split__col--yes {
  background: rgba(193, 141, 162, 0.12);
}

.eps-fit-split__col--no {
  background: rgba(78, 42, 78, 0.06);
  border-left: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-fit-split__col h3 {
  margin: 0 0 1rem;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.25rem;
}

.eps-fit-split__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.eps-fit-split__col li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  color: var(--eps-text);
  line-height: 1.45;
}

.eps-fit-split__col--yes li span {
  color: var(--eps-plum);
  font-weight: 700;
}

.eps-fit-split__col--no li span {
  color: var(--eps-muted);
  font-weight: 700;
}

/* Process ribbon */
.eps-process-ribbon {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.eps-process-ribbon li {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1rem;
  background: #fff;
  border-radius: var(--eps-radius);
  border: 1px solid rgba(78, 42, 78, 0.1);
  position: relative;
}

.eps-process-ribbon li span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--eps-plum);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.eps-process-ribbon strong {
  color: var(--eps-plum);
  font-family: var(--eps-font-display);
  font-size: 1.05rem;
}

.eps-process-ribbon em {
  font-style: normal;
  color: var(--eps-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* CTA panel */
.eps-section--cta-panel {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.eps-cta-panel {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(193, 141, 162, 0.18), rgba(250, 246, 244, 0.9));
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-cta-panel--invert {
  background: linear-gradient(135deg, var(--eps-plum-deep), var(--eps-plum));
  color: #faf6f4;
  border: none;
}

.eps-cta-panel--invert .eps-eyebrow,
.eps-cta-panel--invert .eps-section__title,
.eps-cta-panel--invert p {
  color: #faf6f4;
}

.eps-cta-panel--invert .eps-btn--ghost {
  border-color: rgba(250, 246, 244, 0.45);
  color: #faf6f4;
}

.eps-cta-panel--soft {
  background: rgba(250, 246, 244, 0.7);
}

.eps-cta-panel .eps-section__title {
  margin: 0.25rem 0 0.5rem;
}

.eps-cta-panel p {
  margin: 0;
  color: var(--eps-muted);
  max-width: 36rem;
}

.eps-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Catalog slabs */
.eps-catalog {
  display: grid;
  gap: 1.25rem;
}

.eps-catalog__slab {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(78, 42, 78, 0.12);
  background: #fff;
}

.eps-catalog__slab--a {
  background: linear-gradient(120deg, rgba(193, 141, 162, 0.12), #fff 50%);
}

.eps-catalog__slab--b {
  background: linear-gradient(120deg, rgba(78, 42, 78, 0.06), #fff 45%);
}

.eps-catalog__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eps-mauve);
  margin-bottom: 0.5rem;
}

.eps-catalog__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--eps-plum);
  line-height: 1.25;
}

.eps-catalog__meta p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.6;
}

.eps-catalog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.eps-catalog__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--eps-text);
  line-height: 1.45;
  font-size: 0.95rem;
}

.eps-catalog__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--eps-mauve);
}

.eps-topic-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.eps-topic-chips li {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.14);
  color: var(--eps-plum);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s var(--eps-ease), box-shadow 0.25s var(--eps-ease);
}

.eps-topic-chips li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(78, 42, 78, 0.1);
}

.eps-topic-chips__note {
  margin-top: 1.15rem;
}

.eps-decide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.eps-decide__step {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem 1.15rem;
  border-radius: var(--eps-radius);
  background: rgba(193, 141, 162, 0.1);
  border: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-decide__step b {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--eps-plum);
  color: #fff;
  font-size: 0.95rem;
}

.eps-decide__step span {
  color: var(--eps-plum);
  font-family: var(--eps-font-display);
  font-size: 1.1rem;
  line-height: 1.3;
}

/* Journey bridge + timeline */
.eps-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.eps-bridge__end {
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-bridge__end--c {
  background: linear-gradient(160deg, rgba(193, 141, 162, 0.2), #fff);
}

.eps-bridge__end span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eps-mauve);
  margin-bottom: 0.5rem;
}

.eps-bridge__end p {
  margin: 0;
  color: var(--eps-text);
  line-height: 1.55;
}

.eps-bridge__path {
  display: grid;
  place-items: center;
  min-width: 3rem;
}

.eps-bridge__path span {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--eps-mauve), var(--eps-plum));
  position: relative;
}

.eps-bridge__path span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--eps-plum);
}

.eps-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.eps-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--eps-mauve), rgba(78, 42, 78, 0.15));
}

.eps-timeline__item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1.25rem;
  padding: 1rem 0 1.35rem;
  position: relative;
}

.eps-timeline__node {
  position: relative;
  z-index: 1;
}

.eps-timeline__node span {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--eps-plum);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 0 6px var(--eps-cream);
}

.eps-timeline__content h3 {
  margin: 0.2rem 0 0.4rem;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.2rem;
}

.eps-timeline__content p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
  max-width: 40rem;
}

.eps-dayflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-dayflow__block {
  padding: 1.25rem 1rem;
  background: #fff;
  border-right: 1px solid rgba(78, 42, 78, 0.1);
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.eps-dayflow__block:last-child {
  border-right: none;
}

.eps-dayflow__block:nth-child(odd) {
  background: rgba(193, 141, 162, 0.08);
}

.eps-dayflow__t {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eps-mauve);
}

.eps-dayflow__block strong {
  color: var(--eps-plum);
  font-family: var(--eps-font-display);
  font-size: 1.05rem;
}

.eps-dayflow__block p {
  margin: 0;
  color: var(--eps-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.eps-letters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.eps-letters__item {
  padding: 1.25rem 1rem;
  border-top: 3px solid var(--eps-mauve);
  background: rgba(250, 246, 244, 0.6);
}

.eps-letters__item > span {
  font-family: var(--eps-font-display);
  font-size: 2rem;
  color: var(--eps-mauve);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.eps-letters__item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--eps-plum);
  font-family: var(--eps-font-display);
}

.eps-letters__item p {
  margin: 0;
  color: var(--eps-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Voices */
.eps-voice-feature {
  margin: 0;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.12);
  box-shadow: 0 20px 40px rgba(78, 42, 78, 0.1);
  position: relative;
}

.eps-voice-feature__mark {
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: var(--eps-font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(193, 141, 162, 0.45);
}

.eps-voice-feature p {
  margin: 1.25rem 0 1rem;
  font-family: var(--eps-font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--eps-plum);
}

.eps-voice-feature footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.eps-voice-feature footer strong {
  color: var(--eps-plum);
}

.eps-voice-feature footer span,
.eps-voice-card footer span {
  color: var(--eps-muted);
  font-size: 0.88rem;
}

.eps-voice-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.eps-voice-card {
  margin: 0;
  padding: 1.35rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-voice-card p {
  margin: 0 0 1rem;
  color: var(--eps-text);
  line-height: 1.55;
  font-size: 1rem;
}

.eps-voice-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.eps-section--plum-band {
  background: linear-gradient(135deg, var(--eps-plum-deep), var(--eps-plum));
  padding: 2.5rem 0;
  color: #faf6f4;
}

.eps-section--plum-band .eps-stats--voices {
  background: transparent;
}

.eps-section--plum-band .eps-stats__value,
.eps-section--plum-band .eps-stats__label {
  color: #faf6f4;
}

.eps-voices-note {
  margin: 1.25rem 0 0;
  color: rgba(250, 246, 244, 0.82);
  max-width: 40rem;
  font-size: 0.95rem;
}

/* Booking stepper */
.eps-stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.eps-stepper__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-stepper__item.is-active {
  border-color: rgba(193, 141, 162, 0.55);
  box-shadow: 0 12px 28px rgba(78, 42, 78, 0.08);
  background: linear-gradient(90deg, rgba(193, 141, 162, 0.12), #fff 40%);
}

.eps-stepper__n {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--eps-plum);
  color: #fff;
  font-weight: 700;
}

.eps-stepper__item strong {
  display: block;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.eps-stepper__item p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.5;
}

.eps-booking-desk {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.eps-booking-desk__cta {
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(160deg, var(--eps-plum-deep), var(--eps-plum));
  color: #faf6f4;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.eps-booking-desk__cta .eps-eyebrow,
.eps-booking-desk__cta .eps-muted {
  color: rgba(250, 246, 244, 0.8);
}

.eps-booking-desk__title {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: 1.5rem;
  line-height: 1.25;
}

/* Connect desk */
.eps-connect {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
}

.eps-connect__channels {
  display: grid;
  gap: 0.75rem;
}

.eps-connect__row {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.12);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s var(--eps-ease), box-shadow 0.25s var(--eps-ease);
}

a.eps-connect__row:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(78, 42, 78, 0.1);
}

.eps-connect__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--eps-mauve);
}

.eps-connect__row strong {
  color: var(--eps-plum);
  font-size: 1.1rem;
}

.eps-connect__row em {
  font-style: normal;
  color: var(--eps-muted);
  font-size: 0.9rem;
}

.eps-connect__panel {
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(150deg, rgba(193, 141, 162, 0.22), rgba(250, 246, 244, 0.9));
  border: 1px solid rgba(78, 42, 78, 0.1);
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.eps-connect__panel h2 {
  margin: 0;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.6rem;
}

.eps-connect__panel p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
}

.eps-connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.eps-connect-links a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(78, 42, 78, 0.14);
  background: #fff;
  color: var(--eps-plum);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
}

.eps-connect-links a:hover {
  background: rgba(193, 141, 162, 0.15);
}

/* FAQ desk */
.eps-faq-desk {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 2rem;
  align-items: start;
}

.eps-faq-desk__index {
  position: sticky;
  top: calc(var(--eps-topbar-h) + var(--eps-header-h) + 4.5rem);
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(193, 141, 162, 0.1);
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-faq-desk__index ol {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.eps-faq-desk__index a {
  color: var(--eps-plum);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
}

.eps-faq-desk__index a:hover {
  text-decoration: underline;
}

/* FAQ page ? ultra compact 50/50 */
.eps-faq-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  align-items: start;
  max-width: 58rem;
  margin: 0 auto;
}

.eps-section--faq-desk .eps-section__header {
  margin-bottom: 1.1rem;
}

.eps-faq-page .eps-faq__item {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 244, 248, 0.92) 100%);
  border: 1px solid rgba(193, 141, 162, 0.24);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 16px rgba(78, 42, 78, 0.04);
  overflow: hidden;
}

.eps-faq-page .eps-faq__item:has(.eps-faq__button[aria-expanded="true"]) {
  border-color: rgba(196, 93, 138, 0.4);
  grid-column: 1 / -1;
}

.eps-faq-page .eps-faq__button {
  gap: 0.55rem;
  padding: 0.62rem 0.7rem;
  font-family: var(--eps-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2f1a28;
  justify-content: flex-start;
}

.eps-faq-page .eps-faq__num {
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.64rem;
}

.eps-faq-page .eps-faq__toggle {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: auto;
}

.eps-faq-page .eps-faq__toggle-bar {
  width: 0.5rem;
}

.eps-faq-page .eps-faq__button[aria-expanded="true"] .eps-faq__toggle {
  background: linear-gradient(155deg, #f3c4d4, #e8a0bc);
  border-color: rgba(196, 93, 138, 0.45);
}

.eps-faq-page .eps-faq__button[aria-expanded="true"] .eps-faq__toggle-bar:last-child {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.eps-faq-page .eps-faq__button[aria-expanded="true"] .eps-faq__num {
  color: #fff;
  background: linear-gradient(155deg, #c45d8a, #9a5f78);
  border-color: transparent;
}

.eps-faq-page .eps-faq__panel {
  padding: 0 0.7rem 0.7rem 2.9rem;
  color: #5a4a50;
}

.eps-faq-page .eps-faq__panel p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.eps-page-shell--faq-ultra .eps-faq-page .eps-faq__item {
  border-radius: 12px;
}

@media (max-width: 720px) {
  .eps-faq-page {
    grid-template-columns: 1fr;
  }

  .eps-faq-page .eps-faq__item:has(.eps-faq__button[aria-expanded="true"]) {
    grid-column: auto;
  }

  .eps-faq-page .eps-faq__panel {
    padding: 0 0.65rem 0.65rem;
  }
}

/* Library rows */
.eps-library {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-library__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
  transition: background 0.25s var(--eps-ease);
}

.eps-library__row:hover {
  background: rgba(193, 141, 162, 0.07);
}

.eps-library__n {
  font-family: var(--eps-font-display);
  font-size: 1.35rem;
  color: var(--eps-mauve);
}

.eps-library__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.2rem;
}

.eps-library__body p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
  max-width: 40rem;
}

.eps-library__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eps-mauve);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(193, 141, 162, 0.45);
  border-radius: 999px;
  white-space: nowrap;
}

/* Legal desk */
.eps-page-shell--legal .eps-page-hero {
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-ux--legal {
  background: rgba(250, 246, 244, 0.96);
}

.eps-legal-desk {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  gap: 2.25rem 2.75rem;
  align-items: start;
  max-width: 58rem;
  margin-inline: auto;
}

.eps-legal-toc {
  position: sticky;
  top: calc(var(--eps-topbar-h) + var(--eps-header-h) + 4.5rem);
  padding: 1.05rem 1.15rem 1.15rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(78, 42, 78, 0.18);
}

.eps-legal-toc__title,
.eps-legal-toc .eps-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(78, 42, 78, 0.72);
}

.eps-legal-toc ol {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--eps-muted);
}

.eps-legal-toc a {
  color: var(--eps-plum);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.eps-legal-toc a:hover {
  border-bottom-color: rgba(78, 42, 78, 0.35);
}

.eps-legal-body {
  max-width: 44rem;
  color: var(--eps-text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.eps-legal-body h2,
.eps-legal-body h3 {
  scroll-margin-top: 8rem;
  font-family: var(--eps-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--eps-plum-deep);
}

.eps-legal-body h2 {
  margin: 2.1rem 0 0.75rem;
  font-size: 1.28rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(78, 42, 78, 0.12);
}

.eps-legal-body h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.05rem;
}

.eps-legal-body p,
.eps-legal-body li {
  color: #3f3038;
}

.eps-legal-body ul,
.eps-legal-body ol {
  margin: 0.65rem 0 1rem;
  padding-left: 1.2rem;
}

.eps-legal-body li + li {
  margin-top: 0.35rem;
}

.eps-legal-body a {
  color: var(--eps-plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.eps-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 1.35rem;
  padding: 0.7rem 0 0.85rem;
  border-bottom: 1px solid rgba(78, 42, 78, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--eps-muted);
}

.eps-legal-meta strong {
  color: var(--eps-plum);
  font-weight: 650;
}

.eps-legal-contacts {
  margin-top: 2.4rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(78, 42, 78, 0.14);
  background:
    linear-gradient(180deg, rgba(250, 246, 244, 0.9), rgba(255, 255, 255, 0.72));
}

.eps-legal-contacts h3 {
  margin: 0 0 0.85rem;
  border: 0;
  padding: 0;
  font-size: 1.1rem;
}

.eps-legal-contacts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.eps-legal-contacts__role {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(78, 42, 78, 0.68);
}

.eps-legal-contacts a {
  font-weight: 600;
}

.eps-legal-contacts small {
  display: block;
  margin-top: 0.2rem;
  color: var(--eps-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.eps-legal-contacts__note {
  margin: 1rem 0 0;
  font-size: 0.86rem;
  color: var(--eps-muted);
}

.eps-page-shell--legal .eps-section--legal {
  padding-top: 0.35rem;
}

.eps-page-shell--legal .eps-legal-desk {
  margin-top: 0.25rem;
}

.eps-page-hero--legal {
  padding: 0.85rem 0 0.35rem;
  background: transparent;
}

.eps-page-hero--legal .eps-page-hero__title {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.eps-page-hero--legal .eps-page-hero__lead {
  font-size: 0.94rem;
  max-width: 40rem;
  color: var(--eps-muted);
}

@media (max-width: 1024px) {
  .eps-page-hero--split .eps-page-hero__inner,
  .eps-page-hero--split-soft .eps-page-hero__inner,
  .eps-catalog__slab,
  .eps-bridge,
  .eps-dayflow,
  .eps-letters,
  .eps-process-ribbon,
  .eps-decide,
  .eps-voice-stack,
  .eps-booking-desk,
  .eps-connect,
  .eps-faq-desk,
  .eps-legal-desk,
  .eps-cta-panel,
  .eps-fit-split {
    grid-template-columns: 1fr;
  }

  .eps-bridge__path {
    min-height: 2rem;
  }

  .eps-bridge__path span {
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--eps-mauve), var(--eps-plum));
  }

  .eps-bridge__path span::after {
    right: -4px;
    top: auto;
    bottom: -2px;
    border: 5px solid transparent;
    border-top-color: var(--eps-plum);
    border-left-color: transparent;
  }

  .eps-dayflow__block {
    border-right: none;
    border-bottom: 1px solid rgba(78, 42, 78, 0.1);
  }

  .eps-fit-split__col--no {
    border-left: none;
    border-top: 1px solid rgba(78, 42, 78, 0.1);
  }

  .eps-faq-desk__index,
  .eps-legal-toc {
    position: static;
  }

  .eps-library__row {
    grid-template-columns: 2.75rem 1fr;
  }

  .eps-library__tag {
    grid-column: 2;
  }

  .eps-cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .eps-manifesto__row {
    grid-template-columns: 3rem 1fr;
  }

  .eps-process-ribbon {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== Contact ultra (best-in-class therapy desk) ========== */
.eps-page-shell--contact-ultra .eps-page-hero--split-soft {
  padding-bottom: 1.5rem;
}

.eps-contact-promise {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.12);
  box-shadow: 0 18px 40px rgba(78, 42, 78, 0.1);
}

.eps-contact-promise__kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eps-mauve);
}

.eps-contact-promise ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.eps-contact-promise li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-contact-promise li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.eps-contact-promise strong {
  color: var(--eps-plum);
  font-family: var(--eps-font-display);
  font-size: 1.1rem;
}

.eps-contact-promise span {
  color: var(--eps-muted);
  font-size: 0.9rem;
}

.eps-section--contact-trust {
  padding: 0.25rem 0 0.5rem;
}

.eps-contact-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.eps-contact-trust li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(193, 141, 162, 0.14);
  border: 1px solid rgba(193, 141, 162, 0.28);
  color: var(--eps-plum);
  font-size: 0.82rem;
  font-weight: 600;
}

.eps-section--contact-desk {
  padding-top: 1.25rem;
}

.eps-contact-desk {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.eps-contact-desk__form {
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.12);
  box-shadow: 0 20px 48px rgba(78, 42, 78, 0.08);
}

.eps-contact-desk__head {
  margin-bottom: 1.35rem;
}

.eps-contact-desk__head h2 {
  margin: 0.2rem 0 0.5rem;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.eps-contact-desk__head p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
  max-width: 36rem;
}

.eps-contact-desk__rail {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--eps-topbar-h) + var(--eps-header-h) + 4.5rem);
}

.eps-contact-rail-card {
  padding: 1.5rem 1.35rem;
  border-radius: 1.2rem;
  background: linear-gradient(150deg, var(--eps-plum-deep), var(--eps-plum));
  color: #faf6f4;
  display: grid;
  gap: 0.65rem;
}

.eps-contact-rail-card .eps-eyebrow,
.eps-contact-rail-card p {
  color: rgba(250, 246, 244, 0.85);
}

.eps-contact-rail-card h3 {
  margin: 0;
  font-family: var(--eps-font-display);
  font-size: 1.45rem;
  color: #fff;
}

.eps-contact-channels {
  display: grid;
  gap: 0.55rem;
}

.eps-contact-channel {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.12);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s var(--eps-ease), box-shadow 0.25s var(--eps-ease);
  min-height: 3.5rem;
}

a.eps-contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(78, 42, 78, 0.1);
}

.eps-contact-channel__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(193, 141, 162, 0.16);
  color: var(--eps-plum);
  font-weight: 700;
}

.eps-contact-channel--wa .eps-contact-channel__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.eps-contact-channel em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eps-mauve);
}

.eps-contact-channel strong {
  display: block;
  color: var(--eps-plum);
  font-size: 0.98rem;
  line-height: 1.3;
  word-break: break-word;
}

.eps-contact-rail-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--eps-muted);
  line-height: 1.5;
}

/* Form controls */
.eps-cform__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.eps-cform {
  position: relative;
}

.eps-cform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}

.eps-cform__field {
  display: grid;
  gap: 0.4rem;
}

.eps-cform__field--full {
  grid-column: 1 / -1;
}

.eps-cform__field span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--eps-plum);
}

.eps-cform__field em {
  color: var(--eps-mauve);
  font-style: normal;
}

.eps-cform__field input,
.eps-cform__field select,
.eps-cform__field textarea {
  width: 100%;
  border: 1px solid rgba(78, 42, 78, 0.16);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--eps-text);
  background: rgba(250, 246, 244, 0.55);
  transition: border-color 0.2s var(--eps-ease), box-shadow 0.2s var(--eps-ease), background 0.2s var(--eps-ease);
}

.eps-cform__field input:focus,
.eps-cform__field select:focus,
.eps-cform__field textarea:focus {
  outline: none;
  border-color: rgba(193, 141, 162, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(193, 141, 162, 0.18);
}

.eps-cform__field.is-invalid input,
.eps-cform__field.is-invalid select,
.eps-cform__field.is-invalid textarea {
  border-color: #c0394a !important;
  background: #fff6f7;
  box-shadow: 0 0 0 3px rgba(192, 57, 74, 0.16);
}

.eps-cform__check.is-invalid {
  color: #8b2433;
  outline: 2px solid rgba(192, 57, 74, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}

.eps-cform__check.is-invalid input {
  outline: 2px solid #c0394a;
  outline-offset: 2px;
}

.eps-cform__field textarea {
  resize: vertical;
  min-height: 8rem;
}

.eps-cform__check {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 1.1rem;
  color: var(--eps-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.eps-cform__check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--eps-plum);
}

.eps-cform__check a {
  color: var(--eps-plum);
  font-weight: 600;
}

.eps-cform__hint {
  margin: 0.85rem 0 0;
  font-size: 0.84rem;
  color: var(--eps-muted);
  line-height: 1.45;
}

.eps-cform__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.eps-cform__status {
  font-size: 0.9rem;
  color: var(--eps-muted);
  max-width: 28rem;
  line-height: 1.45;
}

.eps-cform__status.is-ok {
  color: #2f6b4f;
}

.eps-cform__status.is-err {
  color: #8a3a4a;
}

.eps-cform__status.is-pending {
  color: var(--eps-plum);
}

.eps-btn.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.eps-contact-expect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.eps-contact-expect article {
  padding: 1.35rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-contact-expect span {
  font-family: var(--eps-font-display);
  color: var(--eps-mauve);
  font-size: 1.2rem;
}

.eps-contact-expect h3 {
  margin: 0.45rem 0 0.45rem;
  font-family: var(--eps-font-display);
  color: var(--eps-plum);
  font-size: 1.15rem;
}

.eps-contact-expect p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.eps-contact-crisis {
  padding: 1.35rem 1.35rem;
  border-radius: 1.1rem;
  background: rgba(78, 42, 78, 0.05);
  border: 1px dashed rgba(78, 42, 78, 0.18);
  display: grid;
  gap: 0.85rem;
}

.eps-contact-crisis p {
  margin: 0;
  color: var(--eps-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.eps-contact-crisis__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.eps-contact-crisis__links a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(78, 42, 78, 0.14);
  background: #fff;
  color: var(--eps-plum);
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none !important;
}

.eps-contact-crisis__links a:hover {
  background: rgba(193, 141, 162, 0.14);
}

@media (max-width: 1024px) {
  .eps-contact-desk,
  .eps-contact-expect,
  .eps-cform__grid {
    grid-template-columns: 1fr;
  }

  .eps-contact-desk__rail {
    position: static;
  }
}

/* ========== Ultra polish (all SEO pages) ========== */
.eps-page-shell[class*="-ultra"] .eps-page-hero {
  position: relative;
}

.eps-story-portrait__badges {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.eps-story-portrait__badges li {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eps-plum);
  background: rgba(193, 141, 162, 0.16);
  border: 1px solid rgba(193, 141, 162, 0.35);
}

.eps-catalog__cta {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--eps-plum);
  text-decoration: none !important;
  font-size: 0.95rem;
}

.eps-catalog__cta:hover {
  text-decoration: underline !important;
}

.eps-catalog__slab {
  transition: transform 0.3s var(--eps-ease), box-shadow 0.3s var(--eps-ease);
}

.eps-catalog__slab:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(78, 42, 78, 0.1);
}

.eps-contact-rail-card--soft {
  background: linear-gradient(150deg, rgba(193, 141, 162, 0.22), rgba(250, 246, 244, 0.95));
  color: var(--eps-text);
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-contact-rail-card--soft .eps-eyebrow,
.eps-contact-rail-card--soft p {
  color: var(--eps-muted);
}

.eps-contact-rail-card--soft h3 {
  color: var(--eps-plum);
}

.eps-page-shell--booking-ultra .eps-stepper {
  margin-top: 0.25rem;
}

.eps-page-shell--faq-ultra .eps-faq__item,
.eps-page-shell--booking-ultra .eps-faq__item {
  border-radius: 0.85rem;
  overflow: hidden;
}

.eps-library__row {
  border-radius: 0.75rem;
  padding-inline: 0.75rem;
}

.eps-page-shell--legal-ultra .eps-legal-desk {
  margin-top: 0.5rem;
}

.eps-page-shell--legal-ultra .eps-legal-toc {
  box-shadow: 0 10px 28px rgba(78, 42, 78, 0.06);
}

.eps-page-shell--voices-ultra .eps-voice-card {
  transition: transform 0.25s var(--eps-ease), box-shadow 0.25s var(--eps-ease);
}

.eps-page-shell--voices-ultra .eps-voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(78, 42, 78, 0.1);
}

.eps-page-shell--journey-ultra .eps-timeline__item:hover .eps-timeline__node span {
  transform: scale(1.06);
}

.eps-timeline__node span {
  transition: transform 0.25s var(--eps-ease);
}

.eps-ultra-trust {
  justify-content: flex-start;
}

.eps-page-shell--catalog-ultra .eps-page-hero__copy,
.eps-page-shell--journey-ultra .eps-page-hero__copy,
.eps-page-shell--booking-ultra .eps-page-hero__copy,
.eps-page-shell--faq-ultra .eps-page-hero__copy,
.eps-page-shell--library-ultra .eps-page-hero__copy,
.eps-page-shell--voices-ultra .eps-page-hero__copy {
  max-width: 36rem;
}

/* ========== Booking modal shell removed ? Iunia Premium Booking owns UI ========== */
.eps-booking-embed .iunia-booking-trigger {
  display: inline-flex;
}

.eps-stepper--inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .eps-stepper--inline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .eps-stepper--inline {
    grid-template-columns: 1fr;
  }
}

/* ---------- Coming soon page ---------- */
.eps-main--soon {
  position: relative;
  min-height: calc(100vh - var(--eps-topbar-h) - 4rem);
  min-height: calc(100dvh - var(--eps-topbar-h) - 4rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 0 2.75rem;
  width: 100%;
}

@media (min-height: 900px) {
  .eps-main--soon {
    align-items: center;
  }
}

.eps-soon {
  position: relative;
  z-index: 1;
  width: min(100% - 1rem, 1080px);
  margin: 0 auto;
  font-family: var(--eps-font-ui);
}

.eps-soon--gate {
  width: min(100% - 0.75rem, 1060px);
}

/* Full-viewport atmosphere (not clipped by card max-width) */
.eps-soon__atmosphere {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100%;
  min-height: 100dvh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.eps-soon__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.55;
  will-change: transform, opacity;
}

.eps-soon__aurora--a {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  top: -18%;
  left: -16%;
  background: radial-gradient(circle, rgba(232, 160, 188, 0.55), transparent 68%);
  animation: eps-soon-aurora 16s ease-in-out infinite;
}

.eps-soon__aurora--b {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: -18%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(196, 93, 138, 0.28), transparent 70%);
  animation: eps-soon-aurora 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.eps-soon__aurora--c {
  width: min(40vw, 280px);
  height: min(40vw, 280px);
  left: 38%;
  top: 42%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  animation: eps-soon-aurora 14s ease-in-out infinite;
  animation-delay: -8s;
}

.eps-soon__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.45;
  animation: eps-soon-pulse 8s ease-in-out infinite;
}

.eps-soon__orb--a {
  width: min(36vw, 200px);
  height: min(36vw, 200px);
  top: 8%;
  right: 10%;
  background: radial-gradient(circle, rgba(243, 196, 212, 0.7), transparent 70%);
}

.eps-soon__orb--b {
  width: min(30vw, 160px);
  height: min(30vw, 160px);
  left: 6%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(193, 141, 162, 0.45), transparent 70%);
  animation-delay: -3s;
}

.eps-soon__orb--c {
  width: min(22vw, 120px);
  height: min(22vw, 120px);
  right: 28%;
  top: 58%;
  background: radial-gradient(circle, rgba(232, 160, 188, 0.5), transparent 70%);
  animation-delay: -5.5s;
}

.eps-soon__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  animation: eps-soon-watermark 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both,
    eps-soon-watermark-breathe 14s ease-in-out 1.5s infinite;
}

.eps-soon__watermark img {
  width: min(88vw, 920px);
  height: auto;
  max-height: min(42vh, 340px);
  object-fit: contain;
  filter: grayscale(0.05);
  opacity: 0.09;
  user-select: none;
  pointer-events: none;
}

.eps-soon__bloom {
  position: absolute;
  opacity: 0;
  filter: drop-shadow(0 12px 24px rgba(196, 93, 138, 0.22));
  animation: eps-soon-bloom-in 1s cubic-bezier(0.22, 1, 0.36, 1) both,
    eps-soon-float 10s ease-in-out infinite;
}

.eps-soon__bloom--tl {
  top: 8%;
  left: 4%;
  width: clamp(72px, 10vw, 120px);
  height: auto;
  animation-delay: 0.35s, 1.3s;
}

.eps-soon__bloom--tr {
  top: 12%;
  right: 5%;
  width: clamp(48px, 7vw, 84px);
  height: auto;
  animation-delay: 0.55s, 1.5s;
  animation-duration: 1s, 12s;
}

.eps-soon__bloom--br {
  right: 6%;
  bottom: 10%;
  width: clamp(58px, 8vw, 96px);
  height: auto;
  animation-delay: 0.7s, 1.7s;
  animation-duration: 1s, 11s;
}

.eps-soon__bloom--bl {
  left: 7%;
  bottom: 16%;
  width: clamp(40px, 6vw, 68px);
  height: auto;
  animation-delay: 0.85s, 1.9s;
  animation-duration: 1s, 13s;
}

.eps-soon__leaf {
  position: absolute;
  opacity: 0;
  transform-origin: 50% 90%;
  animation: eps-soon-bloom-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both,
    eps-soon-leaf 11s ease-in-out infinite;
}

.eps-soon__leaf--1 {
  left: 8%;
  top: 36%;
  width: clamp(34px, 5vw, 52px);
  height: auto;
  animation-delay: 0.6s, 1.4s;
}

.eps-soon__leaf--2 {
  right: 10%;
  bottom: 30%;
  width: clamp(28px, 4.4vw, 44px);
  height: auto;
  animation-delay: 0.9s, 1.8s;
  animation-name: eps-soon-bloom-in, eps-soon-leaf-flip;
}

.eps-soon__petal {
  position: absolute;
  width: 12px;
  height: 18px;
  border-radius: 60% 60% 55% 55%;
  background: radial-gradient(circle at 30% 30%, #f3c4d4, #c45d8a 75%);
  opacity: 0;
  animation: eps-soon-petal 14s linear infinite;
}

.eps-soon__petal--1 { top: 18%; left: 22%; animation-delay: 1.2s; }
.eps-soon__petal--2 { top: 36%; right: 18%; width: 10px; height: 15px; animation-delay: 3.4s; animation-duration: 16s; }
.eps-soon__petal--3 { bottom: 32%; left: 16%; width: 9px; height: 14px; animation-delay: 5.1s; animation-duration: 15s; }
.eps-soon__petal--4 { top: 52%; right: 30%; width: 8px; height: 12px; animation-delay: 7s; animation-duration: 17s; }

.eps-soon__panel {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.4vw, 1.45rem) clamp(1rem, 2.8vw, 1.75rem) clamp(0.95rem, 2.2vw, 1.25rem);
  text-align: center;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 250, 247, 0.72) 48%,
      rgba(255, 246, 242, 0.76) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  backdrop-filter: blur(22px) saturate(1.22);
  -webkit-backdrop-filter: blur(22px) saturate(1.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 0 0 1px rgba(78, 42, 78, 0.04),
    0 22px 48px rgba(63, 28, 52, 0.1);
  overflow: hidden;
  animation: eps-soon-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eps-soon__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38) 0%, transparent 42%),
    linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
  transform: none;
  animation: none;
  pointer-events: none;
  opacity: 0.85;
}

.eps-soon__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.eps-soon__panel > * {
  position: relative;
  z-index: 1;
}

.eps-soon__eyebrow {
  display: none;
}

.eps-soon__brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0 0 0.15rem;
}

.eps-soon__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: eps-soon-logo 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.eps-soon__logo img {
  display: block;
  width: auto;
  max-width: min(460px, 88vw);
  height: auto;
  max-height: 96px;
  margin-inline: auto;
  filter: none;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.eps-soon__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.38rem 0.8rem;
  max-width: min(100%, 34rem);
  border-radius: 999px;
  font-family: var(--eps-font-ui);
  font-size: clamp(0.62rem, 2.4vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  color: #6b3558;
  background: rgba(243, 196, 212, 0.42);
  border: 1px solid rgba(196, 93, 138, 0.28);
  opacity: 0;
  animation: eps-soon-item 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.eps-soon__badge-icon {
  display: inline-flex;
  color: #8b3d66;
  flex-shrink: 0;
}

.eps-soon__badge-icon svg {
  display: block;
}

.eps-soon__brand {
  display: none;
}

.eps-soon__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.55rem auto 0.3rem;
  max-width: 10rem;
  opacity: 0;
  animation: eps-soon-item 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.eps-soon__status-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 93, 138, 0.45), transparent);
}

.eps-soon__status-mark {
  position: relative;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.eps-soon__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c45d8a;
  box-shadow: 0 0 0 0 rgba(196, 93, 138, 0.45);
  animation: eps-soon-dot 2.2s ease-out infinite;
}

.eps-soon__status-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 93, 138, 0.45);
  animation: eps-soon-ring 2.6s ease-out infinite;
}

.eps-soon__coming {
  margin: 0 0 0.35rem;
  padding: 0.08em 0.12em;
  font-family: var(--eps-font-display);
  font-size: clamp(1.75rem, 4.8vw, 2.55rem);
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #2f1a28;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
  overflow: visible;
  opacity: 0;
  animation: eps-soon-coming 1s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.eps-soon__coming-word {
  display: inline-block;
}

.eps-soon__coming-word--accent {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, #6b3558 0%, #c45d8a 42%, #8b3d66 78%, #6b3558 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: eps-soon-shimmer 5.5s ease-in-out infinite;
}

.eps-soon__title {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-display);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 500;
  color: #3a2a38;
  line-height: 1.3;
  opacity: 0;
  animation: eps-soon-item 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.eps-soon__text {
  margin: 0 auto 0.55rem;
  max-width: 62ch;
  font-family: var(--eps-font-ui);
  font-size: clamp(0.86rem, 1.6vw, 0.94rem);
  line-height: 1.55;
  color: rgba(60, 42, 58, 0.8);
  opacity: 0;
  animation: eps-soon-item 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both;
}

.eps-soon__note {
  margin: 0 auto 0.85rem;
  max-width: 56ch;
  font-family: var(--eps-font-ui);
  font-size: clamp(0.8rem, 1.5vw, 0.86rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #6b3558;
  opacity: 0;
  animation: eps-soon-item 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

.eps-soon__contacts {
  list-style: none;
  margin: 0 auto 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  text-align: left;
  max-width: 22rem;
}

.eps-soon__contacts--solo {
  justify-items: center;
  max-width: none;
  opacity: 0;
  animation: eps-soon-item 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.eps-soon__contacts--solo .eps-soon__contact {
  width: min(100%, 22rem);
  justify-content: center;
  text-align: left;
}

.eps-soon__contacts li {
  opacity: 0;
  animation: eps-soon-item 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eps-soon__contacts li:nth-child(1) { animation-delay: 1.02s; }

.eps-soon__contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  text-decoration: none !important;
  color: inherit !important;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 42, 78, 0.08);
  transition:
    border-color 0.25s var(--eps-ease),
    background 0.25s var(--eps-ease),
    transform 0.25s var(--eps-ease),
    box-shadow 0.25s var(--eps-ease);
}

.eps-soon__contact:hover {
  border-color: rgba(196, 93, 138, 0.45);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(78, 42, 78, 0.1);
}

.eps-soon__contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #8b3d66;
  background: linear-gradient(145deg, rgba(243, 196, 212, 0.55), rgba(232, 160, 188, 0.28));
  border: 1px solid rgba(196, 93, 138, 0.18);
}

.eps-soon__contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.eps-soon__contact small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eps-muted);
  margin-bottom: 0.1rem;
}

.eps-soon__contact strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--eps-plum);
}

.eps-soon__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: eps-soon-item 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.3s both;
}

.eps-soon__actions .eps-btn {
  border-radius: 12px;
  min-height: 2.75rem;
}

.eps-soon__legal {
  margin: 0.95rem 0 0;
  padding: 0.85rem 0.25rem 0.1rem;
  border-top: 1px solid rgba(78, 42, 78, 0.1);
  text-align: center;
  opacity: 0;
  animation: eps-soon-item 0.75s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
}

.eps-soon__legal-lead {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: #3a2a38;
}

.eps-soon__quote {
  margin: 0 auto 0.95rem;
  padding: 1rem 1.15rem;
  max-width: 56ch;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(78, 42, 78, 0.08);
}

.eps-soon__quote p {
  margin: 0 0 0.7rem;
  font-family: var(--eps-font-ui);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  color: #4a3244;
}

.eps-soon__quote cite,
.eps-soon__sign {
  display: block;
  font-family: var(--eps-font-ui);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #6b3558;
}

.eps-soon__sign-role {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--eps-font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(107, 53, 88, 0.72);
}

.eps-soon__legal-meta,
.eps-soon__legal-support,
.eps-soon__legal-links {
  margin: 0 0 0.35rem;
  font-family: var(--eps-font-ui);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(60, 42, 58, 0.72);
}

.eps-soon__sep {
  display: none;
}

.eps-soon__legal a {
  color: #8b3d66;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 61, 102, 0.28);
}

.eps-soon__legal a:hover {
  color: #6b3558;
  border-bottom-color: rgba(107, 53, 88, 0.55);
}

.eps-soon__legal-links {
  margin-bottom: 0;
  font-size: 0.74rem;
}

.eps-soon__dev {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100% - 0.5rem, 420px);
  margin: 1rem auto 0;
  padding: 2px;
  border-radius: 18px;
  text-decoration: none !important;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.eps-soon__dev:hover {
  transform: translateY(-3px);
}

.eps-soon__dev-border {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #f3c4d4 0%,
    #c45d8a 18%,
    #6b3558 36%,
    #e8a0bc 54%,
    #8b3d66 72%,
    #f6d6e4 88%,
    #f3c4d4 100%
  );
  animation: eps-soon-dev-spin 4.5s linear infinite;
  z-index: 0;
  filter: saturate(1.15);
}

.eps-soon__dev-border::after {
  content: none;
}

.eps-soon__dev-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 1.35rem 1.15rem;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 93, 138, 0.35), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(107, 53, 88, 0.55), transparent 50%),
    linear-gradient(155deg, #3a1840 0%, #2a1033 42%, #160a1c 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 18px 40px rgba(40, 12, 48, 0.35);
}

.eps-soon__dev-label {
  font-family: var(--eps-font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 236, 244, 0.78);
}

.eps-soon__dev-logo {
  display: block;
  width: auto;
  height: 28px;
  max-width: min(160px, 70vw);
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.eps-soon__dev:hover .eps-soon__dev-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 20px rgba(232, 160, 188, 0.35));
}

.eps-soon__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.25s ease;
  mix-blend-mode: normal;
}

.eps-soon__cursor.is-on {
  opacity: 0.92;
}

.eps-soon__cursor-bloom {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 14px rgba(139, 61, 102, 0.28));
  animation: eps-soon-cursor-pulse 2.8s ease-in-out infinite;
}

.eps-soon--cursor,
.eps-soon--cursor a,
.eps-soon--cursor button {
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  .eps-soon__cursor {
    display: none !important;
  }
  .eps-soon--cursor,
  .eps-soon--cursor a,
  .eps-soon--cursor button {
    cursor: auto;
  }
}

@keyframes eps-soon-dev-spin {
  to { transform: rotate(360deg); }
}

@keyframes eps-soon-cursor-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.eps-soon__rights {
  margin: 0 auto 0.85rem;
  padding: 0.95rem 1.1rem;
  max-width: 58ch;
  text-align: left;
  border-radius: 14px;
  background: rgba(63, 28, 52, 0.04);
  border: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-soon__rights-title {
  margin: 0 0 0.4rem;
  font-family: var(--eps-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b3558;
}

.eps-soon__rights p {
  margin: 0;
  font-family: var(--eps-font-ui);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(60, 42, 58, 0.78);
}

.eps-soon__rights-ref {
  margin-top: 0.65rem !important;
  font-size: 0.78rem !important;
  color: rgba(60, 42, 58, 0.65) !important;
}

.eps-soon__rights-name {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--eps-font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  color: #6b3558;
}

.eps-soon__rights-ref a,
.eps-soon__clauses-open,
.eps-soon__linkish {
  color: #8b3d66;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid rgba(139, 61, 102, 0.28);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.eps-soon__clauses-open:hover,
.eps-soon__linkish:hover,
.eps-soon__rights-ref a:hover {
  color: #6b3558;
  border-bottom-color: rgba(107, 53, 88, 0.55);
}

.eps-soon__note a {
  color: #8b3d66;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 61, 102, 0.35);
}

.eps-soon__note a:hover {
  color: #6b3558;
}

.eps-soon__dialog {
  position: fixed;
  inset: 0;
  width: min(100% - 1.25rem, 640px);
  max-width: 640px;
  max-height: min(88dvh, 760px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  overflow: visible;
  z-index: 100001;
}

.eps-soon__dialog::backdrop {
  background: rgba(36, 16, 40, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eps-soon__dialog-card {
  display: flex;
  flex-direction: column;
  max-height: min(88dvh, 760px);
  border-radius: 20px;
  background: linear-gradient(165deg, #fffdfb 0%, #fff6f2 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 64px rgba(40, 12, 48, 0.28);
  overflow: hidden;
}

.eps-soon__dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid rgba(78, 42, 78, 0.1);
}

.eps-soon__dialog-head h2 {
  margin: 0;
  font-family: var(--eps-font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: #3a2a38;
  line-height: 1.3;
}

.eps-soon__dialog-close {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(196, 93, 138, 0.12);
  color: #6b3558;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.eps-soon__dialog-close:hover {
  background: rgba(196, 93, 138, 0.22);
}

.eps-soon__dialog-body {
  padding: 0.95rem 1.1rem 0.5rem;
  overflow: auto;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

.eps-soon__dialog-body .eps-legal-rights h3 {
  margin: 0.85rem 0 0.4rem;
  font-family: var(--eps-font-ui);
  font-size: 0.92rem;
  color: #6b3558;
}

.eps-soon__dialog-body .eps-legal-rights h3:first-child {
  margin-top: 0;
}

.eps-soon__dialog-body .eps-legal-rights p {
  margin: 0 0 0.65rem;
  font-family: var(--eps-font-ui);
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(60, 42, 58, 0.82);
}

.eps-soon__dialog-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  padding: 0.85rem 1.1rem 1rem;
  border-top: 1px solid rgba(78, 42, 78, 0.1);
  background: rgba(255, 255, 255, 0.55);
}

.eps-soon__dialog-foot .eps-btn {
  min-height: 2.45rem;
  border-radius: 12px;
  font-size: 0.85rem;
}

html.eps-soon-dialog-open .eps-soon__cursor {
  display: none !important;
}

html.eps-soon-dialog-open,
html.eps-soon-dialog-open body {
  overflow: hidden;
}

html.eps-soon-dialog-open,
html.eps-soon-dialog-open body,
html.eps-soon-dialog-open .eps-soon,
html.eps-soon-dialog-open .eps-soon--cursor,
html.eps-soon-dialog-open .eps-soon--cursor a,
html.eps-soon-dialog-open .eps-soon--cursor button,
html.eps-soon-dialog-open .eps-soon__dialog,
html.eps-soon-dialog-open .eps-soon__dialog * {
  cursor: auto !important;
}

.eps-legal-rights {
  margin-top: 0.25rem;
}

.eps-legal-rights h3 {
  scroll-margin-top: 6rem;
}

@keyframes eps-soon-rise {
  from { opacity: 0; transform: translate3d(0, 28px, 0) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes eps-soon-item {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes eps-soon-logo {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.92); }
  to { opacity: 1; transform: none; }
}

@keyframes eps-soon-coming {
  from { opacity: 0; transform: translate3d(0, 22px, 0); letter-spacing: 0.08em; }
  to { opacity: 1; transform: none; letter-spacing: -0.03em; }
}

@keyframes eps-soon-bloom-in {
  from { opacity: 0; transform: scale(0.5) rotate(-16deg); }
  to { opacity: 0.88; transform: scale(1) rotate(0deg); }
}

@keyframes eps-soon-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(5px, -12px, 0) rotate(8deg); }
}

@keyframes eps-soon-leaf {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(7deg); }
}

@keyframes eps-soon-leaf-flip {
  0%, 100% { transform: scaleX(-1) rotate(-6deg); }
  50% { transform: scaleX(-1) rotate(10deg); }
}

@keyframes eps-soon-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.65; }
}

@keyframes eps-soon-aurora {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.08); }
}

@keyframes eps-soon-watermark {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes eps-soon-watermark-breathe {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.035) translate3d(0, -10px, 0); }
}

@keyframes eps-soon-dot {
  0% { box-shadow: 0 0 0 0 rgba(196, 93, 138, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(196, 93, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 93, 138, 0); }
}

@keyframes eps-soon-ring {
  0% { transform: scale(0.7); opacity: 0.85; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes eps-soon-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes eps-soon-sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@keyframes eps-soon-petal {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.7; }
  80% { opacity: 0.25; }
  100% { transform: translate3d(42px, 110px, 0) rotate(48deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .eps-soon__panel,
  .eps-soon__panel::before,
  .eps-soon__bloom,
  .eps-soon__leaf,
  .eps-soon__orb,
  .eps-soon__aurora,
  .eps-soon__watermark,
  .eps-soon__status-dot,
  .eps-soon__status-ring,
  .eps-soon__coming-word--accent,
  .eps-soon__petal,
  .eps-soon__eyebrow,
  .eps-soon__logo,
  .eps-soon__brand,
  .eps-soon__status,
  .eps-soon__coming,
  .eps-soon__title,
  .eps-soon__text,
  .eps-soon__note,
  .eps-soon__badge,
  .eps-soon__brand-stack,
  .eps-soon__legal,
  .eps-soon__contacts li,
  .eps-soon__contacts--solo,
  .eps-soon__actions,
  .eps-soon__dev-border,
  .eps-soon__cursor-bloom {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .eps-soon__cursor {
    display: none !important;
  }

  .eps-soon__watermark img {
    opacity: 0.08;
  }
}

@media (max-width: 720px) {
  .eps-soon,
  .eps-soon--gate {
    width: min(100% - 0.75rem, 1080px);
  }

  .eps-soon__panel {
    padding: 0.95rem 0.85rem 1rem;
    border-radius: 18px;
  }

  .eps-soon__logo img {
    max-width: min(280px, 86vw);
    max-height: 64px;
  }

  .eps-soon__badge {
    padding: 0.34rem 0.65rem;
    gap: 0.3rem;
  }

  .eps-soon__badge-icon svg {
    width: 14px;
    height: 14px;
  }

  .eps-soon__coming {
    font-size: clamp(1.55rem, 8.5vw, 2.1rem);
  }

  .eps-soon__text,
  .eps-soon__note,
  .eps-soon__quote,
  .eps-soon__rights {
    max-width: none;
  }

  .eps-soon__quote {
    padding: 0.75rem 0.8rem;
  }

  .eps-soon__rights {
    padding: 0.75rem 0.8rem;
  }

  .eps-soon__contacts--solo .eps-soon__contact {
    width: 100%;
  }

  .eps-soon__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eps-soon__dev {
    width: 100%;
  }

  .eps-soon__dev-inner {
    padding: 0.9rem 1rem 0.95rem;
  }

  .eps-soon__dev-logo {
    height: 24px;
  }

  .eps-soon__bloom--tr,
  .eps-soon__bloom--br,
  .eps-soon__leaf--2 {
    display: none;
  }

  .eps-soon__cursor {
    display: none !important;
  }

  .eps-soon--cursor,
  .eps-soon--cursor a,
  .eps-soon--cursor button {
    cursor: auto;
  }

  .eps-soon__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.15rem;
    align-items: center;
  }

  .eps-soon__dialog {
    width: min(100% - 0.75rem, 640px);
    max-height: 92dvh;
  }

  .eps-soon__dialog-card {
    max-height: 92dvh;
  }

  .eps-soon__dialog-foot {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 400px) {
  .eps-soon__badge {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }

  .eps-soon__legal-links .eps-soon__sep {
    display: none;
  }
}

/* =========================================================
   Ultra responsive compact ? tablet ? tiny phones
   ========================================================= */

@media (max-width: 1024px) {
  .eps-container {
    width: min(100% - 2rem, var(--eps-container));
  }

  .eps-section {
    padding-block: clamp(1.75rem, 4vw, 2.75rem);
  }

  .eps-services--atelier {
    padding-top: clamp(1.7rem, 3.5vw, 2.4rem);
    padding-bottom: clamp(1.8rem, 3.6vw, 2.5rem);
  }

  .eps-services--atelier > .eps-container.eps-services__inner {
    width: min(100% - 2rem, 64rem);
    max-width: 64rem;
  }

  .eps-services__head,
  .eps-benefits__head,
  .eps-faq__head,
  .eps-testimonials__head {
    margin-bottom: 1.2rem;
  }

  .eps-stats--ultra,
  .eps-stats--glass {
    padding: clamp(1.25rem, 2.6vw, 1.75rem) 0;
  }

  .eps-stats__head {
    margin-bottom: 0.75rem;
    padding-inline: 0.5rem;
  }

  .eps-stats--ultra .eps-stats__value,
  .eps-stats--glass .eps-stats__value {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
  }

  .eps-cta-band--atelier {
    padding: clamp(1.85rem, 3.8vw, 2.6rem) 0;
  }

  .eps-cta-band__glass {
    width: min(100%, 52rem);
  }

  .eps-footer__grid {
    gap: 0.85rem 1rem;
  }
}

@media (max-width: 900px) {
  .eps-services__stage {
    padding: 1.05rem 0.95rem;
  }

  .eps-benefits__grid {
    gap: 0.75rem;
  }

  .eps-faq--atelier .eps-faq__list {
    gap: 0.45rem;
  }

  .eps-footer__col--engage {
    gap: 0.7rem;
  }

  .eps-stats__bloom {
    opacity: 0.45;
  }

  .eps-services__bloom,
  .eps-benefits__bloom,
  .eps-faq__bloom,
  .eps-testimonials__bloom {
    opacity: 0.42;
  }
}

@media (max-width: 768px) {
  :root {
    --eps-header-h: 66px;
    --eps-header-h-scrolled: 58px;
  }

  .eps-container {
    width: min(100% - 1.5rem, var(--eps-container));
  }

  .eps-section {
    padding-block: clamp(1.75rem, 5vw, 2.4rem);
  }

  .eps-services--atelier {
    padding-top: 2rem;
    padding-bottom: 2.15rem;
  }

  .eps-services__title,
  .eps-benefits__title,
  .eps-faq__title,
  .eps-testimonials__title {
    font-size: clamp(1.55rem, 5.4vw, 2rem);
  }

  .eps-services__lead,
  .eps-benefits__lead,
  .eps-faq__lead,
  .eps-testimonials__lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .eps-services__stage {
    padding: 1.05rem 0.95rem;
  }

  .eps-benefits__card-body {
    margin-top: -1.1rem;
    padding: 0 1rem 1.05rem;
  }

  .eps-services__col-head {
    gap: 0.65rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.65rem;
  }

  .eps-stats__tagline {
    font-size: 0.92rem;
  }

  .eps-stats--ultra .eps-stats__item,
  .eps-stats--glass .eps-stats__item {
    gap: 0.65rem;
    padding: 0.72rem 0.75rem;
  }

  .eps-stats--ultra .eps-stats__icon,
  .eps-stats--glass .eps-stats__icon {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0;
  }

  .eps-cta-band--atelier .eps-cta-band__title {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
  }

  .eps-cta-band--atelier .eps-cta-band__text {
    font-size: 0.86rem;
  }

  .eps-footer__pulse,
  .eps-footer__cta-card {
    padding: 0.75rem 0.8rem;
  }

  .eps-footer__pulse-lead,
  .eps-footer__cta-lead {
    font-size: 0.72rem;
  }

  .eps-benefits__media img,
  .eps-services__photo img,
  .eps-cta-band__photo img {
    animation-duration: 28s;
  }
}

/* Footer booking CTA — wrap long intro label on very narrow phones */
@media (max-width: 350px) {
  .eps-footer__cta-card,
  .eps-footer__pulse {
    padding: 0.55rem 0.5rem;
  }

  .eps-footer__cta-lead {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .eps-footer__col--engage .eps-btn,
  .eps-footer__btn {
    padding: 0.32rem 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.015em;
    gap: 0.3rem;
    min-height: 0;
    border-radius: 16px;
    white-space: normal;
    flex-wrap: nowrap;
  }

  .eps-footer__btn .eps-btn__icon {
    flex: 0 0 auto;
    transform: scale(0.88);
  }

  .eps-footer__btn > span:not(.eps-btn__icon) {
    flex: 1 1 auto;
    min-width: 0;
    display: inline;
    white-space: normal;
    line-height: 1.2;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  /* Mobile nav — compact on very narrow phones */
  .eps-header.is-nav-open .eps-header__shell {
    padding-top: max(0.15rem, env(safe-area-inset-top, 0px)) !important;
  }

  .eps-header.is-nav-open .eps-nav__mobile-head {
    padding: 0.58rem 0.7rem 0.65rem;
    border-radius: 16px;
  }

  .eps-nav__mobile-name {
    font-size: clamp(1.15rem, 5.2vw, 1.35rem);
  }

  .eps-nav__list > li > a,
  .eps-nav__mega-trigger {
    padding: 0.48rem 0.05rem;
    font-size: 0.98rem;
    gap: 0.62rem;
  }

  .eps-header.is-nav-open .eps-nav__mobile-bloom {
    min-height: 7.5rem;
    margin: 0.2rem 0 0.3rem;
  }

  .eps-nav__mobile-bloom-text {
    font-size: 0.82rem;
    bottom: 0.65rem;
  }

  .eps-header.is-nav-open .eps-nav__cta-mobile {
    padding: 0.45rem 0.55rem;
    min-height: 0;
    gap: 0.35rem;
    border-radius: 16px;
  }

  .eps-nav__cta-label {
    font-size: 0.68rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .eps-nav__cta-ico svg {
    width: 15px;
    height: 15px;
  }

  .eps-nav__cta-chev svg {
    width: 14px;
    height: 14px;
  }

  .eps-header.is-nav-open .eps-nav__close {
    width: 38px;
    height: 38px;
  }
}

/* Mobile nav — short viewports (iPhone SE, etc.) */
@media (max-width: 1186px) and (max-height: 700px) {
  .eps-header.is-nav-open .eps-nav__mobile-head {
    padding: 0.55rem 0.75rem 0.6rem;
  }

  .eps-nav__list > li > a,
  .eps-nav__mega-trigger {
    padding: 0.42rem 0.05rem;
    font-size: 0.96rem;
  }

  .eps-header.is-nav-open .eps-nav__mobile-bloom {
    min-height: 6.5rem;
  }

  .eps-header.is-nav-open .eps-nav__cta-mobile {
    padding: 0.5rem 0.7rem;
  }
}

@media (max-width: 390px) {
  .eps-container {
    width: min(100% - 1.1rem, var(--eps-container));
  }

  .eps-hero--pro {
    padding: 1.35rem 0 2.4rem;
  }

  .eps-hero--pro .eps-hero__title {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
  }

  .eps-btn {
    padding-inline: 0.85rem;
  }

  .eps-header__actions .eps-lang__btn {
    width: 26px;
    height: 22px;
  }

  .eps-nav-toggle {
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 640px) {
  .eps-footer__col--engage {
    grid-template-columns: 1fr;
  }

  .eps-stats__head {
    margin-bottom: 0.55rem;
  }

  .eps-stats__eyebrow {
    font-size: 0.64rem;
  }

  .eps-faq--atelier {
    padding-top: 1.75rem;
    padding-bottom: 1.85rem;
  }

  .eps-faq--atelier .eps-faq__button {
    padding: 0.55rem 0.6rem;
    font-size: 0.86rem;
  }

  .eps-faq__num {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.62rem;
  }

  .eps-testimonials--atelier .eps-container {
    width: min(100% - 1.35rem, 72rem);
  }

  .eps-float {
    gap: 0.55rem;
  }
}

@media (max-width: 480px) {
  .eps-container {
    width: min(100% - 1.15rem, var(--eps-container));
  }

  .eps-section {
    padding-block: 1.55rem;
  }

  .eps-services--atelier,
  .eps-benefits--atelier,
  .eps-faq--atelier,
  .eps-testimonials--atelier {
    padding-top: 1.45rem;
    padding-bottom: 1.55rem;
  }

  .eps-services__head,
  .eps-benefits__head,
  .eps-faq__head,
  .eps-testimonials__head,
  .eps-stats__head {
    margin-bottom: 0.85rem;
  }

  .eps-services__eyebrow,
  .eps-benefits__eyebrow,
  .eps-faq__eyebrow,
  .eps-testimonials__eyebrow,
  .eps-cta-band__eyebrow,
  .eps-stats__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .eps-services__title,
  .eps-benefits__title,
  .eps-faq__title,
  .eps-testimonials__title {
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
    margin-bottom: 0.45rem;
  }

  .eps-services__lead,
  .eps-benefits__lead,
  .eps-faq__lead,
  .eps-testimonials__lead {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .eps-services__stage {
    border-radius: 18px;
    padding: 0.95rem 0.85rem;
  }

  .eps-services__col-kicker {
    font-size: 0.6rem;
  }

  .eps-services__col-title,
  .eps-benefits__card-title {
    font-size: 1rem;
  }

  .eps-services--atelier .eps-services__list li {
    padding: 0.55rem 0;
    font-size: 0.84rem;
    gap: 0.55rem;
    grid-template-columns: 1.7rem minmax(0, 1fr);
  }

  .eps-services__item-icon {
    width: 1.7rem;
    height: 1.7rem;
  }

  .eps-benefits__grid {
    max-width: 100%;
    gap: 0.55rem;
  }

  .eps-benefits__card-body {
    margin-top: -1rem;
    padding: 0 0.95rem 1rem;
  }

  .eps-benefits__icon {
    width: 2.85rem;
    height: 2.85rem;
    margin-bottom: 0.7rem;
  }

  .eps-stats--ultra,
  .eps-stats--glass {
    padding: 0.95rem 0;
  }

  .eps-stats__glass {
    padding: 0.28rem;
    border-radius: 16px;
  }

  .eps-stats--ultra .eps-stats__grid,
  .eps-stats--glass .eps-stats__grid {
    border-radius: 14px;
  }

  .eps-stats--ultra .eps-stats__item,
  .eps-stats--glass .eps-stats__item {
    padding: 0.62rem 0.65rem;
    gap: 0.55rem;
  }

  .eps-stats--ultra .eps-stats__value,
  .eps-stats--glass .eps-stats__value {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }

  .eps-stats--ultra .eps-stats__label,
  .eps-stats--glass .eps-stats__label {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .eps-stats--ultra .eps-stats__icon,
  .eps-stats--glass .eps-stats__icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0;
  }

  .eps-stats__bloom {
    display: none;
  }

  .eps-cta-band--atelier {
    padding: 1.45rem 0;
  }

  .eps-cta-band__glass {
    padding: 1rem 0.95rem;
    border-radius: 16px;
  }

  .eps-cta-band__btn {
    min-width: 0;
    padding: 0.7rem 1.05rem;
    font-size: 0.86rem;
  }

  .eps-cta-band__bloom {
    display: none;
  }

  .eps-footer__grid {
    padding-top: 1.45rem;
    padding-bottom: 1.1rem;
    gap: 1.25rem;
  }

  .eps-footer__lead {
    font-size: 0.74rem;
  }

  .eps-footer__menu {
    gap: 0.38rem;
  }

  .eps-footer__menu a {
    font-size: 0.76rem;
  }

  .eps-footer__compliance-inner {
    padding: 0.9rem 0 0.8rem;
  }

  .eps-footer__legal {
    margin-top: 0.85rem;
    padding-top: 0.7rem;
  }

  .eps-footer__bar-inner {
    gap: 0.8rem;
    padding: 0.9rem 0 1rem;
  }

  .eps-footer__seam {
    height: 10px;
  }

  .eps-services__bloom--bl,
  .eps-services__bloom--br,
  .eps-benefits__bloom,
  .eps-faq__bloom,
  .eps-testimonials__bloom {
    display: none;
  }
}

@media (max-width: 360px) {
  .eps-container {
    width: min(100% - 0.95rem, var(--eps-container));
  }

  .eps-section {
    padding-block: 1.05rem;
  }

  .eps-services__title,
  .eps-benefits__title,
  .eps-faq__title,
  .eps-testimonials__title {
    font-size: 1.28rem;
  }

  .eps-services__lead,
  .eps-benefits__lead,
  .eps-faq__lead {
    font-size: 0.82rem;
  }

  .eps-stats--ultra .eps-stats__grid,
  .eps-stats--glass .eps-stats__grid {
    grid-template-columns: 1fr;
  }

  .eps-stats--ultra .eps-stats__item:not(:last-child)::after,
  .eps-stats--glass .eps-stats__item:not(:last-child)::after,
  .eps-stats--ultra .eps-stats__item:nth-child(-n+2)::before,
  .eps-stats--glass .eps-stats__item:nth-child(-n+2)::before {
    display: none;
  }

  .eps-stats--ultra .eps-stats__item:not(:last-child),
  .eps-stats--glass .eps-stats__item:not(:last-child) {
    border-bottom: 1px solid rgba(250, 246, 244, 0.12);
  }

  .eps-stats--ultra .eps-stats__value,
  .eps-stats--glass .eps-stats__value {
    font-size: 1.55rem;
  }

  .eps-cta-band--atelier .eps-cta-band__title {
    font-size: 1.15rem;
  }

  .eps-faq--atelier .eps-faq__button {
    padding: 0.5rem 0.55rem;
    font-size: 0.82rem;
  }

  .eps-float__btn {
    --eps-float-size: 2.75rem;
  }
}

@media (max-width: 320px) {
  .eps-container {
    width: min(100% - 0.75rem, var(--eps-container));
  }

  .eps-services__stage,
  .eps-benefits__card-body,
  .eps-cta-band__glass {
    padding: 0.8rem 0.75rem;
  }

  .eps-btn,
  .eps-services__btn,
  .eps-benefits__btn,
  .eps-faq__btn,
  .eps-testimonials__btn {
    min-height: 2.65rem;
    font-size: 0.84rem;
  }
}

/* ============================================================
   WIP preview gate — site visible behind, enter after checkbox
   ============================================================ */
html.eps-wip-locked,
html.eps-wip-locked body {
  overflow: hidden !important;
}

.eps-wip-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
  background:
    linear-gradient(165deg, rgba(47, 26, 40, 0.55), rgba(63, 28, 52, 0.72)),
    rgba(255, 250, 248, 0.12);
  backdrop-filter: blur(7px) saturate(1.05);
  -webkit-backdrop-filter: blur(7px) saturate(1.05);
}

html.eps-wip-ok .eps-wip-gate,
.eps-wip-gate[hidden] {
  display: none !important;
}

.eps-wip-gate__card {
  width: min(100%, 28.5rem);
  margin: 0;
  padding: clamp(1.25rem, 3.5vw, 1.85rem);
  border-radius: 22px;
  background: rgba(255, 252, 250, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 28px 60px rgba(47, 26, 40, 0.28);
  color: #2f1a28;
  font-family: var(--eps-font-body, "Segoe UI", system-ui, sans-serif);
}

.eps-wip-gate__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a5f7a;
}

.eps-wip-gate__title {
  margin: 0 0 0.75rem;
  font-family: var(--eps-font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.45rem, 4.2vw, 1.85rem);
  line-height: 1.15;
  color: #3f1c34;
}

.eps-wip-gate__text {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a4a50;
}

.eps-wip-gate__check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(250, 246, 244, 0.95);
  border: 1px solid rgba(193, 141, 162, 0.22);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3d2131;
}

.eps-wip-gate__check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  flex: 0 0 auto;
  accent-color: #3f1c34;
}

.eps-wip-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 14px;
  background: #3f1c34;
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(63, 28, 52, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.eps-wip-gate__btn:hover:not(:disabled) {
  background: #542844;
  transform: translateY(-1px);
}

.eps-wip-gate__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.eps-wip-gate__hint {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #8a7880;
  text-align: center;
}
