/*
Theme Name: Blancode
Theme URI: https://mahigblankajulia.com/
Author: Máhig Blanka Júlia
Description: Egyedi, háromnyelvű Blancode bemutatkozó és coaching weboldal.
Version: 1.0.0
Text Domain: blancode
*/

:root {
  --blc-petrol-950: #071f2b;
  --blc-petrol-900: #0b2c3a;
  --blc-petrol-800: #103c4d;
  --blc-petrol-700: #175167;
  --blc-petrol-100: #d6e6ea;
  --blc-cream-50: #fffdf8;
  --blc-cream-100: #f7f1e6;
  --blc-cream-200: #eee3d0;
  --blc-gold-300: #f0d889;
  --blc-gold-500: #d5ad52;
  --blc-gold-700: #8d672c;
  --blc-text: #263941;
  --blc-muted: #5f6f76;
  --blc-border: rgba(141, 103, 44, 0.23);
  --blc-shadow: 0 22px 55px rgba(7, 31, 43, 0.13);
  --blc-radius: 26px;
  --blc-symbol-gold: #f0d889;
  --blc-symbol-gold-deep: #c89c3d;
  --blc-symbol-line: 2px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--blc-cream-100);
}

/* ---------- Nyelvváltás JavaScript nélkül ---------- */
.blc-lang-control {
  position: fixed !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.blc-page {
  display: none !important;
}

#blc-lang-hu:checked ~ .blc-page--hu,
#blc-lang-en:checked ~ .blc-page--en,
#blc-lang-fr:checked ~ .blc-page--fr {
  display: block !important;
}

#blc-lang-hu:checked ~ .blc-page .blc-lang-btn[for="blc-lang-hu"],
#blc-lang-en:checked ~ .blc-page .blc-lang-btn[for="blc-lang-en"],
#blc-lang-fr:checked ~ .blc-page .blc-lang-btn[for="blc-lang-fr"] {
  background: linear-gradient(135deg, #f2dc95 0%, #d5ad52 100%) !important;
  color: #071f2b !important;
}

.blc-site,
.blc-site * {
  box-sizing: border-box;
}

.blc-site {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--blc-cream-100);
  color: var(--blc-text);
  font-family: Arial, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.blc-site a {
  color: inherit;
  text-decoration: none;
}

.blc-site h1,
.blc-site h2,
.blc-site h3,
.blc-site p,
.blc-site blockquote {
  margin-top: 0;
}

.blc-site section {
  scroll-margin-top: 100px;
}

/* ---------- Navigáció ---------- */
.blc-site .blc-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(24px, 6vw, 92px);
  background-color: var(--blc-petrol-900);
  background-image: linear-gradient(
    120deg,
    #1a5367 0%,
    #103c4d 45%,
    #0b2c3a 100%
  );
  color: var(--blc-cream-50);
  border-bottom: 1px solid rgba(240, 216, 137, 0.25);
  box-shadow: 0 10px 30px rgba(7, 31, 43, 0.24);
}

.blc-site .blc-brand,
.blc-site .blc-footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.blc-site .blc-brand-text strong {
  display: block;
  color: var(--blc-cream-50);
  font:
    600 23px/1.05 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--blc-gold-300);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.blc-site .blc-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.blc-site .blc-nav-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.blc-site .blc-nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--blc-gold-300);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.blc-site .blc-nav-links a:hover,
.blc-site .blc-nav-links a:focus-visible {
  color: var(--blc-gold-300);
}

.blc-site .blc-nav-links a:hover::after,
.blc-site .blc-nav-links a:focus-visible::after {
  transform: scaleX(1);
}

/* ---------- Gombok ---------- */
.blc-site .blc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 11px 23px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background-color: var(--blc-gold-500);
  background-image: linear-gradient(135deg, #f2dc95 0%, #d5ad52 100%);
  color: var(--blc-petrol-950);
  font-weight: 700;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.blc-site .blc-btn:hover,
.blc-site .blc-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.blc-site .blc-btn--small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 14px;
}

/* ---------- Egységes, WordPress-kompatibilis lótusz-szimbólum ---------- */
/* A lótusz minden SVG-ben közvetlenül szerepel, ezért a WordPress nem tudja
   eltávolítani a korábban használt SVG-hivatkozást. */
.blc-lotus-petal {
  fill: none;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transform-box: view-box;
  transform-origin: 150px 180px;
  transform: scale(1);
  opacity: 1;
  animation: blc-lotus-bloom 1.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.blc-lotus-petal--1 {
  animation-delay: 0.32s;
}

.blc-lotus-petal--2 {
  animation-delay: 0.16s;
}

.blc-lotus-petal--3 {
  animation-delay: 0s;
}

.blc-lotus-petal--4 {
  animation-delay: 0.16s;
}

.blc-lotus-petal--5 {
  animation-delay: 0.32s;
}

@keyframes blc-lotus-bloom {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  65% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.blc-site .blc-symbol {
  position: relative;
  display: inline-block;
  aspect-ratio: 300 / 210;
  flex: 0 0 auto;
  overflow: visible;
}

.blc-site .blc-symbol--nav {
  width: 64px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.24));
}

.blc-site .blc-symbol--hero {
  width: min(430px, 68vw);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 22px rgba(212, 175, 90, 0.12));
  animation: blc-float 7s ease-in-out infinite;
}

.blc-site .blc-symbol--watermark {
  position: absolute;
  right: -22px;
  bottom: -6px;
  width: 200px;
  opacity: 0.2;
}

.blc-site .blc-symbol--core {
  width: 150px;
}

.blc-site .blc-symbol--icon {
  width: 80px;
}

.blc-site .blc-symbol--footer {
  width: 46px;
}

/* ---------- Nyelvválasztó ---------- */
.blc-site .blc-lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(240, 216, 137, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.blc-site .blc-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  min-width: 34px;
  padding: 6px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 253, 248, 0.75);
  font:
    700 11px/1 Arial,
    sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.blc-site .blc-lang-btn:hover {
  color: var(--blc-cream-50);
}

@keyframes blc-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes blc-fade-up {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blc-halo-breathe {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.blc-site .blc-hero-copy > * {
  animation: blc-fade-up 0.8s ease both;
}

.blc-site .blc-hero-copy > *:nth-child(1) {
  animation-delay: 0.05s;
}
.blc-site .blc-hero-copy > *:nth-child(2) {
  animation-delay: 0.12s;
}
.blc-site .blc-hero-copy > *:nth-child(3) {
  animation-delay: 0.19s;
}
.blc-site .blc-hero-copy > *:nth-child(4) {
  animation-delay: 0.26s;
}
.blc-site .blc-hero-copy > *:nth-child(5) {
  animation-delay: 0.33s;
}
.blc-site .blc-hero-copy > *:nth-child(6) {
  animation-delay: 0.4s;
}

.blc-site .blc-halo--one {
  animation: blc-halo-breathe 5.8s ease-in-out infinite;
}

.blc-site .blc-halo--two {
  animation: blc-halo-breathe 5.8s ease-in-out 0.9s infinite reverse;
}

/* ---------- Nyitó szakasz ---------- */
.blc-site .blc-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 710px;
  padding: clamp(76px, 9vw, 125px) clamp(25px, 7vw, 105px) 0;
  overflow: hidden;
  background-color: var(--blc-petrol-800);
  background-image:
    radial-gradient(
      circle at 82% 38%,
      rgba(212, 175, 90, 0.14),
      transparent 28%
    ),
    linear-gradient(145deg, #185167 0%, #0b2c3a 100%);
  color: var(--blc-cream-50);
}

.blc-site .blc-hero::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 90, 0.16),
    transparent 68%
  );
  pointer-events: none;
}

.blc-site .blc-hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 690px;
  padding-bottom: 105px;
}

.blc-site .blc-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--blc-gold-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blc-site .blc-eyebrow--dark {
  color: var(--blc-gold-700);
}

.blc-site .blc-wordmark {
  margin-bottom: 4px;
  color: var(--blc-cream-50);
  font:
    600 clamp(39px, 5vw, 67px)/1 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-name {
  margin-bottom: 26px;
  color: #b9d4dc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blc-site .blc-hero h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--blc-cream-50);
  font:
    500 clamp(43px, 5.5vw, 76px)/1.02 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.025em;
}

.blc-site .blc-hero h1 em {
  display: block;
  color: var(--blc-gold-300);
  font-style: normal;
}

.blc-site .blc-lead {
  max-width: 62ch;
  margin-bottom: 30px;
  color: #c8dce2;
  font-size: 17px;
}

.blc-site .blc-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.blc-site .blc-text-link {
  color: var(--blc-cream-50);
  font-weight: 700;
}

.blc-site .blc-text-link span {
  color: var(--blc-gold-300);
}

.blc-site .blc-hero-art {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 530px;
}

.blc-site .blc-halo {
  position: absolute;
  border: 1px solid rgba(240, 216, 137, 0.24);
  border-radius: 50%;
  background: transparent;
}

.blc-site .blc-halo--one {
  width: 78%;
  aspect-ratio: 1;
}

.blc-site .blc-halo--two {
  width: 58%;
  aspect-ratio: 1;
}

.blc-site .blc-credentials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.15fr 1.7fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.blc-site .blc-credentials div {
  min-width: 0;
  padding: 24px 25px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.blc-site .blc-credentials div:not(:first-child) {
  padding-left: 24px;
}

.blc-site .blc-credentials div:last-child {
  border-right: 0;
}

.blc-site .blc-credentials span {
  display: block;
  margin-bottom: 6px;
  color: var(--blc-gold-300);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blc-site .blc-credentials strong {
  display: block;
  color: var(--blc-cream-50);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

/* ---------- Tartalmi szakaszok ---------- */
.blc-site .blc-section {
  padding: clamp(76px, 8vw, 116px) clamp(25px, 7vw, 105px);
  background-color: var(--blc-cream-100);
  color: var(--blc-text);
}

.blc-site .blc-about {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 7vw, 95px);
  align-items: center;
}

.blc-site .blc-about-visual {
  position: relative;
  width: 100%;
  max-width: 455px;
}

.blc-site .blc-photo-placeholder {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 103, 44, 0.22);
  border-radius: 28px;
  background-color: var(--blc-petrol-800);
  box-shadow: var(--blc-shadow);
}

.blc-site .blc-photo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blc-site .blc-about-copy h2,
.blc-site .blc-section-head h2,
.blc-site .blc-contact h2 {
  margin-bottom: 24px;
  color: var(--blc-petrol-800);
  font:
    500 clamp(32px, 3.5vw, 49px)/1.12 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-about-copy p {
  margin-bottom: 18px;
  color: #394d55;
  font-size: 16px;
}

.blc-site .blc-about-copy blockquote {
  margin: 28px 0 0;
  padding: 20px 23px;
  border: 0;
  border-left: 3px solid var(--blc-gold-500);
  background: rgba(213, 173, 82, 0.1);
  color: #263d46;
  font:
    italic 18px/1.55 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.blc-site .blc-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.blc-site .blc-section-head p {
  color: var(--blc-muted);
}

/* ---------- Interaktív coaching-lótusz ---------- */
.blc-site .blc-model {
  background-color: var(--blc-cream-200);
  background-image: linear-gradient(180deg, #f3eadb 0%, #e8dbc2 100%);
}

.blc-site .blc-lotus-model {
  max-width: 980px;
  margin: 0 auto;
}

.blc-site .blc-lotus-stage {
  position: relative;
  width: min(820px, 100%);
  aspect-ratio: 820 / 560;
  margin: 0 auto 22px;
}

.blc-site .blc-coaching-petal {
  --blc-open-x: 0px;
  --blc-open-y: 0px;
  position: absolute;
  z-index: 1;
  width: 22%;
  height: auto;
  aspect-ratio: 1;
  padding: 18px;
  border: 2px solid rgba(213, 173, 82, 0.78);
  border-radius: 50%;
  background: radial-gradient(
    circle at 36% 28%,
    #fffdf8 0%,
    #f7edd8 68%,
    #e6d5b4 100%
  );
  color: var(--blc-petrol-800);
  cursor: pointer;
  box-shadow:
    0 14px 30px rgba(7, 31, 43, 0.12),
    inset 0 0 0 7px rgba(255, 253, 248, 0.48);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.blc-site .blc-coaching-petal svg {
  display: none;
}

.blc-site .blc-coaching-petal path {
  fill: rgba(255, 250, 241, 0.9);
  stroke: var(--blc-gold-500);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  transition:
    fill 0.3s ease,
    stroke 0.3s ease,
    stroke-width 0.3s ease;
}

.blc-site .blc-coaching-petal span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18%;
  pointer-events: none;
}

.blc-site .blc-coaching-petal b {
  color: var(--blc-gold-700);
  font:
    700 19px/1 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-coaching-petal em {
  color: var(--blc-petrol-800);
  font:
    600 clamp(13px, 1.55vw, 17px)/1.15 Georgia,
    "Times New Roman",
    serif;
  text-align: center;
}

.blc-site .blc-coaching-petal:hover,
.blc-site .blc-coaching-petal:focus-visible,
.blc-site .blc-coaching-petal.is-active {
  z-index: 4;
  transform: translate(var(--blc-open-x), var(--blc-open-y)) scale(1.12);
  border-color: var(--blc-petrol-700);
  background: radial-gradient(
    circle at 36% 28%,
    #fffdf8 0%,
    #f2e2bd 72%,
    #d6b975 100%
  );
  box-shadow:
    0 20px 40px rgba(7, 31, 43, 0.2),
    0 0 0 8px rgba(213, 173, 82, 0.15),
    inset 0 0 0 7px rgba(255, 253, 248, 0.55);
  outline: none;
}

.blc-site .blc-coaching-petal:hover path,
.blc-site .blc-coaching-petal:focus-visible path,
.blc-site .blc-coaching-petal.is-active path {
  fill: #fffdf8;
  stroke: var(--blc-petrol-700);
  stroke-width: 4;
}

.blc-site .blc-coaching-petal:focus-visible {
  outline: 3px solid var(--blc-gold-700);
  outline-offset: 5px;
}

.blc-site .blc-coaching-petal--1 {
  left: 3%;
  top: 58%;
  --blc-open-x: -12px;
  --blc-open-y: 12px;
}
.blc-site .blc-coaching-petal--2 {
  left: 13%;
  top: 20%;
  --blc-open-x: -15px;
  --blc-open-y: -8px;
}
.blc-site .blc-coaching-petal--3 {
  left: 39%;
  top: 0;
  --blc-open-y: -16px;
}
.blc-site .blc-coaching-petal--4 {
  right: 13%;
  top: 20%;
  --blc-open-x: 15px;
  --blc-open-y: -8px;
}
.blc-site .blc-coaching-petal--5 {
  right: 3%;
  top: 58%;
  --blc-open-x: 12px;
  --blc-open-y: 12px;
}

.blc-site .blc-model-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 31%;
  aspect-ratio: 1;
  padding: 22px;
  border-radius: 50%;
  border: 1px solid rgba(141, 103, 44, 0.32);
  background: radial-gradient(
    circle at 50% 35%,
    #fffdf8 0%,
    #eee0c5 72%,
    #ddc99f 100%
  );
  text-align: center;
  box-shadow:
    0 22px 48px rgba(7, 31, 43, 0.18),
    0 0 0 12px rgba(255, 253, 248, 0.38);
}

.blc-site .blc-model-core .blc-symbol--core {
  width: 42%;
  color: var(--blc-gold-700);
}

.blc-site .blc-model-core .blc-symbol--core path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.blc-site .blc-model-core small {
  margin-top: -3px;
  color: var(--blc-gold-700);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blc-site .blc-model-core strong {
  margin-top: 3px;
  color: var(--blc-petrol-800);
  font:
    600 clamp(18px, 2.6vw, 28px)/1.1 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-lotus-details {
  min-height: 172px;
}

.blc-site .blc-lotus-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  max-width: 790px;
  min-height: 150px;
  margin: 0 auto;
  padding: 25px 30px;
  border: 1px solid var(--blc-border);
  border-radius: var(--blc-radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 34px rgba(7, 31, 43, 0.09);
  animation: blc-detail-open 0.38s ease both;
}

.blc-site .blc-lotus-detail[hidden] {
  display: none;
}

.blc-site .blc-lotus-detail > b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blc-petrol-800);
  color: var(--blc-gold-300);
  font:
    700 22px/1 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-lotus-detail h3 {
  margin: 0 0 6px;
  color: var(--blc-petrol-800);
  font:
    600 24px/1.2 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-lotus-detail p {
  margin: 0;
  color: #42575f;
}

@keyframes blc-detail-open {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blc-site .blc-terms-status {
  color: var(--blc-gold-300);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

/* ---------- Fókuszterületek ---------- */
.blc-site .blc-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.blc-site .blc-focus-card {
  padding: 31px 27px;
  border: 1px solid var(--blc-border);
  border-top: 3px solid var(--blc-gold-500);
  border-radius: var(--blc-radius);
  background: var(--blc-cream-50);
  color: var(--blc-text);
  box-shadow: var(--blc-shadow);
  transition: transform 0.25s ease;
}

.blc-site .blc-focus-card:hover {
  transform: translateY(-6px);
}

.blc-site .blc-focus-card h3 {
  margin: 17px 0 12px;
  color: var(--blc-petrol-800);
  font:
    600 23px/1.2 Georgia,
    "Times New Roman",
    serif;
}

.blc-site .blc-focus-card p {
  margin-bottom: 0;
  color: #52656c;
}

/* ---------- Kapcsolat ---------- */
.blc-site .blc-contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: clamp(76px, 8vw, 116px) clamp(25px, 7vw, 105px);
  background-color: var(--blc-petrol-800);
  background-image: linear-gradient(145deg, #185167 0%, #0b2c3a 100%);
  color: var(--blc-cream-50);
}

.blc-site .blc-contact h2 {
  color: var(--blc-cream-50);
}

.blc-site .blc-contact-copy p {
  color: #c4d8de;
  font-size: 17px;
}

.blc-site .blc-contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--blc-radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--blc-cream-50);
}

.blc-site .blc-contact-card > div {
  margin-bottom: 18px;
}

.blc-site .blc-contact-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--blc-gold-300);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blc-site .blc-contact-card a:not(.blc-btn) {
  color: var(--blc-cream-50);
  overflow-wrap: anywhere;
}

.blc-site .blc-contact-card a:not(.blc-btn):hover,
.blc-site .blc-contact-card a:not(.blc-btn):focus-visible {
  color: var(--blc-gold-300);
}

.blc-site .blc-contact-card .blc-btn {
  width: 100%;
  margin-top: 8px;
}

/* ---------- Lábléc ---------- */
.blc-site .blc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(25px, 7vw, 105px);
  background: var(--blc-petrol-950);
  color: #b9cdd3;
  font-size: 12px;
}

/* ---------- Billentyűzetes fókusz ---------- */
.blc-site a:focus-visible {
  outline: 2px solid var(--blc-gold-300);
  outline-offset: 4px;
}

/* ---------- Reszponzív ---------- */
@media (max-width: 1100px) {
  .blc-site .blc-credentials {
    grid-template-columns: 1fr 1fr;
  }

  .blc-site .blc-credentials div:nth-child(2) {
    border-right: 0;
  }

  .blc-site .blc-credentials div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 1000px) {
  .blc-site .blc-nav {
    grid-template-columns: 1fr auto auto;
  }

  .blc-site .blc-nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: thin;
  }

  .blc-site .blc-hero,
  .blc-site .blc-about,
  .blc-site .blc-contact {
    grid-template-columns: 1fr;
  }

  .blc-site .blc-hero-copy {
    padding-bottom: 30px;
  }

  .blc-site .blc-hero-art {
    min-height: 390px;
  }

  .blc-site .blc-focus-grid {
    grid-template-columns: 1fr;
  }

  .blc-site .blc-lotus-stage {
    width: min(700px, 100%);
  }
}

@media (max-width: 650px) {
  html {
    scroll-padding-top: 145px;
  }

  .blc-site section {
    scroll-margin-top: 145px;
  }

  .blc-site .blc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 13px 18px;
  }

  .blc-site .blc-nav-links {
    width: 100%;
    gap: 18px;
  }

  .blc-site .blc-nav-links a {
    font-size: 13px;
  }

  .blc-site .blc-btn--small {
    margin-left: auto;
  }

  .blc-site .blc-hero {
    min-height: auto;
    padding-right: 22px;
    padding-left: 22px;
  }

  .blc-site .blc-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .blc-site .blc-credentials {
    grid-template-columns: 1fr;
  }

  .blc-site .blc-credentials div,
  .blc-site .blc-credentials div:not(:first-child) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .blc-site .blc-credentials div:last-child {
    border-bottom: 0;
  }

  .blc-site .blc-section,
  .blc-site .blc-contact {
    padding-right: 22px;
    padding-left: 22px;
  }

  .blc-site .blc-model .blc-section-head {
    margin-bottom: 28px;
  }

  .blc-site .blc-lotus-stage {
    width: 100%;
    aspect-ratio: 1 / 0.96;
    margin-bottom: 10px;
  }

  .blc-site .blc-coaching-petal {
    width: 34%;
    height: auto;
  }

  .blc-site .blc-coaching-petal span {
    inset: 0;
    padding: 13%;
  }
  .blc-site .blc-coaching-petal b {
    font-size: 15px;
  }
  .blc-site .blc-coaching-petal em {
    font-size: 12px;
  }
  .blc-site .blc-coaching-petal--1 {
    left: -5%;
    top: 63%;
  }
  .blc-site .blc-coaching-petal--2 {
    left: 1%;
    top: 27%;
  }
  .blc-site .blc-coaching-petal--3 {
    left: 33%;
    top: 0;
  }
  .blc-site .blc-coaching-petal--4 {
    right: 1%;
    top: 27%;
  }
  .blc-site .blc-coaching-petal--5 {
    right: -5%;
    top: 63%;
  }
  .blc-site .blc-model-core {
    top: 58%;
    width: 43%;
    padding: 14px;
  }
  .blc-site .blc-model-core small {
    font-size: 9px;
  }
  .blc-site .blc-model-core strong {
    font-size: clamp(16px, 5vw, 21px);
  }
  .blc-site .blc-lotus-detail {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }
  .blc-site .blc-lotus-detail > b {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .blc-site .blc-symbol--hero {
    width: min(270px, 72vw);
    height: min(270px, 72vw);
  }

  .blc-site .blc-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .blc-site *,
  .blc-site *::before,
  .blc-site *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ======================================================================
   WORDPRESS-BIZTOS FELÜLÍRÁSOK
   Ezek a szabályok megakadályozzák, hogy a sablon globális színei,
   tipográfiája vagy blokkbeállításai felülírják a Blancode megjelenését.
   ====================================================================== */

/* A teljes oldal kilép a WordPress tartalmi oszlopából. */
.blc-site {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 0 0 -50vw !important;
  padding: 0 !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
  background: var(--blc-cream-100) !important;
  color: var(--blc-text) !important;
  font-family: Arial, "Segoe UI", sans-serif !important;
}

.blc-site,
.blc-site * {
  box-sizing: border-box !important;
}

.blc-site a,
.blc-site a:visited {
  text-decoration: none !important;
}

.blc-site button {
  font-family: inherit !important;
}

/* ----- Felső menü ----- */
.blc-site .blc-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  min-height: 88px !important;
  display: grid !important;
  grid-template-columns: auto minmax(300px, 1fr) auto auto !important;
  align-items: center !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 14px clamp(24px, 6vw, 92px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(240, 216, 137, 0.28) !important;
  border-radius: 0 !important;
  background: linear-gradient(
    120deg,
    #1a5367 0%,
    #103c4d 46%,
    #0b2c3a 100%
  ) !important;
  color: #fffdf8 !important;
  box-shadow: 0 10px 30px rgba(7, 31, 43, 0.26) !important;
}

.blc-site .blc-brand {
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  min-width: max-content !important;
  color: #fffdf8 !important;
}

.blc-site .blc-brand-text strong {
  display: block !important;
  margin: 0 !important;
  color: #fffdf8 !important;
  font:
    600 23px/1.05 Georgia,
    "Times New Roman",
    serif !important;
}

.blc-site .blc-brand-text small {
  display: block !important;
  margin: 5px 0 0 !important;
  color: #f0d889 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.17em !important;
  text-transform: uppercase !important;
}

.blc-site .blc-nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(18px, 2.5vw, 34px) !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.blc-site .blc-nav-links a,
.blc-site .blc-nav-links a:visited {
  display: inline-block !important;
  position: relative !important;
  margin: 0 !important;
  padding: 8px 0 !important;
  color: rgba(255, 253, 248, 0.92) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.blc-site .blc-nav-links a:hover,
.blc-site .blc-nav-links a:focus-visible {
  color: #f0d889 !important;
}

.blc-site .blc-lang-switch {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  min-width: max-content !important;
  margin: 0 !important;
  padding: 3px !important;
  border: 1px solid rgba(240, 216, 137, 0.34) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.blc-site .blc-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 34px !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 6px 9px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(255, 253, 248, 0.78) !important;
  font:
    700 11px/1 Arial,
    sans-serif !important;
  letter-spacing: 0.05em !important;
  cursor: pointer !important;
}

.blc-site .blc-lang-btn.is-active {
  background: linear-gradient(135deg, #f7e8ad 0%, #d5ad52 100%) !important;
  color: #071f2b !important;
}

.blc-site .blc-btn,
.blc-site .blc-btn:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 47px !important;
  margin: 0 !important;
  padding: 11px 23px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #f7e8ad 0%, #d5ad52 100%) !important;
  color: #071f2b !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.17) !important;
}

.blc-site .blc-btn--small {
  min-height: 42px !important;
  padding: 9px 18px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}

/* ----- Beépített, WordPress-kompatibilis lótusz ----- */
.blc-site .blc-symbol {
  display: inline-block !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
  color: #f0d889 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.blc-site .blc-lotus-petal {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 5.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
  opacity: 1 !important;
}

.blc-site .blc-symbol--nav {
  width: 62px !important;
  height: auto !important;
  color: #f0d889 !important;
}

.blc-site .blc-symbol--hero {
  width: min(430px, 68vw) !important;
  height: auto !important;
  color: #f0d889 !important;
}

.blc-site .blc-symbol--watermark,
.blc-site .blc-symbol--core,
.blc-site .blc-symbol--icon,
.blc-site .blc-symbol--footer {
  color: #c89c3d !important;
}

/* ----- Hero: pontos háttér- és betűszínek ----- */
.blc-site .blc-hero {
  background:
    radial-gradient(
      circle at 82% 38%,
      rgba(240, 216, 137, 0.15),
      transparent 29%
    ),
    linear-gradient(145deg, #18566b 0%, #103c4d 52%, #082a39 100%) !important;
  color: #fffdf8 !important;
}

.blc-site .blc-hero .blc-eyebrow {
  color: #f0d889 !important;
}

.blc-site .blc-wordmark {
  color: #fffdf8 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 600 !important;
}

.blc-site .blc-name {
  color: #d7e7eb !important;
}

.blc-site .blc-hero h1 {
  color: #fffdf8 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 500 !important;
}

.blc-site .blc-hero h1 em {
  color: #f0d889 !important;
  font-style: normal !important;
}

.blc-site .blc-lead {
  color: #d7e7eb !important;
}

.blc-site .blc-text-link,
.blc-site .blc-text-link:visited {
  color: #fffdf8 !important;
}

.blc-site .blc-text-link span {
  color: #f0d889 !important;
}

.blc-site .blc-credentials span {
  color: #f0d889 !important;
}

.blc-site .blc-credentials strong {
  color: #fffdf8 !important;
}

/* ----- Világos szakaszok ----- */
.blc-site .blc-section {
  background-color: #f7f1e6 !important;
  color: #263941 !important;
}

.blc-site .blc-model {
  background: linear-gradient(180deg, #f3eadb 0%, #e8dbc2 100%) !important;
}

.blc-site .blc-eyebrow--dark {
  color: #8d672c !important;
}

.blc-site .blc-about-copy h2,
.blc-site .blc-section-head h2,
.blc-site .blc-focus-card h3,
.blc-site .blc-lotus-detail h3,
.blc-site .blc-model-core strong {
  color: #103c4d !important;
  font-family: Georgia, "Times New Roman", serif !important;
}

.blc-site .blc-about-copy p,
.blc-site .blc-section-head p,
.blc-site .blc-focus-card p,
.blc-site .blc-lotus-detail p {
  color: #42575f !important;
}

/* ----- Kapcsolat és lábléc ----- */
.blc-site .blc-contact {
  background: linear-gradient(
    145deg,
    #18566b 0%,
    #103c4d 52%,
    #082a39 100%
  ) !important;
  color: #fffdf8 !important;
}

.blc-site .blc-contact h2,
.blc-site .blc-contact-card a,
.blc-site .blc-contact-card a:visited {
  color: #fffdf8 !important;
}

.blc-site .blc-contact-copy p {
  color: #d7e7eb !important;
}

.blc-site .blc-contact-card small {
  color: #f0d889 !important;
}

.blc-site .blc-footer {
  background: #071f2b !important;
  color: #c4d8de !important;
}

/* ----- Tablet és mobil ----- */
@media (max-width: 1120px) {
  .blc-site .blc-nav {
    grid-template-columns: auto 1fr auto !important;
  }

  .blc-site .blc-nav-links {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding: 2px 0 3px !important;
  }

  .blc-site .blc-btn--small {
    justify-self: end !important;
  }
}

@media (max-width: 700px) {
  .blc-site .blc-nav {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px 14px !important;
    padding: 13px 18px !important;
  }

  .blc-site .blc-brand {
    min-width: 0 !important;
  }

  .blc-site .blc-symbol--nav {
    width: 48px !important;
  }

  .blc-site .blc-brand-text strong {
    font-size: 20px !important;
  }

  .blc-site .blc-lang-switch {
    justify-self: end !important;
  }

  .blc-site .blc-nav-links {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    order: initial !important;
    gap: 7px 18px !important;
    overflow: visible !important;
  }

  .blc-site .blc-btn--small {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    width: auto !important;
    margin: 0 !important;
  }
}

/* ---------- Szolgáltatások, gondolatok és jelentkezés ---------- */
.blc-services {
  background: var(--blc-cream-100);
}
.blc-coaching-foundation {
  max-width: 1160px;
  margin: 0 auto 30px;
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border: 1px solid rgba(213, 173, 82, 0.45);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffaf0, var(--blc-cream-50));
  box-shadow: 0 15px 35px rgba(36, 49, 51, 0.08);
}
.blc-foundation-mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blc-petrol-800);
  color: var(--blc-gold-300);
  font-size: 20px;
}
.blc-coaching-foundation h3 {
  margin: 0 0 8px;
  font:
    700 25px/1.25 Georgia,
    serif;
  color: var(--blc-petrol-800);
}
.blc-coaching-foundation p {
  margin: 0;
  color: var(--blc-muted);
}
.blc-service-grid,
.blc-insight-grid {
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.blc-service-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--blc-border);
  border-radius: var(--blc-radius);
  background: var(--blc-cream-50);
  box-shadow: var(--blc-shadow);
}
.blc-service-card--featured {
  border-top: 3px solid var(--blc-gold-500);
}

.blc-service-card--wide {
  grid-column: 1 / -1;
}
.blc-card-top,
.blc-insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.blc-card-top > span {
  font:
    italic 24px Georgia,
    serif;
  color: var(--blc-gold-500);
}
.blc-card-top small,
.blc-insight-meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--blc-gold-700);
}
.blc-service-card h3 {
  margin: 22px 0 8px;
  font:
    400 43px/1 Georgia,
    serif;
  color: var(--blc-petrol-800);
}
.blc-service-card > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blc-gold-700);
}
.blc-service-card > p {
  color: var(--blc-muted);
}
.blc-service-card > .blc-service-detail {
  margin: 4px 0 24px;
  padding: 16px 18px;
  border-left: 2px solid rgba(213, 173, 82, 0.75);
  border-radius: 0 12px 12px 0;
  background: rgba(246, 234, 208, 0.48);
  color: #43565d;
  line-height: 1.65;
}
.blc-service-card ul {
  padding-left: 20px;
  margin-bottom: 26px;
  color: #43565d;
}
.blc-service-card li::marker {
  color: var(--blc-gold-500);
}
.blc-price {
  margin-top: auto;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  border-top: 1px solid #e7ddca;
}
.blc-price span {
  font:
    700 25px Georgia,
    serif;
}
.blc-price small {
  text-align: right;
  color: var(--blc-muted);
}
.blc-btn--outline {
  width: 100%;
  margin-top: 19px;
  background: transparent !important;
  border: 1px solid var(--blc-gold-500) !important;
  color: var(--blc-petrol-800) !important;
}
.blc-btn--outline:hover {
  background: #f6ead0 !important;
}
.blc-price-note {
  text-align: center;
  color: var(--blc-muted);
  font-size: 14px;
  margin: 28px auto 0;
}
.blc-terms-section {
  padding: 30px max(24px, calc((100vw - 1160px) / 2)) 42px;
  background: var(--blc-petrol-900);
  color: var(--blc-cream-50);
}
.blc-booking-terms {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 24px;
  border-left: 2px solid var(--blc-gold-500);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.055);
}
.blc-booking-terms h3 {
  margin: 0 0 10px;
  font:
    700 18px/1.25 Georgia,
    serif;
  color: var(--blc-gold-300);
}
.blc-booking-terms p {
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 12px;
  line-height: 1.65;
}
.blc-booking-terms p:last-child {
  margin-bottom: 0;
}
.blc-insights {
  background: var(--blc-cream-50);
}
.blc-reviews {
  background: linear-gradient(
    180deg,
    var(--blc-cream-100),
    var(--blc-cream-50)
  );
}
.blc-review-placeholder {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 34px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(213, 173, 82, 0.45);
  border-radius: var(--blc-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--blc-shadow);
}
.blc-review-placeholder > span {
  color: var(--blc-gold-500);
  font:
    400 54px/0.8 Georgia,
    serif;
}
.blc-review-placeholder p {
  margin: 0;
  color: var(--blc-muted);
  font-style: italic;
}
.blc-insight-card {
  min-height: 330px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--blc-border);
  border-radius: var(--blc-radius);
  background: var(--blc-cream-100);
  box-shadow: var(--blc-shadow);
}
.blc-insight-card--dark {
  background: linear-gradient(
    145deg,
    var(--blc-petrol-700),
    var(--blc-petrol-900)
  );
  color: var(--blc-cream-50);
  border-color: rgba(213, 173, 82, 0.4);
}
.blc-insight-card--dark .blc-insight-meta {
  color: var(--blc-gold-300);
}
.blc-insight-card h3 {
  margin: 32px 0 16px;
  font:
    400 35px/1.18 Georgia,
    serif;
}
.blc-insight-card p {
  margin: 0 0 28px;
  color: var(--blc-muted);
}
.blc-insight-card--dark p {
  color: rgba(255, 253, 248, 0.8);
}
.blc-insight-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--blc-gold-500);
  font-weight: 800;
}
.blc-insight-card > a:hover {
  color: var(--blc-gold-300);
}
.blc-application {
  padding: 100px max(24px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  background: linear-gradient(
    145deg,
    var(--blc-petrol-700),
    var(--blc-petrol-900)
  );
  color: var(--blc-cream-50);
}
.blc-application-copy {
  align-self: start;
}
.blc-application-copy h2 {
  margin: 0;
  font:
    400 clamp(41px, 5vw, 62px)/1.08 Georgia,
    serif;
}
.blc-application-copy > p {
  font-size: 18px;
  color: rgba(255, 253, 248, 0.78);
}
.blc-application-copy blockquote {
  margin: 35px 0 0;
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--blc-gold-500);
  font:
    italic 20px/1.6 Georgia,
    serif;
  color: var(--blc-gold-300);
}
.blc-interest-form {
  padding: 38px;
  border-radius: 30px;
  background: var(--blc-cream-50);
  color: var(--blc-text);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.blc-interest-form fieldset {
  border: 0;
  margin: 0 0 32px;
  padding: 0;
}
.blc-interest-form legend {
  font:
    700 23px Georgia,
    serif;
  margin-bottom: 16px;
}
.blc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.blc-field-row label,
.blc-textarea-label {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blc-interest-form input[type="text"],
.blc-interest-form input[type="email"],
.blc-interest-form input[type="tel"],
.blc-interest-form select,
.blc-interest-form textarea {
  width: 100%;
  border: 1px solid #ded3bf;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--blc-text);
  font: inherit;
}
.blc-interest-form textarea {
  resize: vertical;
}
.blc-option-grid,
.blc-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.blc-option-grid label,
.blc-check-grid label {
  cursor: pointer;
}
.blc-option-grid input,
.blc-check-grid input {
  position: absolute;
  opacity: 0;
}
.blc-option-grid label > span,
.blc-check-grid label > span {
  display: flex;
  flex-direction: column;
  padding: 15px 17px;
  border: 1px solid #ded3bf;
  border-radius: 15px;
  background: #fff;
  transition: 0.18s;
}
.blc-option-grid small {
  margin-top: 3px;
  color: var(--blc-muted);
}
.blc-option-grid input:checked + span,
.blc-check-grid input:checked + span {
  border-color: var(--blc-gold-500);
  background: #f8edcf;
  box-shadow: inset 0 0 0 1px var(--blc-gold-500);
}
.blc-wide {
  grid-column: 1/-1;
}
.blc-time-grid {
  grid-template-columns: repeat(5, 1fr);
}
.blc-time-grid span {
  text-align: center;
}
.blc-field-help {
  margin: -10px 0 15px;
  color: var(--blc-muted);
  font-size: 14px;
}
.blc-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 20px;
  color: #53646a;
  font-size: 14px;
  cursor: pointer;
}

.blc-privacy-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.65;
}
.blc-consent input {
  margin-top: 5px;
  accent-color: var(--blc-gold-500);
}
.blc-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
}
.blc-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}
.blc-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--blc-muted);
}
.blc-form-status {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--blc-gold-500);
  background: #fbf2dc;
  border-radius: 16px;
}
.blc-form-status.is-error {
  border-color: #a34d45;
  background: #fbe9e6;
}
@media (max-width: 900px) {
  .blc-service-grid,
  .blc-insight-grid,
  .blc-application {
    grid-template-columns: 1fr;
  }
  .blc-application {
    gap: 40px;
  }
  .blc-interest-form {
    padding: 25px;
  }
  .blc-field-row,
  .blc-option-grid,
  .blc-check-grid {
    grid-template-columns: 1fr;
  }
  .blc-time-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blc-wide {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  .blc-coaching-foundation {
    padding: 22px;
    gap: 15px;
  }
  .blc-foundation-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
  .blc-service-card,
  .blc-insight-card {
    padding: 27px;
  }
  .blc-service-card h3 {
    font-size: 38px;
  }
  .blc-insight-card h3 {
    font-size: 30px;
  }
  .blc-insight-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .blc-price {
    align-items: flex-start;
    flex-direction: column;
  }
  .blc-price small {
    text-align: left;
  }
  .blc-application {
    padding: 75px 20px;
  }
  .blc-interest-form {
    padding: 21px 17px;
    border-radius: 22px;
  }
}
