/* ==========================================================================
   EmberKép – komponensstílusok
   A design tokenek a theme.json-ban élnek; itt csak a WP CSS-változóikra
   hivatkozunk (--wp--preset--*, --wp--custom--*). Ne írj ide új színkódot.
   ========================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
html,
body {
  min-height: 100%;
}
[id] {
  scroll-margin-top: 96px;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > .wp-site-blocks {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
body > main,
.wp-site-blocks > main {
  width: 100%;
  margin-top: 0;
  flex: 1 0 auto;
}
main > *,
main > * + *,
main section {
  margin-block-start: 0 !important;
  margin-block-end: 0;
}
body > footer,
.wp-site-blocks > footer {
  margin-top: auto;
}

/* ── 1. Segédosztályok (több komponens is használja) ────────────────────── */
.ek-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold);
  margin-bottom: 1.2rem;
}
.ek-muted {
  color: var(--wp--preset--color--muted);
}
.ek-404-code {
  margin: 0 0 0.15em;
  color: var(--wp--preset--color--lilac);
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(8rem, 24vw, 18rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.72;
}
.ek-404 {
  text-align: center;
}
.ek-404 .wp-block-buttons {
  justify-content: center;
}
.ek-back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--wp--preset--color--gold);
  border-radius: 50%;
  background: var(--wp--preset--color--plum-deep);
  color: var(--wp--preset--color--ivory);
  box-shadow: 0 12px 28px -14px rgba(61, 51, 64, 0.65);
  cursor: pointer;
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}
.ek-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ek-back-to-top:hover {
  background: var(--wp--preset--color--plum);
}
.ek-back-to-top:focus-visible {
  outline: 2px solid var(--wp--preset--color--gold);
  outline-offset: 3px;
}
.ek-serif-italic {
  font-family: var(--wp--preset--font-family--heading);
  font-style: italic;
  color: var(--wp--preset--color--plum);
}
.ek-slogan {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.2;
}
.ek-rule {
  width: 52px;
  height: 1px;
  background: var(--wp--preset--color--gold);
  border: 0;
  margin-block: 1.8rem 2.2rem;
}
.has-text-align-center .ek-rule,
.ek-rule.is-centered {
  margin-inline: auto;
}

/* Rombusz jelölésű lista – szolgáltatások, felsorolások */
.ek-list {
  list-style: none;
  padding-left: 0;
}
.ek-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-top: 1px solid var(--wp--preset--color--line);
  font-size: 0.98rem;
}
.ek-list li:first-child {
  border-top: 0;
}
.ek-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 7px;
  height: 7px;
  background: var(--ek-accent, var(--wp--preset--color--gold));
  transform: rotate(45deg);
  border-radius: 1px;
}

/* Területi karakterszín – egy helyen definiálva, mindenhol öröklődik */
.ek-area-tarot {
  --ek-accent: var(--wp--preset--color--lilac);
  --ek-accent-light: var(--wp--preset--color--lilac-light);
}
.ek-area-krono {
  --ek-accent: var(--wp--preset--color--mint);
  --ek-accent-light: var(--wp--preset--color--mint-light);
}
.ek-area-coaching {
  --ek-accent: var(--wp--preset--color--pink);
  --ek-accent-light: var(--wp--preset--color--pink-light);
}

/* ── 2. Gombok (a theme.json alapstílusát egészíti ki) ──────────────────── */
.wp-block-button__link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem 1.7rem;
  line-height: 1.7;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}
.wp-block-button__link:hover {
  transform: translateY(-1px);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid var(--wp--preset--color--plum);
  color: var(--wp--preset--color--ink);
  background: transparent;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--plum);
  color: var(--wp--preset--color--ivory);
}
/* Sötét háttéren (záró CTA) */
.ek-cta .wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--wp--preset--color--ivory);
  border-color: rgba(250, 250, 247, 0.4);
}
.ek-cta .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--ink);
  border-color: var(--wp--preset--color--ivory);
}

/* Szöveges link nyíllal */
.ek-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--wp--preset--color--plum);
  border-bottom: 1px solid var(--wp--preset--color--line);
  padding-bottom: 3px;
  transition: border-color 240ms ease;
}
.ek-textlink:hover {
  border-color: var(--wp--preset--color--plum);
}

/* Látható fókusz mindenhol */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 2px solid var(--wp--preset--color--plum);
  outline-offset: 3px;
}

/* ── 3. Rétegzett fotókártya (extra markup nélkül, ::before/::after) ────── */
.ek-photo-card {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
}
.ek-photo-card img {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: var(--wp--custom--card-ratio);
  object-fit: cover;
  border-radius: var(--wp--custom--radius);
  border: 1px solid var(--wp--preset--color--gold);
  box-shadow: 0 28px 52px -30px rgba(92, 64, 94, 0.5);
  transform: rotate(var(--ek-tilt, -2deg));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ek-photo-card::before,
.ek-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--wp--custom--radius);
  border: 1.5px solid;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.ek-photo-card::before {
  z-index: 2;
  border-color: var(--wp--preset--color--lilac);
  transform: rotate(calc(var(--ek-tilt, -2deg) + 6deg));
}
.ek-photo-card::after {
  z-index: 1;
  border-color: var(--wp--preset--color--gold);
  transform: rotate(calc(var(--ek-tilt, -2deg) - 8deg));
}
.ek-photo-card:hover img {
  transform: rotate(calc(var(--ek-tilt, -2deg) * 0.25));
}
.ek-photo-card .ek-path-badge {
  position: absolute;
  right: -30px;
  bottom: -12px;
  z-index: 5;
  width: clamp(104px, 45%, 160px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: white;
  box-shadow: 0 14px 30px -16px rgba(61, 51, 64, 0.65);
  transform: rotate(3deg);
}
.ek-photo-card:hover .ek-path-badge {
  transform: rotate(0deg) scale(1.02);
}
/* Dőlésvariánsok */
.ek-tilt-left {
  --ek-tilt: -3deg;
}
.ek-tilt-right {
  --ek-tilt: 3deg;
}

/* ── 4. Fix hátterű blokk + világos panel ──────────────────────────────── */
.ek-fixed-bg {
  position: relative;
  scroll-margin-top: 90px;
  background-color: var(--wp--preset--color--plum-deep);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  isolation: isolate;
}
.ek-fixed-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(68, 48, 70, 0.45);
}
.ek-home-positioning {
  min-height: clamp(620px, 76vw, 860px);
  display: flex;
  align-items: center;
}
.ek-home-positioning::before {
  background: rgba(68, 48, 70, 0.32);
}
.ek-home-positioning__panel {
  width: 100%;
  box-sizing: border-box;
}
.ek-panel {
  width: min(calc(100% - 2rem), 800px);
  max-width: 800px;
  margin-inline: auto;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
  border-radius: var(--wp--custom--radius);
  padding: clamp(2rem, 4vw, 3.4rem);
  box-shadow: 0 30px 60px -34px rgba(61, 51, 64, 0.55);
}

/* ── 5. Fejléc ─────────────────────────────────────────────────────────── */
.ek-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    padding 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
}
:root {
  --ek-header-height: 70px;
}
body:not(.block-editor-page) .wp-site-blocks > main,
body:not(.block-editor-page) > main {
  margin-top: var(--ek-header-height) !important;
}
body.admin-bar .ek-header {
  top: 32px;
}
.ek-header.is-scrolled {
  border-bottom-color: var(--wp--preset--color--line);
  background: rgba(250, 250, 247, 0.95);
}
.ek-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
}
.ek-brand img {
  display: block;
  width: auto;
  object-fit: contain;
}
.ek-brand__symbol {
  height: 58px;
}
.ek-brand__wordmark {
  height: 32px;
}
.ek-header-cta__icon {
  display: none;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ek-header .wp-block-navigation a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.ek-header .wp-block-navigation .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--wp--preset--color--gold);
  transition: width 240ms ease;
}
.ek-header .wp-block-navigation .wp-block-navigation-item__content:hover::after,
.ek-header
  .wp-block-navigation
  .current-menu-item
  > .wp-block-navigation-item__content::after {
  width: 100%;
}
.ek-header
  .wp-block-navigation__submenu-container
  .current-menu-item
  > .wp-block-navigation-item__content {
  color: var(--wp--preset--color--gold);
  font-weight: 700;
}
.ek-classic-nav {
  position: relative;
}
.ek-classic-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ek-classic-menu li {
  position: relative;
  margin: 0;
  list-style: none;
}
.ek-classic-menu a {
  display: block;
  padding-block: 0.7rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.ek-classic-menu > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: var(--wp--preset--color--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.ek-classic-menu > li > a:hover::after,
.ek-classic-menu > .current-menu-item > a::after,
.ek-classic-menu > .current-menu-ancestor > a::after {
  transform: scaleX(1);
}
.ek-classic-menu :is(.sub-menu, .children) {
  position: absolute;
  top: 100%;
  left: -0.9rem;
  min-width: 220px;
  margin: 0;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  background: var(--wp--preset--color--ivory);
  box-shadow: 0 18px 45px -28px rgba(61, 51, 64, 0.5);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms;
}
.ek-classic-menu li:hover > :is(.sub-menu, .children),
.ek-classic-menu li:focus-within > :is(.sub-menu, .children) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.ek-classic-menu :is(.sub-menu, .children) :is(.sub-menu, .children) {
  top: -0.65rem;
  left: calc(100% + 0.9rem);
}
.ek-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ek-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--wp--preset--color--ink);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}
.ek-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ek-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}
.ek-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 6. Belső oldali hero ──────────────────────────────────────────────── */
.ek-hero {
  position: relative;
  overflow: hidden;
}
.ek-hero > * {
  position: relative;
  z-index: 2;
}
.ek-hero:not(.ek-hero-home) {
  padding-block: 60px !important;
}
.ek-about-hero {
  background-image: url("../images/rolam-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ek-hero-copy,
.ek-services-hero__copy,
.ek-category-hero__copy {
  text-align: right;
}
h1 {
  margin-block: 0;
}
.ek-hero-copy .wp-block-buttons,
.ek-services-hero__copy .ek-services-actions,
.ek-category-hero__copy .ek-services-actions {
  justify-content: flex-end;
}
/* Halvány pasztell fényfolt – belső oldalak */
.ek-hero-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      46% 52% at 78% 26%,
      rgba(242, 196, 206, 0.38),
      rgba(242, 196, 206, 0) 70%
    ),
    radial-gradient(
      44% 48% at 20% 72%,
      rgba(201, 184, 232, 0.34),
      rgba(201, 184, 232, 0) 72%
    );
}
/* Főoldali hero: rögzített arany grafika, fölé gördül a tartalom */
.ek-hero-home {
  background-image:
    linear-gradient(
      90deg,
      rgba(250, 250, 247, 0.62) 0%,
      rgba(250, 250, 247, 0.15) 55%,
      rgba(250, 250, 247, 0) 80%
    ),
    var(--ek-hero-art),
    radial-gradient(
      58% 55% at 80% 24%,
      rgba(201, 184, 232, 0.5),
      rgba(201, 184, 232, 0) 70%
    ),
    radial-gradient(
      50% 50% at 20% 76%,
      rgba(242, 196, 206, 0.4),
      rgba(242, 196, 206, 0) 72%
    ),
    linear-gradient(165deg, #f3eff8 0%, #fafaf7 55%, #f6f0f4 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.ek-hero-home .ek-hero-copy {
  text-align: right;
}
.ek-hero-home .ek-hero-copy .wp-block-buttons {
  justify-content: flex-end;
}
.ek-hero-lead {
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.75rem, 2.6vw, 2rem);
  font-style: normal;
}
.ek-hero-visual {
  padding-left: clamp(1rem, 6vw, 6rem);
}
.ek-hero-visual .ek-photo-card {
  max-width: 440px;
}
.ek-hero-visual .ek-photo-card:hover img {
  transform: rotate(var(--ek-tilt, -2deg));
}
.ek-hero-visual.is-visible .ek-photo-card img {
  animation: ek-deal-front 900ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ek-hero-visual.is-visible .ek-photo-card::before {
  animation: ek-deal-right 950ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ek-hero-visual.is-visible .ek-photo-card::after {
  animation: ek-deal-left 950ms 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ek-deal-front {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.9) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--ek-tilt, -2deg));
  }
}
@keyframes ek-deal-right {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.9) rotate(var(--ek-tilt, -2deg));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(calc(var(--ek-tilt, -2deg) + 6deg));
  }
}
@keyframes ek-deal-left {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.9) rotate(var(--ek-tilt, -2deg));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(calc(var(--ek-tilt, -2deg) - 8deg));
  }
}

@keyframes ek-menu-item-in {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Kivágott (átlátszó hátterű) portré – keret és árnyék nélkül, a blokk aljára ülve */
.ek-cutout {
  margin: 0;
  align-self: flex-end;
}
.ek-cutout img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
/* A szekció alján nincs térköz, hogy a kivágott alak ráüljön az élre */
.ek-flush-bottom .wp-block-columns {
  align-items: flex-end;
}
.ek-flush-bottom .ek-about-copy {
  padding-bottom: var(--wp--preset--spacing--60);
}

/* ── 7. Helyzetkártyák (csillagos vonalrajzzal) ────────────────────────── */
.ek-situations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.ek-situation {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.55;
  transition:
    box-shadow 280ms ease,
    border-color 280ms ease;
}
.ek-situation:hover {
  box-shadow: 0 18px 34px -24px rgba(61, 51, 64, 0.35);
  border-color: var(--wp--preset--color--lilac);
}
/* Arany csillagmotívum – inline SVG háttérként, nincs extra markup */
.ek-situation::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 0.9rem;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='none' stroke='%23C8A96E' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M15 3 L16.8 13.2 L27 15 L16.8 16.8 L15 27 L13.2 16.8 L3 15 L13.2 13.2 Z'/%3E%3Cpath d='M25.5 4.5 l0.7 2.3 l2.3 0.7 l-2.3 0.7 l-0.7 2.3 l-0.7 -2.3 l-2.3 -0.7 l2.3 -0.7 Z'/%3E%3Cpath d='M5 22 l0.6 1.9 l1.9 0.6 l-1.9 0.6 l-0.6 1.9 l-0.6 -1.9 l-1.9 -0.6 l1.9 -0.6 Z'/%3E%3C/svg%3E");
}
.ek-situation::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 66px;
  height: 66px;
  border: 1px solid var(--wp--preset--color--lilac);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── 8. Szolgáltatáskártyák (eltolt színes lap mögöttük) ───────────────── */
.ek-service-card {
  background: var(--wp--preset--color--surface);
  border-radius: var(--wp--custom--radius);
  padding: 2.4rem 2rem 2.2rem;
  height: 100%;
  box-shadow:
    12px 12px 0 -1px var(--ek-accent),
    0 20px 38px -24px rgba(61, 51, 64, 0.4);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}
.ek-service-card:hover {
  transform: translate(-2px, -2px);
  box-shadow:
    16px 16px 0 -1px var(--ek-accent),
    0 26px 46px -24px rgba(61, 51, 64, 0.42);
}
.ek-icon-chip {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ek-accent-light);
  margin-bottom: 1.6rem;
}
.ek-icon-chip img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 6px;
}

/* ── 9. Tanítás – aktuális képzés doboza ──────────────────────────────── */
.ek-course-box {
  background: var(--wp--preset--color--lilac-light);
  border-radius: var(--wp--custom--radius);
  padding: 1.6rem 1.8rem;
}
.ek-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold);
  font-weight: 600;
}

/* ── 10. Vélemény-slider (kézi lapozás, autoplay nélkül) ───────────────── */
.ek-slider {
  position: relative;
}
.ek-slider__viewport {
  overflow: hidden;
}
.ek-slider__track {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 440ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.ek-slider__slide {
  flex: 0 0 calc((100% - 1.6rem) / 2);
}
.ek-review {
  height: 100%;
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  padding: 2.4rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ek-review blockquote,
.ek-review .ek-quote {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.28rem;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 1.4rem;
}
.ek-review cite {
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wp--preset--color--muted);
}
.ek-blog-link {
  text-align: center;
}
.ek-creed-text {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 782px) {
  .ek-home-tarot__image {
    order: 2;
  }
  .ek-home-tarot__copy {
    order: 1;
  }
}
.ek-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}
.ek-slider__dots {
  display: flex;
  gap: 0.6rem;
}
.ek-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--wp--preset--color--line);
  cursor: pointer;
  transition:
    background 240ms ease,
    transform 240ms ease;
}
.ek-slider__dots button[aria-current="true"] {
  background: var(--wp--preset--color--plum);
  transform: scale(1.25);
}
.ek-slider__arrows {
  display: flex;
  gap: 0.7rem;
}
.ek-slider__arrows button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--wp--preset--color--plum);
  background: transparent;
  color: var(--wp--preset--color--plum);
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition:
    background 240ms ease,
    color 240ms ease;
}
.ek-slider__arrows button:hover:not(:disabled) {
  background: var(--wp--preset--color--plum);
  color: var(--wp--preset--color--ivory);
}
.ek-slider__arrows button:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── 11. Blogkártyák (core/query) ──────────────────────────────────────── */
.ek-posts .wp-block-post {
  position: relative;
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}
.ek-posts .wp-block-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -26px rgba(61, 51, 64, 0.32);
}
.ek-posts .wp-block-post-featured-image {
  margin: 0;
}
.ek-posts .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ek-posts .wp-block-post:hover .wp-block-post-featured-image img {
  transform: scale(1.05);
}
.ek-posts .ek-post-body {
  padding: 1.6rem 1.7rem 1.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ek-posts .wp-block-post-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}
.ek-posts .wp-block-post-excerpt {
  font-size: 0.92rem;
  color: var(--wp--preset--color--muted);
  margin: 0;
}
.ek-posts .wp-block-post-terms {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold);
  font-weight: 600;
}
.ek-home-posts .wp-block-post-title a::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
}
.ek-home-posts .wp-block-post-terms a,
.ek-home-posts .ek-home-blog-read-more {
  position: relative;
  z-index: 2;
}
.ek-home-posts .ek-home-blog-read-more {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 1rem;
  text-align: right;
}
.ek-blog-list .wp-block-post-title {
  font-size: 1.3rem;
}
.ek-blog-card__date {
  margin: -0.25rem 0 0.8rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.75rem;
}
.ek-blog-list .ek-blog-read-more {
  margin-top: auto;
}

.ek-split-section.ek-flush-bottom {
  padding-bottom: 0 !important;
}

/* ── 12. Hírlevél űrlap ────────────────────────────────────────────────── */
/* ── Blog oldal és bejegyzés ──────────────────────────────────────────── */
.ek-blog-hero {
  display: flex;
  align-items: center;
  min-height: min(620px, 70vh);
  padding-block: clamp(84px, 9vw, 136px);
  background:
    linear-gradient(
      rgba(250, 250, 247, 0.54),
      rgba(250, 250, 247, 0.54)
    ),
    radial-gradient(42% 70% at 18% 70%, rgba(201, 184, 232, 0.72), transparent 74%),
    radial-gradient(42% 68% at 82% 30%, rgba(242, 196, 206, 0.7), transparent 72%),
    radial-gradient(36% 56% at 52% 86%, rgba(181, 213, 197, 0.5), transparent 74%),
    url("../images/blog-hero.png") center / cover no-repeat;
}
.ek-blog-hero__content {
  width: 100%;
  margin-inline: auto !important;
  text-align: center;
}
.ek-blog-hero__content > p:not(.ek-eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: var(--wp--preset--color--muted);
}
.ek-blog-search {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.ek-blog-search .wp-block-search__inside-wrapper {
  width: min(100%, 500px);
  min-height: 54px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
.ek-blog-search .wp-block-search__input {
  padding-inline: 1.2rem;
  border: 0;
  background: transparent;
  font: inherit;
}
.ek-blog-search .wp-block-search__button {
  min-width: 54px;
  margin: 0;
  padding: 0.8rem;
  border: 0;
  border-radius: 0;
  background: var(--wp--preset--color--pink);
  color: var(--wp--preset--color--ink);
}
.ek-blog-list-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 220px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: min(100%, 1240px);
  box-sizing: border-box;
  margin-inline: auto;
  padding-block: clamp(52px, 6vw, 80px);
}
.ek-blog-archive {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(80px, 9vw, 128px);
}
.ek-blog-archive__header {
  grid-column: 1 / -1;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.ek-blog-archive__header .ek-blog-search {
  justify-content: flex-start;
}
.ek-blog-list .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
  margin: 0;
  padding: 0;
}
.ek-blog-list {
  grid-column: 1;
  width: 100%;
  margin: 0 !important;
}
.ek-blog-mobile-search {
  display: none;
}
.ek-blog-sidebar {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: calc(var(--ek-header-height) + 2rem);
  align-self: start;
  padding: 0;
  background: transparent;
}
.ek-blog-sidebar h2 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  line-height: 1.25;
}
.ek-blog-search-form {
  display: flex;
  min-height: 50px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  overflow: hidden;
}
.ek-blog-search-form input {
  min-width: 0;
  flex: 1;
  padding-inline: 0.9rem;
  border: 0;
  background: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--ink);
  font-family: inherit;
  font-size: 0.8rem;
}
.ek-blog-search-form button {
  width: 50px;
  border: 0;
  background: var(--wp--preset--color--pink);
  color: var(--wp--preset--color--ink);
  font-size: 1.25rem;
  cursor: pointer;
}
.ek-blog-sidebar > hr {
  margin-block: 2rem;
  border: 0;
  border-top: 1px solid var(--wp--preset--color--gold-light);
}
.ek-blog-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.ek-blog-socials a {
  display: flex;
  align-items: center;
  color: var(--wp--preset--color--plum);
  font-weight: 600;
}
.ek-blog-socials img {
  width: 32px;
  height: 32px;
}
.ek-blog-about img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--wp--custom--radius);
  object-fit: cover;
  object-position: center 28%;
}
.ek-blog-about p {
  margin-block: 1rem 0.8rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}
.ek-blog-about .ek-textlink {
  font-size: 0.86rem;
}
.ek-blog-sidebar .ek-blog-search {
  justify-content: stretch;
  margin-top: 0;
}
.ek-blog-sidebar .wp-block-search__inside-wrapper {
  width: 100%;
}
.ek-blog-sidebar .ek-rule {
  margin-block: 2rem;
}
.ek-blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ek-blog-categories li {
  padding: 0;
  border: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ek-blog-categories a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--wp--preset--color--mint-light);
  color: var(--wp--preset--color--muted);
  transition:
    color 200ms ease,
    background 200ms ease;
}
.ek-blog-categories a:hover,
.ek-blog-categories .current-cat > a {
  background: color-mix(in srgb, var(--wp--preset--color--mint) 45%, var(--wp--preset--color--mint-light));
  color: var(--wp--preset--color--plum);
}
.ek-blog-category-filter {
  grid-column: 1;
  margin-bottom: 1.5rem;
}
.ek-blog-category-filter h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}
.ek-blog-list .wp-block-post {
  margin: 0;
}
.ek-blog-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.ek-blog-row:not(:has(.wp-block-post-featured-image)) {
  grid-template-columns: 1fr;
}
.ek-blog-row__image {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--wp--custom--radius);
}
.ek-blog-row__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ek-blog-row:hover .ek-blog-row__image img {
  transform: scale(1.025);
}
.ek-blog-row__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.ek-blog-category {
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  margin: 0 0 -0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--wp--custom--radius) 0 0 0;
  background: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}
.ek-blog-row__date {
  margin: 0 0 0.8rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.78rem;
  text-align: left;
}
.ek-blog-category a:hover {
  color: var(--wp--preset--color--plum);
}
.ek-blog-row .wp-block-post-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
}
.ek-blog-row .wp-block-post-excerpt {
  margin-bottom: 1.4rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.ek-blog-row .wp-block-post-excerpt__excerpt {
  margin: 0;
}
.ek-blog-read-more {
  display: inline-block;
}
.ek-blog-pagination {
  margin-top: clamp(3rem, 7vw, 6rem);
}
.ek-blog-pagination a,
.ek-blog-pagination .page-numbers {
  color: var(--wp--preset--color--plum);
}
.ek-single-hero {
  padding-block: clamp(84px, 9vw, 136px);
  background: var(--wp--preset--color--lilac-light);
}
.ek-single-hero__grid {
  gap: clamp(2.5rem, 6vw, 6rem);
}
.ek-single-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--wp--custom--radius);
}
.ek-single-hero__image img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ek-single-hero__copy {
  text-align: right;
}
.ek-single-date {
  margin-top: 1.4rem;
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--small);
}
.ek-single-content {
  padding-block: clamp(72px, 9vw, 120px);
}
.ek-single-content .wp-block-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
}
.ek-single-content .wp-block-post-content > * + * {
  margin-top: 1.5em;
}
.ek-single-content .ek-rule {
  margin-block: clamp(3rem, 7vw, 5rem) 2rem;
}
.ek-single-navigation a {
  color: var(--wp--preset--color--plum);
  font-weight: 600;
}
.ek-related-posts {
  padding-block: clamp(64px, 8vw, 108px);
  background: var(--wp--preset--color--lilac-light);
}
.ek-related-posts__inner {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin-inline: auto;
}
.ek-related-posts__inner > h2 {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.ek-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.ek-related-card {
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  background: var(--wp--preset--color--surface);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}
.ek-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -26px rgba(61, 51, 64, 0.32);
}
.ek-related-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.ek-related-card figure {
  margin: 0;
  overflow: hidden;
}
.ek-related-card figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}
.ek-related-card:hover figure img {
  transform: scale(1.04);
}
.ek-related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem 1.5rem 1.6rem;
}
.ek-related-card__category {
  margin: 0 0 0.7rem;
  color: var(--wp--preset--color--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ek-related-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}
.ek-related-card__excerpt {
  margin: 0 0 1.2rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}
.ek-related-card .ek-textlink {
  align-self: flex-end;
  margin-top: auto;
}

@media (max-width: 781px) {
  .ek-blog-hero {
    min-height: 0;
    padding-block: 72px;
    background-position: 42% center;
  }
  .ek-single-hero__copy {
    text-align: left;
  }
  .ek-blog-search {
    justify-content: flex-start;
  }
  .ek-blog-list-section,
  .ek-single-content {
    padding-block: 52px;
  }
  .ek-blog-list .wp-block-post-template {
    grid-template-columns: 1fr;
  }
  .ek-blog-row {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }
  .ek-blog-row__image,
  .ek-blog-category,
  .ek-blog-row__body {
    grid-column: 1;
  }
  .ek-blog-row__image,
  .ek-blog-category {
    grid-row: 1;
  }
  .ek-blog-row__body {
    grid-row: 2;
  }
  .ek-blog-category {
    text-align: left;
  }
  .ek-blog-row__date {
    text-align: left;
  }
  .ek-single-hero {
    padding-block: 72px;
  }
  .ek-related-posts {
    padding-block: 60px;
  }
  .ek-related-posts__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .ek-blog-list-section,
  .ek-blog-archive {
    grid-template-columns: 1fr;
  }
  .ek-blog-list-section {
    row-gap: 0.25rem;
  }
  .ek-blog-category-filter,
  .ek-blog-list,
  .ek-blog-sidebar {
    grid-column: 1;
    grid-row: auto;
  }
  .ek-blog-mobile-search {
    display: block;
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 6px;
    width: 100%;
  }
  .ek-blog-mobile-search h2 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
  }
  .ek-blog-mobile-search .ek-blog-search,
  .ek-blog-mobile-search .ek-blog-search-form {
    width: 100%;
    max-width: 520px;
    margin: 0;
  }
  .ek-blog-mobile-search .ek-blog-search-form,
  .ek-blog-mobile-search .wp-block-search__inside-wrapper {
    min-height: 42px;
  }
  .ek-blog-category-filter {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .ek-blog-sidebar > h2:first-child,
  .ek-blog-sidebar > .ek-blog-search-form,
  .ek-blog-sidebar > .ek-blog-search,
  .ek-blog-sidebar > .ek-blog-search-form + hr {
    display: none;
  }
  .ek-blog-archive__header {
    grid-column: auto;
  }
  .ek-blog-sidebar {
    position: static;
  }
}

/* ── Kapcsolat oldal ─────────────────────────────────────────────────── */
.ek-contact-hero {
  display: flex;
  align-items: center;
  min-height: min(620px, 70vh);
  padding-block: clamp(84px, 9vw, 136px) !important;
  background:
    linear-gradient(
      rgba(250, 250, 247, 0.54),
      rgba(250, 250, 247, 0.54)
    ),
    radial-gradient(
      42% 70% at 18% 70%,
      rgba(201, 184, 232, 0.72),
      rgba(201, 184, 232, 0) 74%
    ),
    radial-gradient(
      42% 68% at 82% 30%,
      rgba(242, 196, 206, 0.7),
      rgba(242, 196, 206, 0) 72%
    ),
    radial-gradient(
      36% 56% at 52% 86%,
      rgba(181, 213, 197, 0.5),
      rgba(181, 213, 197, 0) 74%
    ),
    url("../images/kapcsolat-hero.png") center / cover no-repeat;
}
.ek-contact-hero__copy {
  width: 100%;
  margin-inline: auto !important;
  text-align: center;
}
.ek-contact-hero__copy > p:last-child {
  max-width: 650px;
  margin-inline: auto;
}
.ek-contact-section {
  padding-block: clamp(80px, 9vw, 128px);
}
.ek-contact-grid {
  gap: clamp(3rem, 8vw, 8rem);
}
.ek-contact-details {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.ek-contact-social {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.ek-contact-details h2,
.ek-contact-social h2 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  line-height: 1.25;
}
.ek-contact-details dl {
  display: grid;
  gap: 1.3rem;
  margin: 0;
}
.ek-contact-details__item {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--wp--preset--color--gold-light);
}
.ek-contact-details dt {
  margin-bottom: 0.25rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ek-contact-details dd {
  margin: 0;
  color: var(--wp--preset--color--ink);
  font-size: 0.92rem;
  line-height: 1.65;
}
.ek-contact-details dd > a:not(.ek-textlink) {
  color: inherit;
}
.ek-contact-details .ek-textlink {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
}
.ek-contact-form {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  background: var(--wp--preset--color--surface);
  box-shadow: 0 24px 55px -42px rgba(61, 51, 64, 0.45);
}
.ek-contact-form p {
  margin: 0 0 1.2rem;
}
.ek-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ek-contact-form label:not(.ek-contact-form__consent) {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--wp--preset--color--ink);
  font-size: 0.85rem;
  font-weight: 600;
}
.ek-contact-form input[type="text"],
.ek-contact-form input[type="email"],
.ek-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: var(--wp--custom--radius);
  background: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--ink);
  font: inherit;
}
.ek-contact-form textarea {
  resize: vertical;
}
.ek-contact-form input:focus,
.ek-contact-form textarea:focus {
  border-color: var(--wp--preset--color--plum);
  outline: 2px solid rgba(92, 64, 94, 0.12);
  outline-offset: 1px;
}
.ek-contact-form__consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.3rem 0 1.6rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
.ek-contact-form__consent input {
  flex: 0 0 auto;
  margin-top: 0.3rem;
}
.ek-contact-form__consent a {
  color: var(--wp--preset--color--plum);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.ek-contact-form .cf-turnstile {
  margin: 0 0 1.6rem;
}
.ek-contact-form button {
  min-height: 52px;
  padding: 0.8rem 1.7rem;
  border: 0;
  border-radius: var(--wp--custom--radius);
  background: var(--wp--preset--color--pink);
  color: var(--wp--preset--color--ink);
  font: 600 0.95rem/1.4 var(--wp--preset--font-family--body);
  cursor: pointer;
}
.ek-contact-form button:hover {
  background: var(--wp--custom--pink-hover);
}
.ek-contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ek-contact-notice {
  margin: 0 0 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--wp--custom--radius);
}
.ek-contact-notice.is-success {
  background: var(--wp--preset--color--mint-light);
  color: var(--wp--preset--color--ink);
}
.ek-contact-notice.is-error {
  background: var(--wp--preset--color--pink-light);
  color: var(--wp--preset--color--ink);
}
.ek-contact-newsletter__first-text {
  margin-top: 1.2rem;
}
.ek-contact-newsletter__callout {
  margin-top: 1.6rem;
  margin-bottom: 2rem;
  font-size: 1.35rem;
}
.ek-contact-newsletter__embed {
  margin-block: 2rem;
}
.ek-contact-newsletter__note {
  margin-top: 1rem;
}

@media (max-width: 781px) {
  .ek-contact-hero {
    min-height: 0;
    padding-block: 72px !important;
  }
  .ek-contact-section {
    padding-block: 72px;
  }
  .ek-contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* MailerLite embed – minden külső formstílus a komponens alá scope-olva. */
.ek-newsletter-embed {
  width: 100%;
  max-width: 360px;
  margin: 2rem auto;
}
.ek-newsletter-embed .ml-form-embedContainer,
.ek-newsletter-embed .ml-form-embedWrapper,
.ek-newsletter-embed .ml-form-align-center,
.ek-newsletter-embed form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.ek-newsletter-embed .ml-form-embedBody,
.ek-newsletter-embed .ml-form-successBody {
  padding: 0 !important;
  background: transparent !important;
}
.ek-newsletter-embed label {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--wp--preset--color--ink) !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  text-align: left;
}
.ek-newsletter-embed input[type="email"],
.ek-newsletter-embed input[type="text"] {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0.8rem 1.1rem !important;
  border: 1px solid var(--wp--preset--color--line) !important;
  border-radius: var(--wp--custom--radius) !important;
  background: var(--wp--preset--color--surface) !important;
  color: var(--wp--preset--color--ink) !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}
.ek-newsletter-embed input:focus-visible {
  border-color: var(--wp--preset--color--plum) !important;
  outline: 3px solid color-mix(in srgb, var(--wp--preset--color--lilac) 55%, transparent) !important;
  outline-offset: 2px;
}
.ek-newsletter-embed button,
.ek-newsletter-embed input[type="submit"] {
  min-height: 52px !important;
  padding: 0.8rem 1.7rem !important;
  border: 0 !important;
  border-radius: var(--wp--custom--radius) !important;
  background: var(--wp--preset--color--pink) !important;
  color: var(--wp--preset--color--ink) !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer;
}
.ek-newsletter-embed button:hover,
.ek-newsletter-embed input[type="submit"]:hover {
  background: var(--wp--custom--pink-hover) !important;
}
.ek-newsletter-embed button:focus-visible,
.ek-newsletter-embed input[type="submit"]:focus-visible {
  outline: 3px solid var(--wp--preset--color--plum) !important;
  outline-offset: 3px;
}
.ek-newsletter-embed .ml-form-embedSubmit {
  margin-top: 0.7rem !important;
}
.ek-newsletter-embed .ml-error input {
  border-color: #a33 !important;
}

@media (max-width: 600px) {
  .ek-newsletter-embed .ml-form-embedSubmit button,
  .ek-newsletter-embed button[type="submit"],
  .ek-newsletter-embed input[type="submit"] {
    width: 100% !important;
  }
}

/* ── 13. Rólam – a három összeérő kör ─────────────────────────────────── */
.ek-triad {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 0.95;
  margin-inline: auto;
}
.ek-triad__circle {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid;
  display: grid;
  place-items: center;
}
.ek-triad__circle:nth-child(1) {
  top: 0;
  left: 21%;
  background: rgba(201, 184, 232, 0.42);
  border-color: var(--wp--preset--color--lilac);
}
.ek-triad__circle:nth-child(2) {
  bottom: 0;
  left: 0;
  background: rgba(181, 213, 197, 0.42);
  border-color: var(--wp--preset--color--mint);
}
.ek-triad__circle:nth-child(3) {
  bottom: 0;
  right: 0;
  background: rgba(242, 196, 206, 0.42);
  border-color: var(--wp--preset--color--pink);
}
.ek-triad__label {
  background: var(--wp--preset--color--surface);
  border-radius: 4px;
  padding: 0.32em 0.9em;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  color: var(--wp--preset--color--plum);
  box-shadow: 0 6px 16px -12px rgba(61, 51, 64, 0.6);
}
.ek-triad__circle:nth-child(1) .ek-triad__label {
  transform: translateY(-14%);
}
.ek-triad__circle:nth-child(2) .ek-triad__label {
  transform: translate(-8%, 16%);
}
.ek-triad__circle:nth-child(3) .ek-triad__label {
  transform: translate(8%, 16%);
}

/* ── 14. Lábléc ────────────────────────────────────────────────────────── */
.ek-footer {
  background: var(--wp--preset--color--ink);
  color: rgba(250, 250, 247, 0.7);
}
.ek-footer .wp-block-site-title a,
.ek-footer h2,
.ek-footer h3,
.ek-footer h4 {
  color: var(--wp--preset--color--ivory);
}
.ek-footer .ek-footer-heading {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold-light);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.ek-footer ul,
.ek-footer ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.ek-footer .ek-footer-list,
.ek-footer .wp-block-navigation,
.ek-footer-menu {
  font-size: 0.84rem;
  line-height: 1.65;
}
.ek-footer .ek-footer-list li,
.ek-footer .wp-block-navigation-item,
.ek-footer-menu li {
  font-size: inherit;
}
.ek-footer-menu li + li {
  margin-top: 0.6rem;
}
.ek-footer a {
  font-size: inherit;
  transition: color 200ms ease;
}
.ek-footer a:hover {
  color: var(--wp--preset--color--ivory);
}
.ek-footer-brand {
  display: inline-block;
  line-height: 0;
}
.ek-footer-brand img {
  display: block;
  width: auto;
  height: clamp(150px, 18vw, 220px);
  filter: brightness(0) invert(1);
}
.ek-footer .ek-slogan {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.45;
}
.ek-footer-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(250, 250, 247, 0.14);
}
.ek-footer-support p {
  max-width: 580px;
  margin: 0;
  color: var(--wp--preset--color--ivory);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 500;
  line-height: 1.6;
}
.ek-footer-support__logos {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.ek-footer-support__logos img {
  display: block;
  width: auto;
  min-width: 300px;
  object-fit: contain;
}
.ek-footer-bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.14);
  padding-top: 1.6rem;
  font-size: 0.8rem;
}

/* ── 15. Belépő animációk ─────────────────────────────────────────────── */
.ek-reveal {
  opacity: 1;
  transform: none;
}
.ek-js .ek-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ek-js .ek-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── 16. Reszponzív ───────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .ek-header-cta .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    box-sizing: border-box;
    padding: 0 !important;
  }
  .ek-header-cta__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .ek-header-cta__icon {
    display: block;
  }
}

@media (max-width: 940px) {
  .ek-header-actions {
    gap: 0.65rem !important;
  }
  .ek-menu-toggle {
    display: block;
  }
  .ek-classic-nav__panel {
    position: fixed;
    top: var(--ek-header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--ek-header-height));
    padding: 1.3rem var(--wp--custom--pad-x) 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--wp--preset--color--line);
    background: rgba(250, 250, 247, 0.98);
    box-shadow: 0 20px 35px -30px rgba(61, 51, 64, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms;
  }
  .ek-classic-nav.is-open .ek-classic-nav__panel {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li {
    animation: ek-menu-item-in 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li:nth-child(2) {
    animation-delay: 45ms;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li:nth-child(3) {
    animation-delay: 90ms;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li:nth-child(4) {
    animation-delay: 135ms;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li:nth-child(5) {
    animation-delay: 180ms;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li:nth-child(6) {
    animation-delay: 225ms;
  }
  .ek-classic-nav.is-open .ek-classic-menu > li:nth-child(7) {
    animation-delay: 270ms;
  }
  .ek-classic-menu {
    display: block;
  }
  .ek-classic-menu a {
    padding: 0.75rem 0;
    font-size: 1rem;
    white-space: normal;
  }
  .ek-classic-menu > li {
    border-bottom: 1px solid var(--wp--preset--color--line);
  }
  .ek-classic-menu > li > a::after {
    display: none;
  }
  .ek-classic-menu :is(.sub-menu, .children) {
    position: static;
    min-width: 0;
    padding: 0 0 0.65rem 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  body.admin-bar .ek-classic-nav__panel {
    top: calc(var(--ek-header-height) + 32px);
    max-height: calc(100vh - var(--ek-header-height) - 32px);
  }
  .ek-hero-copy,
  .ek-services-hero__copy,
  .ek-category-hero__copy {
    text-align: left;
  }
  .ek-hero-copy .wp-block-buttons,
  .ek-services-hero__copy .ek-services-actions,
  .ek-category-hero__copy .ek-services-actions {
    justify-content: flex-start;
  }
  .ek-situations {
    grid-template-columns: 1fr 1fr;
  }
  .ek-slider__slide {
    flex-basis: 100%;
  }
  .ek-hero-home {
    min-height: 0;
  }
  .ek-hero-home .ek-hero-copy {
    text-align: left;
  }
  .ek-hero-home .ek-hero-copy .wp-block-buttons {
    justify-content: flex-start;
  }
  .ek-hero-visual {
    padding-left: 0;
  }
  /* A kivágott alak mobilon se nőjön túl nagyra */
  .ek-cutout {
    max-width: 380px;
    margin-inline: auto;
  }
  .ek-flush-bottom .ek-about-copy {
    padding-bottom: var(--wp--preset--spacing--40);
  }
  /* iOS nem támogatja a fix hátteret */
  .ek-fixed-bg,
  .ek-hero-home {
    background-attachment: scroll;
  }
}

@media (max-width: 781px) {
  main .wp-block-buttons,
  main .ek-services-actions {
    justify-content: center;
  }
  main .wp-block-button,
  main .wp-block-button__link,
  main .ek-services-actions .wp-block-button__link {
    width: auto;
    max-width: 100%;
  }
  main .wp-block-button__link,
  main .ek-services-actions .wp-block-button__link {
    min-height: 52px;
    padding: 0.8rem 1.5rem;
    line-height: 1.4;
    text-align: center;
  }
  .ek-fixed-bg .ek-panel {
    width: 100%;
    max-width: 100%;
  }
  .ek-home-posts .wp-block-post-template {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0 0 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--wp--preset--color--gold-light) transparent;
  }
  .ek-home-posts .wp-block-post {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }
  .ek-home-posts .wp-block-post-template::-webkit-scrollbar {
    height: 5px;
  }
  .ek-home-posts .wp-block-post-template::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--wp--preset--color--gold-light);
  }
  .ek-split-section > .wp-block-columns {
    row-gap: 3.5rem;
  }
  .ek-hero:not(.ek-hero-home) {
    padding-top: 48px !important;
  }
  .ek-hero-home {
    padding-top: 48px !important;
    padding-bottom: 64px !important;
    background-image:
      radial-gradient(
        58% 55% at 80% 24%,
        rgba(201, 184, 232, 0.5),
        rgba(201, 184, 232, 0) 70%
      ),
      radial-gradient(
        50% 50% at 20% 76%,
        rgba(242, 196, 206, 0.4),
        rgba(242, 196, 206, 0) 72%
      ),
      linear-gradient(165deg, #f3eff8 0%, #fafaf7 55%, #f6f0f4 100%);
  }
  .ek-hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(
        90deg,
        rgba(250, 250, 247, 0.62) 0%,
        rgba(250, 250, 247, 0.15) 55%,
        rgba(250, 250, 247, 0) 80%
      ),
      var(--ek-hero-art);
    background-position: center;
    background-size: cover;
    transform: scaleX(-1);
  }
  .ek-hero-home .wp-block-columns {
    gap: 0;
  }
  .ek-hero-home .ek-hero-copy {
    text-align: right;
  }
  .ek-hero-home .ek-hero-copy h1 {
    text-align: center;
  }
  .ek-hero-home .ek-hero-copy .wp-block-buttons {
    justify-content: center;
  }
  body.home main .wp-block-buttons {
    justify-content: center;
  }
  .ek-cta .wp-block-buttons,
  .ek-cta .ek-services-actions,
  .ek-services-cta .ek-services-actions {
    justify-content: center;
  }
  .ek-hero-home .ek-hero-lead {
    font-size: 1.2rem;
    line-height: 1.45;
    text-align: center;
  }
  .ek-hero-home .ek-hero-visual {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1.25rem;
    margin-block: 3.5rem 1rem;
  }
  .ek-hero-home .ek-hero-visual .ek-photo-card {
    max-width: 85%;
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .ek-hero:not(.ek-hero-home) {
    padding-top: 20px !important;
    padding-bottom: 60px !important;
  }
  .ek-brand {
    gap: 0.45rem;
  }
  .ek-brand__symbol {
    height: 42px;
  }
  .ek-brand__wordmark {
    height: 23px;
  }
  .ek-situations {
    grid-template-columns: 1fr;
  }
  .ek-photo-card {
    max-width: 280px;
  }

  .ek-footer-support__logos {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
  }
  .ek-footer-support__logos img {
    max-width: 80%;
  }
}

@media (max-width: 782px) {
  body.admin-bar .ek-header {
    top: 46px;
  }
  body.admin-bar .ek-classic-nav__panel {
    top: calc(var(--ek-header-height) + 46px);
    max-height: calc(100vh - var(--ek-header-height) - 46px);
  }
}

/* ── Szolgáltatási kategóriaoldalak ───────────────────────────────────── */
.ek-category-page--tarot {
  --ek-category-accent: var(--wp--preset--color--lilac);
  --ek-category-light: var(--wp--preset--color--lilac-light);
}
.ek-category-page--krono {
  --ek-category-accent: var(--wp--preset--color--mint);
  --ek-category-light: var(--wp--preset--color--mint-light);
}
.ek-category-page--coaching {
  --ek-category-accent: var(--wp--preset--color--pink);
  --ek-category-light: var(--wp--preset--color--pink-light);
}
.ek-category-section {
  padding-block: var(--wp--preset--spacing--60);
}
.ek-category-heading {
  max-width: 760px;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}
.ek-category-heading h2 {
  margin: 0 0 1.1rem;
}
.ek-category-heading p {
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--lead);
}
.ek-category-hero {
  min-height: min(560px, 68vh);
  display: grid;
  align-items: center;
  padding-block: 1.25rem var(--wp--preset--spacing--50);
}
.ek-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--wp--preset--color--muted);
  font-size: 0.78rem;
}
.ek-breadcrumb a:hover {
  color: var(--wp--preset--color--plum);
}
.ek-category-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.ek-category-lead {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--lead);
}
.ek-category-secondary {
  max-width: 650px;
  margin-top: 1rem;
  color: var(--wp--preset--color--plum);
}
.ek-category-visual {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
}
.ek-category-icon {
  width: min(100%, 320px);
  max-height: 320px;
  overflow: visible;
  filter: drop-shadow(0 18px 30px color-mix(in srgb, var(--ek-category-accent) 18%, transparent));
}
.ek-category-icon .cls-1 {
  fill: color-mix(in srgb, var(--ek-category-accent) 54%, var(--wp--preset--color--gold));
  transform-box: fill-box;
  transform-origin: center;
}
.ek-category-icon--tarot .cls-1 {
  fill: color-mix(in srgb, var(--ek-category-accent) 32%, transparent);
  stroke: var(--wp--preset--color--gold);
  stroke-width: 1.35;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: ek-coaching-draw 8s ease-in-out infinite;
}
.ek-category-icon--tarot .cls-1:nth-child(2n) {
  animation-delay: 0.18s;
}
.ek-category-icon--tarot .cls-1:nth-child(3n) {
  animation-delay: 0.36s;
}
.ek-category-icon--tarot .cls-1:last-child {
  animation:
    ek-coaching-draw 8s ease-in-out 0.54s infinite,
    ek-coaching-endpoint 3s ease-in-out 2.5s infinite;
}
.ek-category-icon--kronobiologia .cls-1 {
  fill: color-mix(in srgb, var(--ek-category-accent) 32%, transparent);
  stroke: var(--wp--preset--color--gold);
  stroke-width: 1.35;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: ek-coaching-draw 8s ease-in-out infinite;
}
.ek-category-icon--kronobiologia .cls-1:first-child {
  stroke-dasharray: 5000;
  stroke-dashoffset: 5000;
  animation: ek-krono-main-draw 8s ease-in-out infinite;
}
.ek-category-icon--kronobiologia .cls-1:nth-child(2n) {
  animation-delay: 0.2s;
}
.ek-category-icon--kronobiologia .cls-1:nth-child(3n) {
  animation-delay: 0.4s;
}
.ek-category-icon--kronobiologia .cls-1:last-child {
  animation:
    ek-coaching-draw 8s ease-in-out 0.6s infinite,
    ek-coaching-endpoint 3s ease-in-out 2.5s infinite;
}
.ek-category-icon--coaching .cls-1 {
  fill: color-mix(in srgb, var(--ek-category-accent) 32%, transparent);
  stroke: var(--wp--preset--color--gold);
  stroke-width: 1.35;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: ek-coaching-draw 8s ease-in-out infinite;
}
.ek-category-icon--coaching .cls-1:nth-child(2) {
  animation-delay: 0.35s;
}
.ek-category-icon--coaching .cls-1:nth-child(3) {
  animation-delay: 0.7s;
}
.ek-category-icon--coaching .cls-1:nth-child(4) {
  animation:
    ek-coaching-draw 8s ease-in-out 1.05s infinite,
    ek-coaching-endpoint 3s ease-in-out 2.5s infinite;
}
@keyframes ek-coaching-draw {
  0%,
  12% {
    stroke-dashoffset: 1400;
    fill-opacity: 0.06;
  }
  42%,
  78% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
  100% {
    stroke-dashoffset: -1400;
    fill-opacity: 0.06;
  }
}
@keyframes ek-krono-main-draw {
  0%,
  12% {
    stroke-dashoffset: 5000;
    fill-opacity: 0.06;
  }
  42%,
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
@keyframes ek-coaching-endpoint {
  0%,
  100% {
    filter: drop-shadow(0 0 0 transparent);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 9px var(--wp--preset--color--gold));
    transform: scale(1.045);
  }
}
.ek-category-orientation {
  background: var(--wp--preset--color--surface);
}
.ek-category-choices {
  display: grid;
  gap: 1.2rem;
}
.ek-category-choices--3 {
  grid-template-columns: repeat(3, 1fr);
}
.ek-category-choices--2 {
  grid-template-columns: repeat(2, 1fr);
}
.ek-category-choice {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--wp--preset--color--line);
  border-top: 5px solid var(--ek-category-accent);
  background: var(--wp--preset--color--ivory);
  box-sizing: border-box;
}
.ek-category-choice__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 1.35rem;
  object-fit: contain;
  transition: transform 260ms ease;
}
.ek-category-choice:hover .ek-category-choice__icon {
  transform: translateY(-2px) scale(1.04);
}
.ek-category-choice h3 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.2;
}
.ek-category-choice p {
  color: var(--wp--preset--color--muted);
}
.ek-category-choice .ek-textlink {
  align-self: flex-end;
  margin-top: auto;
  text-align: right;
}
.ek-category-services {
  scroll-margin-top: 90px;
}
.ek-category-service {
  scroll-margin-top: 90px;
  border-top: 7px solid var(--ek-category-accent);
}
.ek-category-service:nth-child(even) {
  background: var(--ek-category-light);
}
.ek-category-service__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.ek-category-service__copy h2 {
  max-width: 16ch;
  margin: 0 0 1.4rem;
}
.ek-category-service__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  object-fit: contain;
}
.ek-amelia-trigger {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.ek-booking-disabled {
  display: inline-block;
  cursor: not-allowed;
  opacity: 0.58;
  filter: saturate(0.35);
}
.ek-booking-choice-trigger { border: 0; cursor: pointer; font: inherit; }
.ek-booking-choice {
  width: min(560px, calc(100% - 2rem));
  padding: clamp(1.6rem, 5vw, 2.6rem);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 4px;
  background: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--ink);
  box-shadow: 0 24px 80px rgba(68, 48, 70, 0.28);
}
.ek-booking-choice::backdrop { background: rgba(61, 51, 64, 0.62); backdrop-filter: blur(4px); }
.ek-booking-choice h2 { margin: 0.25rem 2rem 0.55rem 0; font-size: clamp(1.7rem, 5vw, 2.35rem); }
.ek-booking-choice > p:not(.ek-eyebrow) { margin: 0 0 1.5rem; color: var(--wp--preset--color--muted); }
.ek-booking-choice__close { position: absolute; top: 0.8rem; right: 0.9rem; width: 40px; height: 40px; border: 0; background: transparent; color: var(--wp--preset--color--plum); cursor: pointer; font-size: 2rem; line-height: 1; }
.ek-booking-choice__options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ek-booking-choice__option { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; min-height: 125px; padding: 1.25rem; border: 1px solid var(--wp--preset--color--line); background: var(--wp--preset--color--surface); color: var(--wp--preset--color--ink); cursor: pointer; text-align: left; transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.ek-booking-choice__option:not(.is-disabled):hover { border-color: var(--wp--preset--color--plum); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(68, 48, 70, 0.1); }
.ek-booking-choice__option strong { font-family: var(--wp--preset--font-family--heading); font-size: 1.35rem; }
.ek-booking-choice__option span { color: var(--wp--preset--color--muted); font-size: 0.88rem; line-height: 1.45; }
.ek-booking-choice__option.is-disabled { cursor: not-allowed; opacity: 0.5; }

/* ── Időpontfoglaló gyűjtőoldal ───────────────────────────────────────── */
.ek-booking-hero {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
  text-align: center;
}
.ek-booking-hero h1 { margin: 0 0 1.3rem; }
.ek-booking-nav { position: sticky; top: 0; z-index: 8; border-bottom: 1px solid var(--wp--preset--color--line); background: rgba(255, 253, 248, 0.94); backdrop-filter: blur(12px); }
.ek-booking-nav .ek-services-shell { display: flex; justify-content: center; gap: clamp(1rem, 4vw, 3rem); padding-top: 0.8rem; padding-bottom: 0.8rem; }
.ek-booking-nav a { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--wp--preset--color--plum); font-weight: 600; }
.ek-booking-nav img { width: 30px; height: 30px; object-fit: contain; }
.ek-booking-category { scroll-margin-top: 80px; }
.ek-booking-category--tint { background: var(--wp--preset--color--lilac-light); }
.ek-booking-category__heading { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2.5rem; }
.ek-booking-category__heading > img { width: 74px; height: 74px; object-fit: contain; }
.ek-booking-category__heading h2 { margin: 0 0 0.35rem; }
.ek-booking-category__heading p { margin: 0; color: var(--wp--preset--color--muted); }
.ek-booking-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.ek-booking-card { display: flex; flex-direction: column; min-height: 330px; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--wp--preset--color--line); background: var(--wp--preset--color--surface); box-shadow: 0 14px 36px rgba(68, 48, 70, 0.06); }
.ek-booking-card__icon { width: 66px; height: 66px; margin-bottom: 1.1rem; object-fit: contain; }
.ek-booking-card h3 { margin: 0 0 0.8rem; font-size: 1.45rem; }
.ek-booking-card > p { margin: 0; color: var(--wp--preset--color--muted); line-height: 1.6; }
.ek-booking-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: auto; padding-top: 1.5rem; }
.ek-booking-card__actions .wp-block-button__link { padding: 0.7rem 1rem; font-size: 0.82rem; }
.ek-booking-help { text-align: center; }
.ek-booking-help p { max-width: 700px; margin-right: auto; margin-left: auto; }

/* ── Elállási/felmondási nyilatkozat ──────────────────────────────────── */
.ek-withdrawal-hero {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
  text-align: center;
}
.ek-withdrawal-hero h1 { margin: 0 0 1.3rem; }
.ek-withdrawal-panel { max-width: 780px; margin-inline: auto; }
.ek-withdrawal-panel > h2,
.ek-withdrawal-panel > p { text-align: center; }
.ek-withdrawal-panel > p { max-width: 680px; margin: 0 auto 2rem; color: var(--wp--preset--color--muted); line-height: 1.7; }
.ek-withdrawal-form { display: grid; gap: 0.65rem; margin-top: 2rem; }
.ek-withdrawal-form label:not(.ek-contact-form__consent) { margin-top: 0.55rem; margin-bottom: 0; }
.ek-withdrawal-form .ek-contact-form__consent { margin-top: 1rem; }

@media (max-width: 900px) {
  .ek-booking-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
	.ek-booking-choice__options { grid-template-columns: 1fr; }
  .ek-booking-nav .ek-services-shell { justify-content: flex-start; overflow-x: auto; }
  .ek-booking-nav a { flex: 0 0 auto; }
  .ek-booking-grid { grid-template-columns: 1fr; }
  .ek-booking-category__heading { align-items: flex-start; }
}
.ek-category-service__description {
  max-width: 700px;
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--lead);
}
.ek-category-context {
  max-width: 680px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wp--preset--color--line);
}
.ek-category-context h3 {
  font-size: 1.45rem;
}
.ek-category-notice {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--wp--preset--color--gold);
  background: color-mix(
    in srgb,
    var(--wp--preset--color--gold-light) 32%,
    transparent
  );
  font-weight: 600;
}
.ek-category-facts {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--wp--preset--color--line);
  border-top: 5px solid var(--ek-category-accent);
  background: var(--wp--preset--color--surface);
}
.ek-category-facts dl {
  margin: 0 0 2rem;
}
.ek-category-facts dl > div {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.ek-category-facts dt {
  color: var(--wp--preset--color--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ek-category-facts dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}
.ek-category-facts .wp-block-button__link {
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.ek-category-seasonal {
  margin: 0;
  color: var(--wp--preset--color--plum);
  font-weight: 600;
}
.ek-category-preparation {
  margin: -0.5rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--ek-category-accent);
  color: var(--wp--preset--color--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.ek-category-info {
  padding-block: var(--wp--preset--spacing--50);
  background: var(--wp--preset--color--plum-deep);
  color: var(--wp--preset--color--ivory);
}
.ek-category-info > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.ek-category-info h2 {
  margin: 0;
  color: inherit;
}
.ek-category-info p {
  margin: 0;
  color: color-mix(in srgb, var(--wp--preset--color--ivory) 78%, transparent);
  font-size: var(--wp--preset--font-size--lead);
}
.ek-testimonial {
  display: grid;
  min-height: clamp(520px, 65vw, 760px);
  padding-block: var(--wp--preset--spacing--60);
  background-color: var(--wp--preset--color--plum-deep);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  align-items: center;
}
.ek-testimonial > .ek-services-shell {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
.ek-testimonial__panel {
  width: min(100%, 800px);
  max-width: 800px;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--wp--custom--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 60px -34px rgba(61, 51, 64, 0.55);
  backdrop-filter: blur(3px);
  box-sizing: border-box;
  text-align: center;
}
.ek-testimonial__panel blockquote {
  margin: 0;
  color: var(--wp--preset--color--plum-deep);
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.6;
}
.ek-testimonial__panel figcaption {
  max-width: 280px;
  margin: 1.7rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--wp--preset--color--gold-light);
}
.ek-testimonial__panel cite {
  color: var(--wp--preset--color--plum);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.ek-category-page #foglalas {
  scroll-margin-top: 90px;
}
.ek-category-page .ek-faq-section {
  background: var(--ek-category-light);
}
.ek-category-page .ek-services-cta p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: color-mix(in srgb, var(--wp--preset--color--ivory) 78%, transparent);
}

@media (max-width: 940px) {
  .ek-category-hero {
    min-height: 0;
  }
  .ek-category-hero__grid {
    grid-template-columns: 1fr 220px;
    gap: 2rem;
  }
  .ek-category-visual {
    min-height: 230px;
  }
  .ek-category-choices--3 {
    grid-template-columns: 1fr 1fr;
  }
  .ek-category-choices--2 {
    grid-template-columns: 1fr 1fr;
  }
  .ek-category-service__grid {
    grid-template-columns: 1fr;
  }
  .ek-category-facts {
    max-width: 620px;
  }
}
@media (max-width: 560px) {
  .ek-category-section {
    padding-block: 72px;
  }
  .ek-category-hero {
    padding-block: 0.75rem 56px;
  }
  .ek-category-hero__grid {
    grid-template-columns: 1fr;
  }
  .ek-category-visual {
    min-height: 200px;
    opacity: 0.72;
  }
  .ek-category-icon {
    width: min(70vw, 240px);
    max-height: 240px;
  }
  .ek-category-choices--2,
  .ek-category-choices--3 {
    grid-template-columns: 1fr;
  }
  .ek-category-choice {
    min-height: 220px;
  }
  .ek-category-facts dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .ek-category-info > div {
    grid-template-columns: 1fr;
  }
  .ek-testimonial {
    min-height: 520px;
    padding-block: 3rem;
    background-position: 58% center;
    background-attachment: scroll;
  }
  .ek-testimonial__panel {
    padding: 2rem 1.4rem;
  }
}

@media (max-width: 840px) {
  .ek-footer,
  .ek-footer .wp-block-column,
  .ek-footer .ek-footer-heading,
  .ek-footer .ek-slogan,
  .ek-footer-menu,
  .ek-footer-bottom {
    text-align: center;
  }
  .ek-footer .wp-block-columns {
    align-items: center;
  }
  .ek-footer .wp-block-column {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .ek-footer-brand img {
    margin-inline: auto;
  }
  .ek-footer-menu,
  .ek-footer .wp-block-navigation,
  .ek-footer-bottom {
    justify-content: center;
  }
  .ek-footer-support {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .ek-footer-support p {
    margin-inline: auto;
  }
  .ek-footer-support__logos {
    align-items: center;
    justify-content: center;
  }
  .ek-footer-support__logos img {
    width: min(100%, 300px);
    min-width: 0;
    margin-inline: auto;
  }
  .ek-footer-bottom p {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .ek-reveal {
    opacity: 1;
    transform: none;
  }
  .ek-photo-card img {
    transform: rotate(var(--ek-tilt, -2deg));
  }
}

/* ── 17. Nyomtatás ────────────────────────────────────────────────────── */
@media print {
  .ek-header,
  .ek-footer,
  .ek-slider__controls,
  .wp-block-buttons {
    display: none;
  }
  .ek-fixed-bg,
  .ek-hero-home {
    background: none;
    color: var(--wp--preset--color--ink);
  }
}

/* ── Szolgáltatások áttekintő oldal ───────────────────────────────────── */
.ek-services-shell {
  width: min(1240px, calc(100% - 2 * var(--wp--custom--pad-x)));
  margin-inline: auto;
  padding: 16px;
}
.ek-services-section {
  padding-block: var(--wp--preset--spacing--60);
  scroll-margin-top: 90px;
}
.ek-services-heading {
  max-width: 760px;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}
.ek-services-heading h2 {
  margin: 0 0 1.2rem;
}
.ek-services-heading > p:last-child {
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--lead);
}
.ek-services-areas-intro {
  max-width: 720px;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--lead);
  text-align: center;
}
.ek-services-hero {
  min-height: min(760px, 82vh);
  display: grid;
  align-items: center;
  padding-block: var(--wp--preset--spacing--60);
  background-image: url("../images/szolgaltatas-hero-bg.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.ek-services-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}
.ek-services-hero__copy {
  position: relative;
  z-index: 2;
}
.ek-services-lead {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--lead);
}
.ek-services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.ek-button-outline {
  border: 1px solid var(--wp--preset--color--plum);
  color: var(--wp--preset--color--ink);
  background: transparent !important;
}
.ek-button-outline:hover {
  background: var(--wp--preset--color--plum) !important;
  color: var(--wp--preset--color--ivory);
}
.ek-services-cycle {
  position: relative;
  width: min(32vw, 400px);
  text-align: center;
  isolation: isolate;
}
.ek-services-cycle__stage {
  position: relative;
  z-index: 1;
  height: 360px;
  perspective: 900px;
}
.ek-services-cycle__slide {
  --ek-cycle-color: var(--wp--preset--color--lilac-light);
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(270px, 72vw);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid
    color-mix(
      in srgb,
      var(--ek-cycle-color) 65%,
      var(--wp--preset--color--gold)
    );
  border-radius: 18px;
  background: color-mix(in srgb, var(--ek-cycle-color) 76%, white);
  box-shadow: 0 28px 60px -38px rgba(61, 51, 64, 0.65);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.68);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms ease,
    filter 500ms ease;
}
.ek-services-cycle__slide--tarot {
  --ek-cycle-color: var(--wp--preset--color--lilac-light);
}
.ek-services-cycle__slide--krono {
  --ek-cycle-color: var(--wp--preset--color--mint-light);
}
.ek-services-cycle__slide--coaching {
  --ek-cycle-color: var(--wp--preset--color--pink-light);
}
.ek-services-cycle__slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}
.ek-services-cycle__slide.is-prev {
  z-index: 1;
  opacity: 0.48;
  transform: translate(-76%, -50%) scale(0.72) rotate(-7deg);
  filter: saturate(0.9);
}
.ek-services-cycle__slide.is-next {
  z-index: 2;
  opacity: 0.58;
  transform: translate(-24%, -50%) scale(0.78) rotate(7deg);
  filter: saturate(0.95);
}
.ek-services-cycle__slide img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}
.ek-services-cycle__slide strong {
  max-width: 19ch;
  color: var(--wp--preset--color--plum-deep);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.45;
  text-transform: uppercase;
}
.ek-service-rows {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
}
.ek-service-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.15fr) minmax(270px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 6px solid var(--ek-accent);
}
.ek-service-row__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  background: var(--ek-accent-light);
  border-radius: 50%;
}
.ek-service-row__mark img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.ek-service-row__main h3 {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}
.ek-service-row__main p {
  max-width: 620px;
  color: var(--wp--preset--color--muted);
}
.ek-service-row__recommended {
  padding-top: 0.35rem;
}
.ek-service-row__recommended > p:last-child {
  color: var(--wp--preset--color--muted);
}
.ek-service-cards {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.ek-service-mini-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--wp--preset--color--line);
  background: var(--wp--preset--color--surface);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}
.ek-service-mini-card:hover {
  border-color: var(--ek-accent);
  transform: translateY(-3px);
}
.ek-service-mini-card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  object-fit: contain;
  transition: transform 260ms ease;
}
.ek-service-mini-card:hover .ek-service-mini-card__icon {
  transform: translateY(-2px) scale(1.04);
}
.ek-service-mini-card strong {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.35rem;
  line-height: 1.2;
}
.ek-service-mini-card__description {
  margin-top: 0.65rem;
  color: var(--wp--preset--color--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.ek-service-mini-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.2rem;
}
.ek-service-mini-card__actions .ek-textlink {
  font-size: 0.8rem;
}
.ek-service-mini-card__actions .wp-block-button__link {
  padding: 0.62rem 0.9rem;
  font-size: 0.78rem;
}
.ek-services-choice {
  background: var(--wp--preset--color--surface);
}
.ek-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--wp--preset--color--line);
}
.ek-choice {
  padding: 2.8rem clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--wp--preset--color--line);
}
.ek-choice:first-child {
  border-left: 0;
}
.ek-choice__line {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 1.8rem;
  background: var(--ek-accent);
}
.ek-choice h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
}
.ek-choice p {
  color: var(--wp--preset--color--muted);
}
.ek-choice-help {
  max-width: 850px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--wp--preset--color--plum);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.35rem;
}
.ek-process-section {
  background: var(--wp--preset--color--lilac-light);
}
.ek-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.ek-process li {
  position: relative;
  display: flex;
  gap: 1.2rem;
  padding-right: clamp(1rem, 4vw, 4rem);
}
.ek-process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 48px;
  right: 10px;
  height: 1px;
  background: var(--wp--preset--color--gold-light);
}
.ek-process li > span {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding-right: 0.7rem;
  background: var(--wp--preset--color--lilac-light);
  color: var(--wp--preset--color--gold);
  font: 500 1rem/2 var(--wp--preset--font-family--heading);
}
.ek-process h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
.ek-process p {
  color: var(--wp--preset--color--muted);
  font-size: 0.94rem;
}
.ek-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--wp--preset--color--line);
}
.ek-facts > div {
  padding: 2.2rem 1.8rem 0;
  border-left: 1px solid var(--wp--preset--color--line);
}
.ek-facts > div:first-child {
  border-left: 0;
}
.ek-facts span {
  color: var(--wp--preset--color--gold);
  font: 500 1rem/1 var(--wp--preset--font-family--heading);
}
.ek-facts h3 {
  font-size: 1.45rem;
}
.ek-facts p {
  color: var(--wp--preset--color--muted);
  font-size: 0.93rem;
}
.ek-faq-section {
  scroll-margin-top: calc(var(--ek-header-height) + 1rem);
  background: var(--wp--preset--color--mint-light);
}
.ek-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
}
.ek-accordion {
  border-top: 1px solid var(--wp--preset--color--line);
}
.ek-accordion__item {
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.ek-accordion__item h3 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
}
.ek-accordion button {
  width: 100%;
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--wp--preset--color--ink);
  text-align: left;
  font: 600 1rem/1.5 var(--wp--preset--font-family--body);
  cursor: pointer;
}
.ek-accordion button i {
  position: relative;
  flex: 0 0 22px;
  height: 22px;
}
.ek-accordion button i::before,
.ek-accordion button i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: var(--wp--preset--color--plum);
  transition: transform 200ms ease;
}
.ek-accordion button i::after {
  transform: rotate(90deg);
}
.ek-accordion button[aria-expanded="true"] i::after {
  transform: rotate(0);
}
.ek-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  color: var(--wp--preset--color--muted);
  transition:
    grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}
.ek-accordion__panel > div {
  min-height: 0;
  overflow: hidden;
}
.ek-accordion__item.is-open .ek-accordion__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.ek-accordion__panel p {
  margin: 0;
  padding: 0 3rem 1.5rem 0;
}
.ek-services-cta {
  padding-block: var(--wp--preset--spacing--60);
  background: var(--wp--preset--color--plum-deep);
  color: var(--wp--preset--color--ivory);
  text-align: center;
}
.ek-services-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}
.ek-services-cta .ek-services-actions {
  justify-content: center;
}
.ek-services-cta .ek-button-outline {
  color: var(--wp--preset--color--ivory);
  border-color: rgba(250, 250, 247, 0.45);
}

@media (min-width: 941px) {
  .ek-split-section {
    padding-block: clamp(5rem, 8vw, 7.5rem) !important;
  }
  .ek-split-section.ek-reverse-desktop > .wp-block-columns {
    flex-direction: row-reverse;
  }
  .ek-home-teaching__image {
    order: 1;
  }
  .ek-home-teaching__copy {
    order: 2;
  }
  .ek-home-tarot__copy {
    order: 1;
  }
  .ek-home-tarot__image {
    order: 2;
  }
  .ek-services-cycle {
    width: min(35vw, 450px);
  }
  .ek-services-cycle__stage {
    height: 410px;
  }
  .ek-services-cycle__slide {
    width: 320px;
    min-height: 350px;
    padding: 2.4rem;
  }
}

@media (max-width: 940px) {
  .ek-split-section {
    padding-block: 4.5rem !important;
  }
  .ek-services-hero__inner {
    grid-template-columns: 1fr 220px;
  }
  .ek-service-row {
    grid-template-columns: 110px 1fr;
  }
  .ek-service-row__recommended {
    grid-column: 2;
  }
  .ek-service-cards {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
  }
  .ek-choice-grid {
    grid-template-columns: 1fr;
  }
  .ek-choice {
    border-left: 0;
    border-top: 1px solid var(--wp--preset--color--line);
  }
  .ek-choice:first-child {
    border-top: 0;
  }
  .ek-process {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ek-process li:not(:last-child)::after {
    top: 42px;
    bottom: -25px;
    left: 15px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .ek-facts {
    grid-template-columns: 1fr 1fr;
  }
  .ek-facts > div:nth-child(3) {
    border-left: 0;
  }
  .ek-faq-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ek-faq-layout .ek-services-heading {
    margin-bottom: 0;
  }
}
@media (max-width: 560px) {
  .ek-services-shell {
    width: calc(100% - 40px);
  }
  .ek-services-section {
    padding-block: 36px;
  }
  .ek-services-hero {
    min-height: 0;
    padding-block: 84px;
  }
  .ek-services-hero__inner {
    grid-template-columns: 1fr;
  }
  .ek-services-cycle {
    width: min(100%, 360px);
    margin: 2rem auto 0;
  }
  .ek-services-cycle__stage {
    height: 330px;
  }
  .ek-services-cycle__slide {
    min-height: 280px;
  }
  .ek-services-actions {
    flex-direction: column;
    align-items: center;
  }
  .ek-services-actions .wp-block-button__link {
    width: auto;
    max-width: 100%;
    min-height: 52px;
    box-sizing: border-box;
    text-align: center;
  }
  .ek-service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ek-service-row__mark {
    width: 88px;
    height: 88px;
  }
  .ek-service-row__mark img {
    width: 62px;
    height: 62px;
  }
  .ek-service-row__recommended,
  .ek-service-cards {
    grid-column: auto;
  }
  .ek-service-cards {
    grid-template-columns: 1fr;
  }
  .ek-choice {
    padding-inline: 0;
  }
  .ek-facts {
    grid-template-columns: 1fr;
  }
  .ek-facts > div,
  .ek-facts > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--wp--preset--color--line);
    padding-inline: 0;
  }
}


label a {
  color: var(--wp--preset--color--gold);
	text-decoration: underline;
}
