@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew-900-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew-900-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #071c27;
  --ink-2: #0b2a38;
  --ink-3: #123847;
  --gold: #c99b4d;
  --gold-light: #f0d89f;
  --cream: #f7f2e8;
  --paper: #fffcf6;
  --mist: #e8eeec;
  --teal: #1d6c6c;
  --text: #18323d;
  --muted: #667b82;
  --border: rgba(7, 28, 39, 0.13);
  --shadow: 0 24px 70px rgba(7, 28, 39, 0.13);
  --radius: 28px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open,
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
}
svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  color: #fff;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    height 0.25s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(6, 27, 38, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  border-radius: 15px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-copy strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}
.brand-copy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 22px);
  font-size: 0.92rem;
  white-space: nowrap;
}
.main-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  left: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-light);
  transition: left 0.25s;
}
.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: #fff;
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  left: 0;
}
.nav-cta {
  padding: 10px 19px;
  border: 1px solid rgba(240, 216, 159, 0.7);
  border-radius: 999px;
  color: var(--gold-light) !important;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink) !important;
}
.nav-more {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
.nav-more summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.nav-more summary::-webkit-details-marker {
  display: none;
}
.nav-more summary::after {
  content: "⌄";
  color: var(--gold-light);
  font-size: 0.82rem;
  transition: transform 0.2s;
}
.nav-more[open] summary::after {
  transform: rotate(180deg);
}
.nav-more summary:hover,
.nav-more summary:focus-visible {
  color: #fff;
}
.nav-more-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 50%;
  z-index: 110;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(240, 216, 159, 0.22);
  border-radius: 16px;
  background: rgba(6, 27, 38, 0.985);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateX(50%);
}
.nav-more-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}
.nav-more-menu a:hover,
.nav-more-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.menu-lines {
  display: block;
}
.menu-lines i {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  margin: 5px 0;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.menu-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 800px;
  height: min(920px, 100vh);
  padding: 142px 0 86px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 17% 15%,
      rgba(38, 110, 111, 0.42),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 38%,
      rgba(201, 155, 77, 0.15),
      transparent 22%
    ),
    linear-gradient(125deg, #061923 0%, #0a2a37 53%, #061a25 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -260px;
  bottom: -300px;
  border: 1px solid rgba(240, 216, 159, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(240, 216, 159, 0.025),
    0 0 0 160px rgba(240, 216, 159, 0.02);
}
.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: #92712f;
  justify-content: center;
}
.hero h1,
.section-heading h2,
.about-copy h2,
.booking-copy h2,
.book-copy h2 {
  margin: 0;
  font-family: "Rubik", sans-serif;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero h1 {
  font-size: clamp(3.3rem, 5.5vw, 6.25rem);
  font-weight: 700;
}
.hero h1 em,
.section-heading h2 em,
.about-copy h2 em,
.booking-copy h2 em {
  color: var(--gold-light);
  font-style: normal;
}
.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: 1.17rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 13px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-gold {
  color: #162a30;
  background: linear-gradient(135deg, #f1dba8, #c99b4d);
  box-shadow: 0 14px 30px rgba(201, 155, 77, 0.22);
}
.button-gold:hover {
  box-shadow: 0 18px 38px rgba(201, 155, 77, 0.35);
}
.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}
.button-counseling {
  min-height: auto;
  padding: 0 3px 5px;
  border-radius: 0;
  border-bottom: 1px solid rgba(240, 216, 159, 0.65);
  color: var(--gold-light);
  background: transparent;
  box-shadow: none;
  font-size: 0.85rem;
}
.button-counseling:hover {
  box-shadow: none;
}
.play-dot {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.play-dot svg {
  width: 15px;
  fill: currentColor;
  stroke: none;
}
.hero-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 41px;
}
.signature-line {
  width: 47px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}
.hero-signature div {
  display: flex;
  flex-direction: column;
}
.hero-signature strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.15rem;
}
.hero-signature small {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.77rem;
}
.hero-visual {
  position: relative;
  height: 565px;
}
.stage-card {
  position: absolute;
  inset: 10px 5px 35px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 180px 180px 28px 28px;
  background:
    radial-gradient(
      ellipse at 50% 9%,
      rgba(244, 215, 153, 0.35),
      transparent 38%
    ),
    linear-gradient(to bottom, #133b48 0%, #081a24 72%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
}
.stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  opacity: 0.4;
}
.stage-light {
  position: absolute;
  top: -65px;
  width: 150px;
  height: 490px;
  background: linear-gradient(
    to bottom,
    rgba(255, 239, 198, 0.29),
    transparent 80%
  );
  filter: blur(5px);
  clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
  transform-origin: top;
}
.stage-light-one {
  right: 80px;
  transform: rotate(-8deg);
}
.stage-light-two {
  left: 70px;
  transform: rotate(9deg);
  opacity: 0.65;
}
.stage-platform {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 102px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(229, 195, 119, 0.35),
    transparent 68%
  );
  border-top: 1px solid rgba(244, 215, 153, 0.18);
}
.speaker-mark {
  position: absolute;
  left: 50%;
  bottom: 130px;
  width: 76px;
  height: 160px;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 8px rgba(0, 0, 0, 0.45));
}
.speaker-head {
  position: absolute;
  top: 0;
  right: 22px;
  width: 34px;
  height: 38px;
  border-radius: 50%;
  background: #061720;
}
.speaker-body {
  position: absolute;
  top: 32px;
  right: 9px;
  width: 58px;
  height: 116px;
  border-radius: 24px 24px 6px 6px;
  background: linear-gradient(to right, #071923, #0c2732);
  clip-path: polygon(19% 0, 82% 0, 100% 100%, 0 100%);
}
.audience {
  position: absolute;
  bottom: -23px;
  border-radius: 50% 50% 0 0;
  background: #040e14;
  box-shadow: 0 -20px 35px rgba(0, 0, 0, 0.45);
}
.audience-one {
  right: -25px;
  width: 190px;
  height: 121px;
  transform: rotate(8deg);
}
.audience-two {
  left: 24%;
  width: 155px;
  height: 98px;
}
.audience-three {
  left: -42px;
  width: 210px;
  height: 127px;
  transform: rotate(-9deg);
}
.stage-quote {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 1.32rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.67);
}
.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 225px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #fff;
  background: rgba(9, 32, 43, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(13px);
}
.floating-note > div {
  display: flex;
  flex-direction: column;
}
.floating-note strong {
  font-size: 0.91rem;
}
.floating-note small {
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.72rem;
}
.floating-note-top {
  top: 67px;
  right: -47px;
}
.floating-note-bottom {
  left: -32px;
  bottom: 66px;
}
.note-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--gold-light);
}
.note-number {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 2.15rem;
  line-height: 1;
  color: var(--gold-light);
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 23px;
  width: 25px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 30px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.topic-ribbon {
  position: relative;
  z-index: 1;
  height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #16313b;
  background: var(--gold-light);
}
.ribbon-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: "Rubik", sans-serif;
  font-size: 1.08rem;
  animation: ribbon 28s linear infinite;
}
.ribbon-track i {
  color: #9b7334;
  font-size: 0.55rem;
  font-style: normal;
}
@keyframes ribbon {
  to {
    transform: translateX(40%);
  }
}

.section-heading {
  margin-bottom: 52px;
}
.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.section-heading h2,
.about-copy h2,
.booking-copy h2 {
  color: var(--ink);
  font-size: clamp(2.65rem, 4.5vw, 4.65rem);
}
.section-heading h2 em {
  color: #9b7537;
}
.section-heading > p:last-child {
  max-width: 650px;
  margin: 21px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.lectures-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(224, 153, 93, 0.15),
      transparent 24%
    ),
    linear-gradient(180deg, #fbfaf7, #f1ece3 72%, #fbfaf7);
}
.lectures-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -290px;
  top: 190px;
  border: 1px solid rgba(201, 155, 77, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201, 155, 77, 0.03);
}
.lecture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lecture-card {
  position: relative;
  min-height: 505px;
  padding: 190px 26px 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 45px rgba(7, 28, 39, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.lecture-card-photo {
  position: absolute;
  inset: 0 0 auto;
  height: 165px;
  background:
    linear-gradient(to top, rgba(7, 28, 39, 0.75), transparent 60%),
    var(--lecture-image) center/cover;
  transition: transform 0.5s ease;
}
.lecture-card:hover .lecture-card-photo {
  transform: scale(1.035);
}
.lecture-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 155, 77, 0.5);
  box-shadow: 0 22px 48px rgba(7, 28, 39, 0.1);
}
.lecture-card.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(155deg, var(--ink-3), var(--ink));
}
.lecture-card.featured::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -115px;
  bottom: -140px;
  border: 1px solid rgba(240, 216, 159, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(240, 216, 159, 0.035);
}
.card-number {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 22px;
  font-family: "Rubik", sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}
.featured .card-number {
  color: rgba(255, 255, 255, 0.4);
}
.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 29px;
  border-radius: 16px;
  color: #956f2f;
  background: #f1e6d0;
}
.featured .card-icon {
  color: var(--gold-light);
  background: rgba(240, 216, 159, 0.12);
}
.card-icon svg {
  width: 31px;
  height: 31px;
}
.card-label,
.article-tag {
  display: block;
  margin-bottom: 10px;
  color: #987130;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.featured .card-label {
  color: var(--gold-light);
}
.lecture-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.75rem;
  line-height: 1.12;
}
.lecture-card.featured h3 {
  color: #fff;
}
.lecture-card p {
  margin: 17px 0 25px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.lecture-card.featured p {
  color: rgba(255, 255, 255, 0.62);
}
.text-link,
.article-open {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #85652e;
  background: none;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}
.lecture-actions {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 16px;
}
.lecture-actions .text-link {
  margin-top: 0;
}
.lecture-actions .course-register {
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
}
.featured .text-link {
  color: var(--gold-light);
}
.text-link span,
.article-open span,
.outline-link span,
.custom-lecture a span {
  transition: transform 0.2s;
}
.text-link:hover span,
.article-open:hover span,
.outline-link:hover span,
.custom-lecture a:hover span {
  transform: translateX(-4px);
}
.custom-lecture {
  margin-top: 20px;
  padding: 21px 27px;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(201, 155, 77, 0.26);
  border-radius: 18px;
  background: #f7efdf;
}
.custom-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--ink-2);
}
.custom-lecture > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.custom-lecture strong {
  color: var(--ink);
}
.custom-lecture span {
  color: var(--muted);
  font-size: 0.87rem;
}
.custom-lecture a {
  margin-right: auto;
  display: flex;
  gap: 7px;
  color: #80612d;
  font-size: 0.88rem;
  font-weight: 800;
}
.seminar-gallery {
  margin: 28px 0 30px;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  grid-template-rows: 210px 120px;
  gap: 12px;
}
.seminar-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}
.seminar-gallery-main {
  grid-row: 1/3;
}
.seminar-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.seminar-gallery figure:hover img {
  transform: scale(1.025);
}
.gallery-caption {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #b87b4c, #d9a15f);
}
.gallery-caption strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}
.gallery-caption span {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}
.lecture-tags a {
  padding: 8px 12px;
  border: 1px solid rgba(7, 28, 39, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  transition: 0.2s;
}
.lecture-tags a:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}
.direct-consultation {
  margin-top: 22px;
  padding: 18px 21px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 16px;
  align-items: center;
  border: 1px solid rgba(201, 155, 77, 0.25);
  border-radius: 17px;
  background: #fff8eb;
}
.direct-consultation span {
  grid-row: 1/3;
  color: #9a7435;
  font-size: 0.75rem;
  font-weight: 800;
}
.direct-consultation a {
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}
.direct-consultation small {
  color: var(--muted);
}

.about-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(
    30deg,
    transparent 48%,
    rgba(255, 255, 255, 0.04) 49%,
    rgba(255, 255, 255, 0.04) 51%,
    transparent 52%
  );
  background-size: 44px 44px;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: center;
}
.about-art {
  position: relative;
  min-height: 570px;
}
.portrait-frame {
  position: absolute;
  inset: 15px 42px 54px 0;
  padding: 1px;
  border-radius: 210px 210px 24px 24px;
  background: linear-gradient(
    to bottom,
    rgba(240, 216, 159, 0.8),
    rgba(255, 255, 255, 0.08)
  );
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 25%, #386474, #102f3b 55%, #071b25);
}
.portrait-placeholder::before {
  content: "";
  position: absolute;
  top: 8%;
  width: 150px;
  height: 270px;
  background: linear-gradient(
    to bottom,
    rgba(240, 216, 159, 0.15),
    transparent
  );
  filter: blur(30px);
  transform: rotate(14deg);
}
.portrait-placeholder img {
  width: 118px;
  height: 118px;
  opacity: 0.62;
  filter: grayscale(1);
}
.portrait-placeholder span {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
}
.about-quote {
  position: absolute;
  z-index: 2;
  left: -27px;
  bottom: 17px;
  padding: 23px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  font-family: "Rubik", sans-serif;
  font-size: 1.22rem;
  line-height: 1.45;
  color: #fff;
  background: rgba(12, 44, 56, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.about-ring {
  position: absolute;
  border: 1px solid rgba(240, 216, 159, 0.16);
  border-radius: 50%;
}
.ring-one {
  width: 190px;
  height: 190px;
  left: -95px;
  top: -32px;
}
.ring-two {
  width: 115px;
  height: 115px;
  left: -57px;
  top: 6px;
}
.about-copy h2,
.booking-copy h2 {
  color: #fff;
}
.about-copy h2 em,
.booking-copy h2 em {
  color: var(--gold-light);
}
.about-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}
.about-copy .about-lead {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  line-height: 1.7;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 34px;
}
.about-highlights div {
  padding-right: 14px;
  border-right: 1px solid rgba(240, 216, 159, 0.32);
}
.about-highlights strong,
.about-highlights span {
  display: block;
}
.about-highlights strong {
  color: var(--gold-light);
}
.about-highlights span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
}

.audiences-section {
  background: #f2ede4;
}
.audiences-section .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.audiences-section .eyebrow {
  justify-content: flex-start;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.audience-card {
  min-height: 215px;
  padding: 25px;
  border: 1px solid rgba(7, 28, 39, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}
.audience-card > span {
  color: #a18146;
  font-family: "Rubik", sans-serif;
  font-size: 0.83rem;
}
.audience-card h3 {
  margin: 38px 0 7px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
}
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.videos-section {
  color: #fff;
  background: linear-gradient(145deg, #0d3240, #061a24);
}
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.split-heading h2 {
  color: #fff;
}
.outline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.87rem;
}
.video-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 216, 159, 0.4);
}
.video-thumb {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: #183b48;
}
.video-card-main .video-thumb {
  height: 285px;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 15, 21, 0.55), transparent 55%);
}
.video-thumb-love {
  background:
    radial-gradient(
      circle at 36% 38%,
      rgba(241, 219, 168, 0.62),
      transparent 9%
    ),
    radial-gradient(
      circle at 65% 48%,
      rgba(201, 155, 77, 0.32),
      transparent 24%
    ),
    linear-gradient(125deg, #46727a, #112e3b 65%);
}
.video-thumb-faith {
  background:
    radial-gradient(
      circle at 28% 35%,
      rgba(240, 216, 159, 0.45),
      transparent 20%
    ),
    linear-gradient(150deg, #235960, #0b2733);
}
.video-thumb-heart {
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(212, 170, 88, 0.25),
      transparent 28%
    ),
    linear-gradient(135deg, #253a51, #101d2b);
}
.thumb-lines {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 31%;
  display: flex;
  gap: 19px;
  transform: perspective(300px) rotateX(58deg);
}
.thumb-lines i {
  flex: 1;
  height: 94px;
  border: 1px solid rgba(240, 216, 159, 0.24);
  background: linear-gradient(to top, rgba(240, 216, 159, 0.2), transparent);
}
.orb {
  position: absolute;
  display: block;
  border: 1px solid rgba(240, 216, 159, 0.25);
  border-radius: 50%;
}
.orb-one {
  width: 130px;
  height: 130px;
  left: 23%;
  top: 20%;
  box-shadow: 0 0 0 26px rgba(240, 216, 159, 0.035);
}
.orb-two {
  width: 46px;
  height: 46px;
  right: 18%;
  bottom: 17%;
  background: rgba(240, 216, 159, 0.09);
}
.heart-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(240, 216, 159, 0.52);
  font-family: serif;
  font-size: 8rem;
  line-height: 1;
}
.video-category {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(6, 26, 36, 0.5);
  font-size: 0.67rem;
  backdrop-filter: blur(8px);
}
.video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-play svg {
  width: 22px;
  fill: currentColor;
  stroke: none;
}
.video-body {
  padding: 20px 21px 23px;
}
.video-body time {
  color: var(--gold-light);
  font-size: 0.69rem;
}
.video-body h3 {
  margin: 5px 0 7px;
  font-family: "Rubik", sans-serif;
  font-size: 1.48rem;
  line-height: 1.2;
}
.video-card-main .video-body h3 {
  font-size: 1.75rem;
}
.video-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}
.sync-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.77rem;
  text-align: center;
}
.facebook-feed {
  margin-top: 33px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.facebook-feed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}
.facebook-feed-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.facebook-feed-heading span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  background: #1877f2;
}
.facebook-feed-heading small {
  color: rgba(255, 255, 255, 0.42);
}
.facebook-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.facebook-post {
  min-height: 155px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.04);
}
.facebook-post p {
  margin: 0 0 17px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.84rem;
}
.facebook-post time {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

.articles-section {
  background: var(--paper);
}
.articles-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 35px;
}
.articles-heading .section-heading {
  max-width: 760px;
  margin: 0;
}
.articles-heading-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
}
.articles-all {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.articles-all-button {
  min-width: min(100%, 360px);
  justify-content: center;
  padding-inline: 30px;
  box-shadow: 0 14px 34px rgba(157, 113, 32, 0.2);
}
.article-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -18px 0 35px;
}
.filter-button {
  padding: 8px 19px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}
.filter-button:hover,
.filter-button.active {
  border-color: var(--ink-2);
  color: #fff;
  background: var(--ink-2);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.article-card.filtered-out {
  display: none;
}
.article-visual {
  position: relative;
  height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.article-visual span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Rubik", sans-serif;
  font-size: 3.1rem;
}
.article-visual i {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 31px rgba(255, 255, 255, 0.035),
    0 0 0 63px rgba(255, 255, 255, 0.025);
}
.article-visual-one {
  background: linear-gradient(145deg, #785b57, #263a42);
}
.article-visual-two {
  background: linear-gradient(145deg, #bd9554, #275863);
}
.article-visual-three {
  background: linear-gradient(145deg, #416c71, #1e3444);
}
.article-visual-four {
  background: linear-gradient(145deg, #805b62, #243a46);
}
.article-visual-five {
  background: linear-gradient(145deg, #a37d43, #174a52);
}
.article-visual-six {
  background: linear-gradient(145deg, #526780, #19333f);
}
.article-body {
  padding: 24px 24px 26px;
}
.article-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
.article-body p {
  min-height: 67px;
  margin: 13px 0 23px;
  color: var(--muted);
  font-size: 0.87rem;
}
.article-open {
  color: #88682f;
}
.card-stretched-link {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
}
.card-stretched-link:focus-visible {
  outline: 4px solid #c99b4d;
  outline-offset: -5px;
}
.article-card .article-body,
.article-card .article-visual {
  pointer-events: none;
}
.article-card .card-action {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #0b3441;
  box-shadow: 0 10px 24px rgba(7, 28, 39, 0.16);
  font-weight: 850;
}
.article-card:hover .card-action {
  background: #a87a2c;
}
.heading-link {
  display: inline;
  color: inherit;
  text-decoration: none;
}
.heading-link:hover,
.heading-link:focus-visible {
  color: #b88735;
}
.clickable-visual {
  display: block;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.clickable-visual:hover {
  transform: translateY(-5px);
  filter: brightness(1.04);
}
.clickable-visual:focus-visible,
.heading-link:focus-visible {
  outline: 3px solid #c99b4d;
  outline-offset: 6px;
}
.button-outline-dark {
  border: 1px solid rgba(7, 28, 39, 0.28);
  color: var(--ink);
  background: transparent;
}
.button-outline-dark:hover {
  color: #fff;
  background: var(--ink);
}

.book-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #163943;
}
.book-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(240, 216, 159, 0.12),
    transparent 40%
  );
}
.book-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.book-mockup {
  position: relative;
  height: 440px;
  perspective: 900px;
}
.book-promo-home {
  position: relative;
  align-self: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(239, 212, 142, 0.34);
  border-radius: 26px;
  background: rgba(4, 27, 36, 0.62);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
}
.book-promo-home video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: #061c25;
  object-fit: cover;
}
.book-promo-home-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 13px 16px;
  border-radius: 14px;
  color: #082632;
  background: var(--gold-light);
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.book-promo-home-link:hover {
  transform: translateY(-2px);
  background: #fff0ba;
}
.book-cover {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 70px;
  width: 265px;
  height: 402px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  background: #fffdf6;
  box-shadow: -26px 30px 45px rgba(0, 0, 0, 0.32);
  transform: rotateY(-13deg) rotateZ(2deg);
  transform-origin: right;
}
.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 155, 77, 0.35);
  margin: 12px;
}
.book-cover small {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  font-size: 0.72rem;
}
.book-symbol {
  position: relative;
  width: 105px;
  height: 92px;
  margin: 46px 0 22px;
}
.book-symbol span {
  position: absolute;
  top: 0;
  width: 52px;
  height: 80px;
  border: 2px solid var(--gold);
}
.book-symbol span:first-child {
  right: 7px;
  border-radius: 45px 45px 5px 45px;
  transform: rotate(-20deg);
}
.book-symbol span:last-child {
  left: 7px;
  border-radius: 45px 45px 45px 5px;
  transform: rotate(20deg);
}
.book-cover h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 2.6rem;
  line-height: 0.83;
}
.book-cover p {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 0.69rem;
}
.book-pages {
  position: absolute;
  top: 16px;
  right: 59px;
  width: 260px;
  height: 402px;
  background: repeating-linear-gradient(
    to left,
    #eee9dd 0 1px,
    #fffdf6 1px 3px
  );
  box-shadow: -15px 24px 20px rgba(0, 0, 0, 0.18);
  transform: rotateY(-13deg) rotateZ(2deg) translateZ(-13px);
}
.book-copy h2 {
  color: #fff;
  font-size: clamp(3.1rem, 5vw, 5rem);
}
.book-subtitle {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}
.book-copy blockquote {
  max-width: 600px;
  margin: 27px 0 28px;
  padding: 22px 24px 22px 0;
  border-right: 2px solid var(--gold-light);
  color: var(--gold-light);
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
  line-height: 1.5;
}
.outline-link.light {
  color: #fff;
}

.counseling-section {
  position: relative;
  overflow: hidden;
  background: #f2ede4;
}
.counseling-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -330px;
  top: -280px;
  border: 1px solid rgba(201, 155, 77, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(201, 155, 77, 0.028);
}
.counseling-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 84px;
  align-items: center;
}
.counseling-copy .eyebrow {
  justify-content: flex-start;
}
.counseling-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.counseling-copy h2 em {
  color: #987333;
  font-style: normal;
}
.counseling-lead {
  max-width: 590px;
  margin: 25px 0 29px;
  color: #516a72;
  font-size: 1.05rem;
}
.counseling-points {
  display: grid;
  gap: 11px;
}
.counseling-points > div {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(7, 28, 39, 0.09);
}
.counseling-points > div > span {
  color: #a27b37;
  font-family: "Rubik", sans-serif;
  font-size: 0.82rem;
}
.counseling-points p {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.counseling-points strong {
  color: var(--ink);
  font-size: 0.91rem;
}
.counseling-points small {
  color: var(--muted);
}
.meeting-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.meeting-options div {
  padding: 16px;
  display: grid;
  grid-template-columns: 37px 1fr;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}
.meeting-options svg {
  width: 27px;
  height: 27px;
  grid-row: 1 / 3;
  color: #9a7433;
}
.meeting-options strong,
.meeting-options span {
  display: block;
}
.meeting-options strong {
  color: var(--ink);
  font-size: 0.83rem;
}
.meeting-options span {
  color: var(--muted);
  font-size: 0.68rem;
}
.consultation-form {
  color: #fff;
  background: linear-gradient(145deg, var(--ink-2), var(--ink));
}
.privacy-note {
  margin: -7px 0 22px;
  padding: 11px 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(240, 216, 159, 0.17);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.53);
  background: rgba(240, 216, 159, 0.055);
  font-size: 0.72rem;
}
.privacy-note span {
  color: var(--gold-light);
  font-weight: 800;
}

.booking-section {
  color: #fff;
  background: linear-gradient(135deg, #071b25, #0d3441);
}
.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 85px;
  align-items: start;
}
.event-type-grid {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.event-type-grid button {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-align: right;
  cursor: pointer;
  transition: 0.2s;
}
.event-type-grid button:hover,
.event-type-grid button.selected {
  border-color: var(--gold-light);
  background: rgba(240, 216, 159, 0.12);
  transform: translateY(-2px);
}
.event-type-grid strong,
.event-type-grid span {
  display: block;
}
.event-type-grid strong {
  font-size: 0.86rem;
}
.event-type-grid span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}
.booking-copy {
  position: sticky;
  top: 115px;
}
.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}
.booking-steps {
  margin: 36px 0 34px;
  padding: 0;
  list-style: none;
}
.booking-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 27px;
}
.booking-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 43px;
  bottom: 5px;
  width: 1px;
  background: rgba(240, 216, 159, 0.22);
}
.booking-steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(240, 216, 159, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Rubik", sans-serif;
}
.booking-steps div {
  display: flex;
  flex-direction: column;
}
.booking-steps small {
  color: rgba(255, 255, 255, 0.46);
}
.contact-placeholder {
  padding: 16px 19px;
  display: flex;
  flex-direction: column;
  border: 1px dashed rgba(240, 216, 159, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}
.contact-placeholder span {
  color: var(--gold-light);
  font-size: 0.75rem;
}
.contact-placeholder strong {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}
.booking-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
.booking-form.reveal {
  opacity: 1;
  transform: none;
}
.consultation-form {
  color: #fff;
  background: linear-gradient(145deg, #123b49, #061b25);
}
.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 27px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.form-heading span {
  font-family: "Rubik", sans-serif;
  font-size: 1.55rem;
}
.form-heading small {
  color: rgba(255, 255, 255, 0.4);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: rgba(4, 18, 25, 0.32);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input,
.field select {
  height: 49px;
  padding: 0 13px;
}
.field textarea {
  resize: vertical;
  padding: 12px 13px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.field select {
  color-scheme: dark;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-light);
  background: rgba(4, 18, 25, 0.5);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #e99f88;
}
.field-full {
  grid-column: 1 / -1;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 19px 0 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  cursor: pointer;
}
.consent input {
  margin-top: 5px;
  accent-color: var(--gold);
}
.form-submit {
  width: 100%;
}
.consultation-submit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.consultation-submit-actions .button {
  width: 100%;
  min-height: 50px;
  font: inherit;
}
.form-submit-whatsapp {
  border-color: #70d39a;
  background: #167b49;
}
.form-submit-whatsapp:hover {
  background: #11653c;
}
.dual-send-note {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}
.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  text-align: center;
  color: #efb3a1;
  font-size: 0.8rem;
}
.form-status a {
  color: var(--gold-light);
  text-decoration: underline;
}
.form-submit:disabled {
  opacity: 0.58;
  cursor: wait;
}
.form-contact-options {
  margin-top: 16px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.form-contact-options > span {
  grid-column: 1/-1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  text-align: center;
}
.form-contact-options a {
  min-height: 43px;
  padding: 9px 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 216, 159, 0.28);
  border-radius: 12px;
  color: #f2dca6;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transition: 0.2s ease;
}
.form-contact-options a:hover {
  border-color: var(--gold-light);
  background: rgba(240, 216, 159, 0.12);
}

.site-footer {
  color: #fff;
  background: #04131a;
}
.footer-main {
  padding: 63px 0 47px;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1fr;
  gap: 55px;
}
.footer-brand {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px 13px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
  grid-row: 1;
}
.footer-brand > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-brand strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.25rem;
}
.footer-brand span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}
.footer-brand p {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.86rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links strong,
.footer-cta strong {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.86rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.footer-cta .button {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 0.78rem;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.footer-text-link {
  color: var(--gold-light);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(240, 216, 159, 0.35);
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
}

dialog {
  color: var(--text);
}
.book-promo-home {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(260px, 1.28fr);
  gap: 18px;
  align-items: center;
}
.book-cover-home {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #08212c;
  box-shadow: 0 22px 55px rgba(4, 22, 30, 0.18);
}
.book-cover-home img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.book-cover-home span {
  position: absolute;
  right: 12px;
  left: 12px;
  bottom: 12px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(7, 28, 39, 0.92);
  color: #f4d98f;
  text-align: center;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}
.book-promo-home video {
  width: 100%;
  border-radius: 22px;
}
.book-promo-home-link {
  grid-column: 1/-1;
}
.lite-youtube-fallback {
  position: absolute;
  z-index: 3;
  right: 12px;
  left: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(7, 28, 39, 0.9);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.2s ease;
}
.lite-youtube:hover .lite-youtube-fallback,
.lite-youtube:focus-within .lite-youtube-fallback {
  opacity: 1;
  transform: none;
}
.lite-youtube.is-playing .lite-youtube-fallback {
  display: none;
}
@media (max-width: 760px) {
  .book-promo-home {
    grid-template-columns: 1fr;
  }
  .book-cover-home {
    width: min(76vw, 330px);
    margin-inline: auto;
  }
  .book-promo-home-link {
    grid-column: auto;
  }
  .lite-youtube-fallback {
    opacity: 1;
    transform: none;
    font-size: 0.68rem;
  }
}
dialog::backdrop {
  background: rgba(3, 15, 21, 0.78);
  backdrop-filter: blur(5px);
}
.article-dialog,
.request-dialog {
  width: min(680px, calc(100% - 30px));
  max-height: 86vh;
  padding: 42px;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.short-dialog {
  width: min(470px, calc(100% - 24px));
  padding: 18px;
  border: 0;
  border-radius: 26px;
  background: #071d27;
  color: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
  overflow: visible;
}
.short-dialog .dialog-close {
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: #071d27;
}
.short-player {
  width: min(100%, 390px);
  aspect-ratio: 9/16;
  margin-inline: auto;
  border-radius: 19px;
  overflow: hidden;
  background: #000;
}
.short-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.short-dialog-copy {
  padding: 17px 10px 5px;
  text-align: center;
}
.short-dialog-copy h2 {
  margin: 0 0 5px;
  font-family: "Rubik", sans-serif;
  font-size: 1.35rem;
}
.short-dialog-copy p {
  margin: 0 0 9px;
  color: #bfd0d6;
}
.short-dialog-copy a {
  color: #e9c979;
  font-weight: 700;
}
.shorts-grid .video-card {
  cursor: pointer;
}
.dialog-close {
  position: absolute;
  top: 13px;
  left: 15px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: #eee9de;
  font-size: 1.55rem;
  cursor: pointer;
}
.dialog-tag {
  display: block;
  margin-bottom: 8px;
  color: #987130;
  font-size: 0.73rem;
  font-weight: 800;
}
.article-dialog h2,
.request-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.dialog-content {
  margin-top: 23px;
  color: #405861;
}
.dialog-content p:first-child {
  font-size: 1.08rem;
  color: var(--ink);
}
.request-dialog {
  text-align: center;
}
.success-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 1.65rem;
}
.request-dialog > p {
  color: var(--muted);
}
#request-summary {
  width: 100%;
  padding: 14px;
  margin: 13px 0 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: #f0ece4;
  resize: none;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Real brand and media assets */
.brand .brand-logo {
  width: 62px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.24));
}
.hero-portrait-card {
  position: absolute;
  inset: 8px 5px 32px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 190px 190px 30px 30px;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(240, 216, 159, 0.27),
      transparent 35%
    ),
    linear-gradient(160deg, #174554, #071b25 72%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
}
.hero-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(4, 18, 25, 0.92), transparent 33%);
  pointer-events: none;
}
.portrait-halo {
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(240, 216, 159, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(240, 216, 159, 0.025),
    0 0 0 110px rgba(240, 216, 159, 0.018);
  transform: translateX(-50%);
}
.hero-portrait-card img {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: auto;
  height: 94%;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.35));
}
.hero-portrait-card p {
  position: absolute;
  z-index: 4;
  right: 35px;
  left: 35px;
  bottom: 25px;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Rubik", sans-serif;
  font-size: 1.15rem;
}
.portrait-placeholder::before {
  display: none;
}
.portrait-placeholder .about-photo {
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: none;
  object-fit: cover;
  object-position: center;
}
.youtube-thumb {
  background-image:
    linear-gradient(to top, rgba(3, 15, 21, 0.62), transparent 57%),
    var(--thumb);
  background-size: cover;
  background-position: center;
}
.book-mockup {
  height: 500px;
  display: grid;
  place-items: center;
  perspective: none;
}
.book-real-cover {
  width: auto;
  height: 470px;
  max-width: 100%;
  border-radius: 5px;
  object-fit: contain;
  transform: rotate(-2deg);
  box-shadow:
    -24px 30px 45px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(240, 216, 159, 0.2);
}
.counseling-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 24px;
}
.counseling-scope span {
  padding: 7px 12px;
  border: 1px solid rgba(7, 28, 39, 0.11);
  border-radius: 999px;
  color: #5d737a;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}
.short-process-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-right: 3px solid var(--gold);
  color: #526a72;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.85rem;
}
.consultation-price {
  margin: -4px 0 20px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(240, 216, 159, 0.22);
  border-radius: 13px;
  background: rgba(240, 216, 159, 0.07);
}
.consultation-price strong {
  color: var(--gold-light);
  font-family: "Rubik", sans-serif;
  font-size: 1.55rem;
}
.consultation-price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}
.counseling-faq {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: -38px;
}
.counseling-faq details {
  padding: 17px 18px;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.56);
}
.counseling-faq summary {
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.counseling-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.counseling-free-guide {
  margin: 24px 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 19px;
  align-items: center;
  border: 1px solid rgba(201, 155, 77, 0.32);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 28, 39, 0.08);
}
.free-guide-preview {
  display: block;
  height: 154px;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 10px;
  background: #eef2f4;
  box-shadow: 0 8px 20px rgba(7, 28, 39, 0.12);
}
.free-guide-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.free-guide-copy {
  min-width: 0;
}
.free-guide-copy > span {
  color: #987130;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.free-guide-copy h4 {
  margin: 5px 0 7px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.28rem;
  line-height: 1.22;
}
.free-guide-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}
.free-guide-copy .button {
  min-height: 42px;
  padding: 8px 15px;
  font-size: 0.75rem;
}
.footer-brand .brand-logo {
  width: 62px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}
.lecture-paths {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.lecture-paths-heading {
  margin-top: 78px;
}
.lecture-paths-heading p:last-child {
  max-width: 650px;
  margin-inline: auto;
}
.path-card {
  padding: 31px;
  border-radius: 25px;
  overflow: hidden;
}
.path-card[data-card-href] {
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.path-card[data-card-href]:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(7, 28, 39, 0.15);
}
.path-card[data-card-href]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}
.path-card-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #876526;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}
.public-path .path-card-detail-link,
.couples-path .path-card-detail-link {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}
.path-card-detail-link:hover {
  background: var(--gold-light);
  color: var(--ink);
}
.seminar-path {
  border: 1px solid rgba(201, 155, 77, 0.25);
  background: linear-gradient(145deg, #f5ead5, #fffaf0);
}
.student-message {
  margin-top: 18px;
}
.audience-marker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #987130;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.audience-marker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.student-message h3 {
  margin-top: 9px;
}
.student-message p {
  color: #506971;
}
.staff-message {
  margin: 30px -8px -8px;
  padding: 25px;
  border: 1px solid rgba(7, 28, 39, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 15px 35px rgba(7, 28, 39, 0.06);
}
.staff-message h4 {
  margin: 10px 0 9px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.35rem;
  line-height: 1.25;
}
.staff-message p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.staff-message ul {
  margin: 15px 0 20px;
  padding: 0 18px 0 0;
  color: #506971;
  font-size: 0.82rem;
}
.staff-message li + li {
  margin-top: 5px;
}
.staff-message .button {
  width: 100%;
}
.public-path {
  color: #fff;
  background: linear-gradient(145deg, #123b48, #071c27);
}
.home-lecture-offer {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(240, 216, 159, 0.26);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}
.home-lecture-offer > span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
}
.home-lecture-offer h4 {
  margin: 7px 0;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1.55rem;
}
.home-lecture-offer p {
  color: rgba(255, 255, 255, 0.7);
}
.home-lecture-offer {
  position: relative;
  margin-top: 42px;
  padding-top: 30px;
}
.home-lecture-offer::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 216, 159, 0.55),
    transparent
  );
}
.singles-evening-points {
  margin: 17px 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}
.singles-evening-points li {
  position: relative;
  padding-right: 23px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}
.singles-evening-points li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--gold-light);
  font-weight: 900;
}
.home-offer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}
.home-offer-actions > a {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
}
.path-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #9a7433;
  font-size: 0.76rem;
  font-weight: 800;
}
.public-path .path-head,
.couples-path .path-head {
  color: var(--gold-light);
}
.path-card h3 {
  margin: 15px 0 10px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.public-path h3,
.couples-path h3 {
  color: #fff;
}
.path-card > p,
.couples-content > p {
  color: var(--muted);
}
.public-path > p,
.couples-content > p {
  color: rgba(255, 255, 255, 0.65);
}
.session-list {
  margin: 24px 0 27px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  list-style: none;
}
.session-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #405a63;
  font-size: 0.83rem;
}
.session-list span {
  color: #a07835;
  font-family: "Rubik", sans-serif;
}
.lecture-tags {
  margin: 25px 0 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lecture-tags button {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: 0.2s;
}
.lecture-tags button:hover {
  color: var(--ink);
  background: var(--gold-light);
}
.couples-path {
  grid-column: 1 / -1;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
  background: #0a2835;
}
.couples-photo {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1800/608;
  overflow: hidden;
}
.couples-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.couples-workshop-portrait img {
  object-position: center;
}
.couples-content {
  padding: 38px;
  align-self: center;
}
.couples-topics {
  margin: 22px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.couples-topics span {
  padding: 7px 11px;
  border: 1px solid rgba(240, 216, 159, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(240, 216, 159, 0.06);
  font-size: 0.76rem;
}
.programs-section {
  background: #f2ede4;
}
.programs-section #programs-title {
  font-size: clamp(2.25rem, 4vw, 3.9rem);
  line-height: 1.04;
}
.singles-course-feature {
  max-width: 1080px;
  margin: 38px auto 54px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border: 2px solid rgba(201, 155, 77, 0.32);
  box-shadow: 0 26px 70px rgba(7, 28, 39, 0.15);
}
.singles-course-feature .course-visual {
  min-height: 330px;
}
.singles-course-feature .program-copy {
  padding: 42px;
}
.singles-course-feature h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}
.supporting-paths-heading {
  margin: 0 0 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(7, 28, 39, 0.12);
}
.supporting-paths-heading span {
  display: block;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}
.supporting-paths-heading p {
  margin: 5px 0 0;
  color: var(--muted);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.counseling-section #counseling-title {
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 1.03;
}
.counseling-section #counseling-title em {
  white-space: nowrap;
}
.program-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(7, 28, 39, 0.07);
}
.program-media {
  height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.program-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.booklet-media {
  padding: 20px;
  background: #f7f4ee;
}
.course-visual {
  height: 310px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(240, 216, 159, 0.25),
      transparent 28%
    ),
    linear-gradient(145deg, #1f6970, #071c27);
}
.course-visual > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.2rem;
}
.course-visual strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.7rem;
}
.course-visual small {
  color: rgba(255, 255, 255, 0.55);
}
.program-copy {
  padding: 26px;
}
.program-label {
  color: #9a7433;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.program-copy h3 {
  min-height: 2.3em;
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.75rem;
  line-height: 1.15;
}
.program-copy p {
  min-height: 6.4em;
  color: var(--muted);
  font-size: 0.88rem;
}
.contact-placeholder a {
  color: inherit;
}
.contact-placeholder > a {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
.watch-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #eef0eb, #faf6ed);
}
.watch-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -250px;
  bottom: -300px;
  border: 1px solid rgba(201, 155, 77, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(201, 155, 77, 0.025);
}
.channel-player {
  position: relative;
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.watch-section .channel-player {
  max-width: 900px;
  margin-inline: auto;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
}
.watch-section .channel-player iframe {
  min-height: 560px;
  background: #000;
}
.shorts-grid {
  grid-template-columns: repeat(3, 1fr);
}
.shorts-grid .video-thumb {
  height: 390px;
  background-position: center;
}
.shorts-grid .video-body {
  min-height: 145px;
}
.shorts-grid .video-body h3 {
  font-size: 1.32rem;
}
.channel-player iframe,
.proof-player iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}
.youtube-local-fallback {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(4, 20, 28, 0.5), rgba(4, 20, 28, 0.78)),
    var(--fallback-image) center/cover;
}
.youtube-local-fallback strong {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.youtube-local-fallback small {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.78);
}
.youtube-local-fallback .video-play {
  position: static;
  width: 68px;
  height: 68px;
}
.player-note {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.player-note > span,
.proof-copy > span {
  color: #9a7433;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.player-note strong {
  margin: 9px 0 14px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.8rem;
  line-height: 1.15;
}
.player-note p {
  color: var(--muted);
}
.program-grid {
  grid-template-columns: repeat(2, 1fr);
}
.program-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}
.program-media,
.course-visual,
.home-visual {
  height: 100%;
  min-height: 340px;
}
.home-visual {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(240, 216, 159, 0.28),
      transparent 23%
    ),
    linear-gradient(145deg, #76564e, #152f39);
}
.home-visual span {
  margin-bottom: auto;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
}
.home-visual strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.55rem;
  line-height: 1.3;
}
.program-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-copy h3,
.program-copy p {
  min-height: 0;
}
.program-copy .text-link {
  margin-top: auto;
}
.course-proof {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, #0e3947, #061a24);
  box-shadow: 0 25px 65px rgba(7, 28, 39, 0.18);
}
.proof-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-copy > span {
  color: var(--gold-light);
}
.proof-copy h3 {
  margin: 10px 0 12px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 2.2rem;
  line-height: 1.12;
}
.proof-copy p {
  color: rgba(255, 255, 255, 0.62);
}
.proof-copy .button {
  align-self: flex-start;
  margin-top: 12px;
}
body
  :is(
    h1,
    h2,
    h3,
    blockquote,
    .brand-copy strong,
    .hero-signature strong,
    .stage-quote,
    .note-number,
    .card-number,
    .about-quote,
    .book-copy h2,
    .program-copy h3
  ) {
  font-family: "Rubik", sans-serif;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 11px;
    font-size: 0.82rem;
  }
  .hero {
    min-height: 780px;
    height: auto;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
  }
  .hero-visual {
    height: 510px;
  }
  .floating-note-top {
    right: -5px;
  }
  .floating-note-bottom {
    left: -5px;
  }
  .lecture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lecture-card {
    min-height: 390px;
  }
  .about-grid,
  .booking-grid,
  .counseling-grid {
    gap: 55px;
  }
  .about-art {
    min-height: 510px;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facebook-posts {
    grid-template-columns: 1fr 1fr;
  }
  .video-card-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .video-card-main .video-thumb {
    height: 260px;
  }
  .footer-main {
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
  }
  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }
  .site-header {
    height: 72px;
    background: rgba(6, 27, 38, 0.94);
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }
  .menu-toggle {
    width: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(240, 216, 159, 0.38);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
  }
  .menu-label {
    display: block;
    color: #fff;
    font-size: 0.78rem;
  }
  .menu-open .menu-toggle .menu-lines i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-open .menu-toggle .menu-lines i:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle .menu-lines i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 90px 35px 35px;
    background: rgba(5, 22, 31, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s;
  }
  .menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav > a {
    padding: 12px 0;
    font-family: "Rubik", sans-serif;
    font-size: 1.65rem;
    text-align: center;
  }
  .nav-more {
    width: 100%;
  }
  .nav-more summary {
    display: none;
  }
  .nav-more-menu {
    position: static;
    display: flex;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .nav-more-menu a {
    padding: 12px 0;
    font-family: "Rubik", sans-serif;
    font-size: 1.65rem;
    text-align: center;
  }
  .nav-cta {
    margin-top: 10px;
    border-radius: 12px;
  }
  .hero {
    padding: 122px 0 80px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow {
    justify-content: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-signature {
    justify-content: center;
  }
  .hero-visual {
    height: 480px;
    width: min(520px, 100%);
    margin-inline: auto;
  }
  .about-grid,
  .book-grid,
  .booking-grid,
  .counseling-grid {
    grid-template-columns: 1fr;
  }
  .about-art {
    width: min(510px, 100%);
    margin-inline: auto;
  }
  .about-grid {
    gap: 40px;
  }
  .book-grid {
    gap: 35px;
  }
  .book-mockup {
    width: 430px;
    max-width: 100%;
    margin-inline: auto;
  }
  .book-promo-home {
    width: min(100%, 620px);
    margin-inline: auto;
  }
  .counseling-faq {
    margin-top: 8px;
  }
  .program-grid {
    grid-template-columns: 1fr 1fr;
  }
  .program-card:last-child {
    grid-column: auto;
  }
  .program-card {
    grid-template-columns: 1fr;
  }
  .channel-player,
  .course-proof {
    grid-template-columns: 1fr;
  }
  .channel-player iframe,
  .proof-player iframe {
    min-height: 400px;
  }
  .booking-copy {
    position: static;
  }
  .counseling-copy {
    max-width: 690px;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card:last-child {
    grid-column: auto;
  }
  .lecture-paths {
    grid-template-columns: 1fr;
  }
  .couples-path {
    grid-column: auto;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  .shell {
    width: min(calc(100% - 26px), var(--shell));
  }
  .section {
    padding: 70px 0;
  }
  .brand img {
    width: 45px;
    height: 45px;
  }
  .brand-copy strong {
    font-size: 1.05rem;
  }
  .brand-copy small {
    font-size: 0.62rem;
  }
  .hero {
    min-height: 0;
    padding-top: 112px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button-counseling {
    align-self: center;
  }
  .hero-signature small {
    font-size: 0.67rem;
  }
  .hero-visual {
    height: 410px;
  }
  .hero-portrait-card {
    inset: 8px 7px 30px;
    border-radius: 135px 135px 24px 24px;
  }
  .hero-portrait-card p {
    right: 18px;
    left: 18px;
    bottom: 18px;
    font-size: 1rem;
  }
  .stage-card {
    inset: 8px 7px 30px;
    border-radius: 130px 130px 24px 24px;
  }
  .stage-quote {
    top: 64px;
    font-size: 1.13rem;
  }
  .speaker-mark {
    bottom: 103px;
    transform: translateX(-50%) scale(0.84);
  }
  .floating-note {
    min-width: 0;
    padding: 11px 13px;
  }
  .floating-note-top {
    right: 0;
    top: 42px;
  }
  .floating-note-bottom {
    left: 0;
    bottom: 43px;
  }
  .floating-note small {
    display: none;
  }
  .note-icon {
    width: 31px;
    height: 31px;
  }
  .topic-ribbon {
    height: 57px;
  }
  .section-heading h2,
  .about-copy h2,
  .booking-copy h2 {
    font-size: 2.7rem;
  }
  .section-heading {
    margin-bottom: 37px;
  }
  .lecture-grid,
  .audience-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .program-card:last-child {
    grid-column: auto;
  }
  .session-list {
    grid-template-columns: 1fr;
  }
  .seminar-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 240px auto;
  }
  .seminar-gallery-main {
    grid-row: auto;
  }
  .couples-path {
    grid-template-columns: 1fr;
  }
  .couples-photo {
    min-height: 0;
  }
  .couples-content,
  .path-card {
    padding: 24px 20px;
  }
  .channel-player iframe,
  .proof-player iframe {
    min-height: 230px;
  }
  .player-note,
  .proof-copy {
    padding: 25px 20px;
  }
  .program-media,
  .course-visual,
  .home-visual {
    min-height: 285px;
  }
  .lecture-card {
    min-height: 355px;
  }
  .custom-lecture {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .custom-lecture a {
    margin-right: 59px;
  }
  .about-art {
    min-height: 440px;
  }
  .portrait-frame {
    right: 20px;
    left: 20px;
  }
  .about-quote {
    left: 0;
    right: 52px;
    width: max-content;
    max-width: calc(100% - 52px);
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .audiences-section .section-heading {
    display: block;
  }
  .audience-card {
    min-height: 180px;
  }
  .audience-card h3 {
    margin-top: 24px;
  }
  .split-heading {
    display: block;
  }
  .split-heading .outline-link {
    margin-top: 20px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .facebook-feed-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .facebook-posts {
    grid-template-columns: 1fr;
  }
  .video-card-main {
    grid-column: auto;
    display: block;
  }
  .video-card-main .video-thumb,
  .video-thumb {
    height: 205px;
  }
  .article-card:last-child {
    grid-column: auto;
  }
  .article-filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .filter-button {
    flex: 0 0 auto;
  }
  .book-mockup {
    height: 375px;
  }
  .book-real-cover {
    height: 355px;
  }
  .book-cover {
    right: 50%;
    width: 225px;
    height: 342px;
    transform: translateX(50%) rotateY(-10deg) rotateZ(2deg);
  }
  .book-pages {
    right: 50%;
    width: 220px;
    height: 342px;
    transform: translateX(47%) rotateY(-10deg) rotateZ(2deg) translateZ(-13px);
  }
  .book-cover small {
    font-size: 0.62rem;
  }
  .book-symbol {
    margin: 34px 0 16px;
    transform: scale(0.8);
  }
  .book-cover h3 {
    font-size: 2.15rem;
  }
  .booking-form {
    padding: 24px 17px;
  }
  .meeting-options {
    grid-template-columns: 1fr;
  }
  .consultation-price {
    align-items: flex-start;
    flex-direction: column;
  }
  .counseling-faq {
    grid-template-columns: 1fr;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
  }
  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    gap: 20px;
  }
  .article-dialog,
  .request-dialog {
    padding: 38px 22px 26px;
  }
  .article-dialog h2,
  .request-dialog h2 {
    font-size: 2rem;
  }
}

.course-proof .proof-short {
  width: min(100%, 390px);
  aspect-ratio: 9/16;
  justify-self: center;
  margin: 28px auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}
.course-proof .proof-short iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}
.lecture-card .youtube-lecture-photo {
  background-size: cover;
  background-position: center;
}
.article-visual-one {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/faith.webp");
}
.article-visual-two {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/perspective.webp");
}
.article-visual-three {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/differences.webp");
}
.article-visual-four {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/growing.webp");
}
.article-visual-five {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/repair.webp");
}
.article-visual-six {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/communication.webp");
}
.article-visual-seven {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/gratitude.webp");
}
.article-visual-eight {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/return.webp");
}
.article-visual-nine {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/storm.webp");
}
.article-visual-ten {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/teamwork.webp");
}
.article-visual-eleven {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/honesty.webp");
}
.article-visual-twelve {
  background-image:
    linear-gradient(to top, rgba(5, 25, 33, 0.7), transparent 58%),
    url("assets/article-couples/budget.webp");
}
.article-visual[class*="article-visual-"] {
  background-size: cover;
  background-position: center;
}
.article-visual[class*="article-visual-"] span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.article-visual[class*="article-visual-"] i {
  display: none;
}
.path-identity {
  margin: 20px 0 26px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 28, 39, 0.08);
}
.path-identity > span {
  font-family: "Rubik", sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: #c39443;
}
.path-identity small,
.path-identity strong {
  display: block;
}
.path-identity small {
  color: #8a744e;
  font-weight: 700;
}
.path-identity strong {
  margin-top: 3px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
}
.public-path .path-identity {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.public-path .path-identity strong {
  color: #fff;
}
.public-path .path-identity small {
  color: var(--gold-light);
}
.booking-benefits {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}
.booking-benefits li {
  position: relative;
  margin: 10px 0;
  padding-right: 27px;
  color: rgba(255, 255, 255, 0.83);
}
.booking-benefits li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--gold-light);
  font-weight: 900;
}
.institution-proof {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(127, 91, 28, 0.18);
}
.institution-proof > span {
  display: block;
  margin-bottom: 13px;
  color: #8b682c;
  font-weight: 900;
}
.institution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.institution-list i {
  padding: 7px 11px;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 999px;
  color: #49616a;
  background: rgba(255, 255, 255, 0.75);
  font-style: normal;
  font-size: 0.72rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.hero-brand-mark {
  width: max-content;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(240, 216, 159, 0.28);
  border-radius: 18px;
  background: rgba(4, 22, 31, 0.42);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}
.hero-brand-mark img {
  width: 82px;
  height: auto;
  object-fit: contain;
}
.event-type-grid a {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-align: right;
  cursor: pointer;
  transition: 0.2s;
}
.event-type-grid a:hover {
  border-color: var(--gold-light);
  background: rgba(240, 216, 159, 0.12);
  transform: translateY(-2px);
}
.event-type-grid .event-training-link {
  border-color: rgba(240, 216, 159, 0.52);
  background: rgba(240, 216, 159, 0.11);
}
.site-header + main {
  display: block;
}
.course-logo-visual {
  padding: 0;
  background: #f5d7e3;
}
.course-logo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download-cover {
  padding: 22px;
  background: linear-gradient(145deg, #fff, #eee7dc);
}
.download-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 22px rgba(7, 28, 39, 0.16));
}
.download-link {
  width: max-content;
  padding: 9px 13px;
  border: 1px solid rgba(150, 105, 45, 0.3);
  border-radius: 999px;
}
.download-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.counseling-photo {
  height: 235px;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 26px 70px 26px 26px;
  box-shadow: 0 18px 45px rgba(7, 28, 39, 0.12);
}
.counseling-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.counseling-service-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}
.audiences-section {
  background: linear-gradient(180deg, #f8f4ed, #efe7da);
}
@media (max-width: 650px) {
  .lectures-section .lecture-grid .lecture-card:nth-child(n + 3) {
    display: none;
  }
  .lectures-section .lecture-grid {
    margin-bottom: 18px;
  }
  .lectures-section .section-heading > p {
    max-width: 32ch;
    margin-right: auto;
    margin-left: auto;
  }
  .lectures-section .custom-lecture {
    margin-top: 12px;
  }
}
.testimonial-shorts-grid {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.testimonial-shorts-grid > iframe,
.testimonial-shorts-grid > .lite-youtube {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  min-height: 0;
  border: 0;
  border-radius: 16px;
  background: #000;
}
.testimonial-shorts-grid > iframe:nth-child(n + 4),
.testimonial-shorts-grid > .lite-youtube:nth-child(n + 4) {
  grid-column: span 1;
}
@media (max-width: 850px) {
  .testimonial-shorts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .testimonial-shorts-grid {
    padding: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .testimonial-shorts-grid > iframe,
  .testimonial-shorts-grid > .lite-youtube {
    border-radius: 12px;
  }
}
.couples-identity {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.couples-identity strong {
  color: #fff;
}
.couples-identity small {
  color: var(--gold-light);
}
.couples-outcomes {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.couples-outcomes > div {
  padding: 15px;
  border: 1px solid rgba(240, 216, 159, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}
.couples-outcomes strong,
.couples-outcomes span {
  display: block;
}
.couples-outcomes strong {
  color: var(--gold-light);
  font-family: "Rubik", sans-serif;
}
.couples-outcomes span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.73rem;
  line-height: 1.45;
}
.couples-formats {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.87rem;
}
.couples-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.couples-actions > a {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}
@media (max-width: 680px) {
  .couples-outcomes {
    grid-template-columns: 1fr;
  }
  .couples-identity {
    align-items: flex-start;
  }
}
.audience-card {
  padding-top: 0;
  overflow: hidden;
}
.audience-card figure {
  height: 165px;
  margin: 0 -1px 22px;
  overflow: hidden;
  background: #d9d2c6;
}
.audience-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.audience-card:hover figure img {
  transform: scale(1.045);
}
.audience-card > span,
.audience-card > h3,
.audience-card > p {
  margin-right: 24px;
  margin-left: 24px;
}
.audience-card > p {
  padding-bottom: 24px;
}
@media (max-width: 650px) {
  .audience-card figure {
    height: 210px;
  }
}
.counseling-conversation-visual {
  position: relative;
  height: 330px;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 16% 22%,
      rgba(236, 205, 137, 0.28),
      transparent 26%
    ),
    linear-gradient(135deg, #0d3b48, #061c26 67%, #9b7438 145%);
  isolation: isolate;
}
.counseling-conversation-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(240, 216, 159, 0.22);
  border-radius: 18px 56px 18px 18px;
  z-index: -1;
}
.conversation-line {
  position: absolute;
  border: 1px solid rgba(240, 216, 159, 0.18);
  border-radius: 50%;
}
.conversation-line-a {
  width: 270px;
  height: 270px;
  left: -95px;
  top: -85px;
}
.conversation-line-b {
  width: 190px;
  height: 190px;
  left: -56px;
  top: -45px;
}
.conversation-mark {
  position: absolute;
  left: 46px;
  top: 48px;
  width: 112px;
  height: 74px;
}
.conversation-mark i {
  position: absolute;
  width: 62px;
  height: 48px;
  border: 2px solid rgba(240, 216, 159, 0.8);
  border-radius: 18px;
}
.conversation-mark i::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid rgba(240, 216, 159, 0.8);
  transform: rotate(42deg);
}
.conversation-mark i:first-child {
  right: 0;
  top: 0;
}
.conversation-mark i:first-child::after {
  right: 10px;
  border-right: 2px solid rgba(240, 216, 159, 0.8);
}
.conversation-mark i:last-child {
  left: 0;
  bottom: 0;
  border-color: rgba(255, 255, 255, 0.55);
}
.conversation-mark i:last-child::after {
  left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.55);
  border-right: 0;
}
.conversation-visual-copy {
  position: relative;
  max-width: 78%;
  z-index: 1;
}
.conversation-visual-copy small,
.conversation-visual-copy strong,
.conversation-visual-copy span {
  display: block;
}
.conversation-visual-copy small {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.conversation-visual-copy strong {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}
.conversation-visual-copy span {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}
/* Stable Hebrew headings across narrow screens */
h1,
h2,
h3,
h4 {
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.lecture-card h3,
.path-identity strong,
.home-lecture-offer h4,
.audience-card h3,
.program-card h3 {
  line-height: 1.18;
}
@media (max-width: 650px) {
  .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: 1.02;
  }
  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.98;
  }
  .lecture-card h3 {
    font-size: clamp(1.45rem, 7.2vw, 1.9rem);
  }
  .path-identity strong {
    font-size: clamp(1.18rem, 6vw, 1.5rem);
  }
  .home-lecture-offer h4 {
    font-size: clamp(1.35rem, 6.8vw, 1.7rem);
  }
  .couples-content h3,
  .program-card h3 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
  .booking-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }
}
.quick-links a {
  position: relative;
  padding-right: 14px;
}
.quick-links a::before {
  content: "←";
  position: absolute;
  right: 0;
  color: rgba(240, 216, 159, 0.55);
  font-size: 0.72rem;
  transition: transform 0.2s;
}
.quick-links a:hover::before {
  transform: translateX(-3px);
}

/* Mobile layout: compact, readable and free of horizontal overflow */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
main,
main > section,
.shell,
.hero-grid,
.about-grid,
.book-grid,
.booking-grid,
.counseling-grid {
  min-width: 0;
}
img,
video,
iframe {
  max-width: 100%;
}

/* Lightweight YouTube player: keeps pages fast and gives filtered devices a
   visible fallback instead of an empty iframe. */
.lite-youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: inherit;
  background: #061821;
  isolation: isolate;
}
.lite-youtube::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 18, 0.08),
    rgba(2, 12, 18, 0.76)
  );
}
.lite-youtube-portrait {
  aspect-ratio: 9/16;
}
.lite-youtube-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lite-youtube-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(180deg, transparent 32%, rgba(2, 12, 18, 0.82));
  font-family: inherit;
}
.lite-youtube-play strong {
  max-width: 92%;
  font:
    800 clamp(1rem, 2.5vw, 1.35rem) / 1.25 "Rubik",
    sans-serif;
  text-shadow: 0 2px 12px #000;
}
.lite-youtube-play small {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.lite-youtube-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 4px;
  place-items: center;
  border-radius: 50%;
  color: #071c27;
  background: #e9c979;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.lite-youtube-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}
.lite-youtube-play:hover .lite-youtube-icon,
.lite-youtube-play:focus-visible .lite-youtube-icon {
  transform: scale(1.08);
  background: #fff0bd;
}
.lite-youtube.is-playing {
  background: #000;
}
.lite-youtube.is-playing::after {
  display: none;
}
.lite-youtube-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  border: 0;
}
@media (max-width: 560px) {
  .lite-youtube-icon {
    width: 60px;
    height: 60px;
  }
  .lite-youtube-icon svg {
    width: 32px;
    height: 32px;
  }
  .lite-youtube-play {
    padding: 14px;
  }
}
@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }
  .main-nav {
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 88px 26px 28px;
  }
  .main-nav > a {
    flex: 0 0 auto;
    padding: 9px 0;
    font-size: clamp(1.15rem, 4.8vw, 1.5rem);
  }
  .nav-cta {
    margin-top: 5px;
    padding: 12px 18px !important;
  }
  .about-copy {
    order: 1;
  }
  .about-art {
    order: 2;
  }
  .counseling-copy,
  .counseling-form-wrap {
    min-width: 0;
  }
  .path-card,
  .couples-content,
  .booking-form {
    min-width: 0;
  }
}
@media (max-width: 590px) {
  .section {
    padding: 58px 0;
  }
  .site-header .shell {
    gap: 10px;
  }
  .brand {
    min-width: 0;
  }
  .brand-copy {
    min-width: 0;
  }
  .brand-copy strong {
    white-space: nowrap;
  }
  .hero {
    padding-top: 96px;
    padding-bottom: 54px;
  }
  .hero-grid {
    gap: 22px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }
  .hero-visual {
    height: 348px;
  }
  .hero-brand-mark {
    margin-inline: auto;
  }
  .topic-ribbon {
    overflow: hidden;
  }
  .topic-ribbon-track {
    white-space: nowrap;
  }
  .about-grid {
    gap: 24px;
  }
  .about-art {
    min-height: 355px;
  }
  .portrait-frame {
    top: 0;
    bottom: 20px;
  }
  .about-quote {
    right: 25px;
    max-width: calc(100% - 25px);
    font-size: 1rem;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2,
  .about-copy h2,
  .booking-copy h2 {
    font-size: clamp(2.05rem, 10.2vw, 2.8rem);
    line-height: 1.04;
  }
  .section-heading p {
    max-width: 34ch;
    margin-inline: auto;
  }
  .channel-player {
    border-radius: 20px;
  }
  .channel-player iframe {
    min-height: 0 !important;
    aspect-ratio: 9/16;
    max-height: 70vh;
  }
  .player-note {
    padding: 22px 18px;
  }
  .player-note strong {
    font-size: 1.45rem;
  }
  .shorts-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 1px 16px;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .shorts-grid .video-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }
  .shorts-grid .video-thumb {
    height: 300px;
  }
  .shorts-grid .video-body {
    min-height: 132px;
    padding: 18px;
  }
  .shorts-grid .video-body h3 {
    font-size: 1.18rem;
  }
  .article-grid {
    gap: 16px;
  }
  .article-card {
    min-width: 0;
  }
  .article-body h3 {
    font-size: 1.42rem;
  }
  .counseling-photo {
    margin-bottom: 19px;
    border-radius: 20px 48px 20px 20px;
  }
  .counseling-conversation-visual {
    height: 290px;
    padding: 25px 22px;
  }
  .counseling-conversation-visual::before {
    inset: 13px;
  }
  .conversation-mark {
    left: 25px;
    top: 30px;
    transform: scale(0.82);
    transform-origin: top left;
  }
  .conversation-visual-copy {
    max-width: 100%;
  }
  .conversation-visual-copy strong {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }
  .conversation-visual-copy span {
    max-width: 24ch;
  }
  .lecture-paths,
  .lecture-grid {
    gap: 16px;
  }
  .path-card,
  .couples-content {
    padding: 21px 17px;
  }
  .path-identity {
    padding: 14px;
    gap: 12px;
  }
  .path-identity > span {
    font-size: 1.8rem;
  }
  .home-lecture-offer {
    padding: 18px;
  }
  .audience-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 1px 14px;
    overscroll-behavior-inline: contain;
  }
  .audience-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }
  .audience-card figure {
    height: 185px;
  }
  .program-card,
  .course-proof {
    border-radius: 20px;
  }
  .program-copy {
    padding: 23px 19px;
  }
  .program-media,
  .course-visual,
  .home-visual {
    min-height: 245px;
  }
  .testimonial-shorts-grid {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 15px;
    overscroll-behavior-inline: contain;
  }
  .testimonial-shorts-grid > iframe,
  .testimonial-shorts-grid > .lite-youtube {
    flex: 0 0 min(70vw, 270px);
    scroll-snap-align: start;
  }
  .field,
  .field-full {
    min-width: 0;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    min-width: 0;
  }
  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0 34px;
  }
  .footer-brand,
  .footer-cta {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
  }
}

/* Free weekly content club */
.weekly-club {
  padding: 74px 0;
  color: #fff;
  background: linear-gradient(135deg, #071c27, #0d3c49 60%, #74551f);
}
.weekly-club-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: center;
}
.weekly-club-copy h2 {
  margin: 12px 0 20px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
}
.weekly-club-copy h2 em {
  color: #efd48e;
  font-style: normal;
}
.weekly-club-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
}
.weekly-club-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.weekly-club-copy li {
  position: relative;
  padding-right: 28px;
  color: #fff;
  font-weight: 750;
}
.weekly-club-copy li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #efd48e;
  font-weight: 900;
}
.weekly-club-form {
  padding: 30px;
  border: 1px solid rgba(239, 212, 142, 0.42);
  border-radius: 26px;
  color: #082632;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}
.weekly-club-form .field {
  margin-bottom: 14px;
}
.weekly-club-form .button {
  width: 100%;
  margin-top: 7px;
}
.weekly-club-privacy {
  display: block;
  margin-top: 13px;
  color: #667980;
  font-size: 0.78rem;
  line-height: 1.55;
}
.weekly-club-form .form-status:not(:empty) {
  margin-top: 14px;
  font-weight: 800;
}
.weekly-club-form .form-heading,
.weekly-club-form .form-heading span,
.weekly-club-form .form-heading small,
.weekly-club-form .field > span {
  color: #082632 !important;
}
.weekly-club-form .field > span {
  display: block !important;
  margin-bottom: 3px;
  font-weight: 800;
}
.weekly-club-form input,
.weekly-club-form select {
  color: #082632 !important;
  background: #f8f5ee !important;
  border-color: #cfc6b7 !important;
  color-scheme: light !important;
}
.weekly-club-form input::placeholder {
  color: #65767c !important;
}
.club-floating-cta {
  position: fixed;
  z-index: 900;
  left: 0;
  top: 55%;
  min-width: 126px;
  padding: 11px 13px 11px 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1px 8px;
  border: 1px solid rgba(239, 212, 142, 0.72);
  border-left: 0;
  border-radius: 0 17px 17px 0;
  color: #fff;
  background: linear-gradient(135deg, #0b3b49, #0a2733);
  box-shadow: 0 13px 36px rgba(2, 20, 28, 0.28);
  text-decoration: none;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.club-floating-cta > span {
  grid-row: 1/3;
  color: #efd48e;
  font-size: 1.25rem;
}
.club-floating-cta strong,
.club-floating-cta small {
  display: block;
  white-space: nowrap;
}
.club-floating-cta strong {
  font-size: 0.86rem;
}
.club-floating-cta small {
  color: #efd48e;
  font-size: 0.68rem;
}
.club-floating-cta:hover,
.club-floating-cta:focus-visible {
  transform: translateY(-50%) translateX(3px);
  box-shadow: 0 17px 42px rgba(2, 20, 28, 0.38);
  outline: 3px solid #efd48e;
  outline-offset: 2px;
}
@media (max-width: 820px) {
  .weekly-club {
    padding: 52px 0;
  }
  .weekly-club-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .weekly-club-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }
  .weekly-club-form {
    padding: 22px;
    border-radius: 21px;
  }
}
@media (max-width: 820px) {
  .club-floating-cta {
    top: 104px;
    left: 9px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid rgba(239, 212, 142, 0.72);
    border-radius: 14px;
    transform: none;
  }
  .club-floating-cta > span {
    font-size: 1rem;
  }
  .club-floating-cta strong {
    font-size: 0.76rem;
  }
  .club-floating-cta small {
    font-size: 0.61rem;
  }
  .club-floating-cta:hover,
  .club-floating-cta:focus-visible {
    transform: translateY(-2px);
  }
}

/* Hebrew typography and content flow on phones */
@media (max-width: 590px) {
  body {
    direction: rtl;
    text-align: right;
    font-size: 16px;
    line-height: 1.65;
  }
  h1,
  h2,
  h3,
  h4,
  .path-identity strong,
  .home-lecture-offer h4 {
    width: auto;
    max-width: 100%;
    margin-inline: 0;
    letter-spacing: 0 !important;
    line-height: 1.16 !important;
    text-wrap: pretty;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  p,
  li,
  small,
  span,
  strong,
  a,
  button,
  label,
  input,
  select,
  textarea {
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-copy {
    text-align: right;
  }
  .hero-copy .eyebrow,
  .hero-actions,
  .hero-signature {
    justify-content: flex-start;
  }
  .hero-lead {
    margin-right: 0;
    margin-left: 0;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 10.8vw, 3rem);
    line-height: 1.08 !important;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.72;
  }
  .hero-signature {
    margin-top: 27px;
  }
  .floating-note {
    display: none;
  }
  .stage-quote {
    top: 54px;
    right: 22px;
    left: 22px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .speaker-mark {
    bottom: 76px;
    transform: translateX(-50%) scale(0.72);
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand-copy strong {
    font-size: 0.98rem;
  }
  .brand-copy small {
    display: none;
  }
  .menu-toggle {
    flex: 0 0 auto;
  }
  .section-heading.centered {
    text-align: right;
  }
  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }
  .section-heading > p:last-child {
    margin-right: 0;
    margin-left: 0;
  }
  .section-heading h2,
  .about-copy h2,
  .booking-copy h2 {
    font-size: clamp(2rem, 9.4vw, 2.55rem);
    line-height: 1.12 !important;
  }
  .about-copy p,
  .book-copy p,
  .booking-copy p,
  .counseling-copy p,
  .program-copy p,
  .player-note p,
  .article-body p {
    line-height: 1.72;
  }
  .about-highlights > div,
  .meeting-options > div,
  .counseling-points > div,
  .couples-outcomes > div {
    text-align: right;
  }
  .path-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .path-identity {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
  .path-identity > div {
    min-width: 0;
  }
  .path-identity strong {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }
  .home-lecture-offer h4 {
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
  }
  .home-offer-actions,
  .couples-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .home-offer-actions .button,
  .couples-actions .button {
    width: 100%;
  }
  .article-body,
  .video-body,
  .program-copy,
  .player-note,
  .proof-copy {
    min-width: 0;
    text-align: right;
  }
  .article-body h3,
  .video-body h3,
  .program-copy h3,
  .player-note strong,
  .proof-copy h3 {
    line-height: 1.32 !important;
  }
  .article-filters {
    direction: rtl;
  }
  .article-filters::after {
    content: "";
    flex: 0 0 1px;
  }
  .counseling-service-title {
    font-size: 2.15rem;
    line-height: 1.14 !important;
  }
  .counseling-copy h3 {
    font-size: clamp(2rem, 9.3vw, 2.55rem);
    line-height: 1.14 !important;
  }
  .conversation-visual-copy strong {
    line-height: 1.25 !important;
  }
  .counseling-scope,
  .couples-topics,
  .institution-list {
    align-items: flex-start;
  }
  .counseling-scope span,
  .couples-topics span,
  .institution-list i {
    white-space: normal;
    line-height: 1.4;
  }
  .direct-consultation {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .direct-consultation span {
    grid-row: auto;
  }
  .direct-consultation a {
    font-size: 1.2rem;
  }
  .event-type-grid {
    grid-template-columns: 1fr;
  }
  .event-type-grid a {
    min-width: 0;
  }
  .event-type-grid strong,
  .event-type-grid span {
    line-height: 1.45;
  }
  .booking-steps {
    padding-right: 0;
  }
  .booking-steps li {
    align-items: flex-start;
  }
  .booking-form {
    overflow: hidden;
  }
  .field span {
    line-height: 1.4;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    text-align: right;
  }
  .quick-links {
    grid-template-columns: 1fr;
  }
  .footer-links,
  .footer-cta,
  .footer-brand {
    text-align: right;
  }
  .footer-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-actions .button {
    width: 100%;
  }
}

/* Explicit fixes for the featured short and book on narrow screens */
@media (max-width: 820px) {
  .watch-section .channel-player {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    width: 100%;
    max-width: 520px;
  }
  .watch-section .channel-player iframe {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 9/16;
    max-height: none;
  }
  .watch-section .player-note {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }
  .book-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    overflow: hidden;
  }
  .book-mockup,
  .book-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .book-copy {
    overflow: hidden;
  }
  .book-copy h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  .book-subtitle,
  .book-copy blockquote {
    width: 100%;
    max-width: 100%;
  }
  .book-copy blockquote {
    margin: 22px 0;
    padding: 15px 18px 15px 0;
    font-size: clamp(1.05rem, 5.3vw, 1.3rem);
    line-height: 1.55;
  }
  .book-copy .outline-link {
    max-width: 100%;
    white-space: normal;
    line-height: 1.5;
  }
}
@media (max-width: 590px) {
  .watch-section .channel-player {
    max-width: 390px;
    margin-inline: auto;
    border-radius: 20px;
  }
  .watch-section .player-note {
    padding: 22px 18px 24px;
  }
  .watch-section .player-note strong {
    font-size: 1.35rem;
  }
  .book-mockup {
    height: 340px;
  }
  .book-real-cover {
    width: auto;
    max-width: 78%;
    height: 320px;
    max-height: 320px;
  }
  .book-copy h2 {
    font-size: clamp(2.15rem, 10.8vw, 2.8rem) !important;
  }
}

/* Remaining narrow-screen overflow guards found in the full-page audit */
@media (max-width: 590px) {
  .section
    :is(
      .section-heading,
      .about-copy,
      .book-copy,
      .counseling-copy,
      .booking-copy,
      .program-copy,
      .proof-copy,
      .player-note,
      .path-card,
      .couples-content
    ) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .counseling-section #counseling-title em {
    white-space: normal;
  }
  .singles-course-feature {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    margin: 24px 0 38px;
  }
  .singles-course-feature .program-copy {
    padding: 23px 19px;
  }
  .singles-course-feature h3 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.7vw, 2.35rem);
  }
  .course-proof {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
  .custom-lecture {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }
  .custom-lecture a {
    margin-right: 0;
    width: 100%;
  }
  .lecture-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .lecture-actions .text-link {
    align-self: flex-start;
  }
  .download-link {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
  .download-parts {
    align-items: stretch;
    flex-direction: column;
  }
  .outline-link,
  .text-link,
  .article-open {
    max-width: 100%;
    white-space: normal;
    line-height: 1.5;
  }
  .event-type-grid button,
  .event-type-grid a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .meeting-options > div {
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .seminar-gallery {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .seminar-gallery > * {
    min-width: 0;
  }
  .staff-message,
  .home-lecture-offer,
  .institution-proof {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .footer-cta a[href^="tel:"],
  .footer-cta a[href^="mailto:"] {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .counseling-free-guide {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    padding: 13px;
  }
  .free-guide-preview {
    height: 112px;
  }
  .free-guide-copy h4 {
    font-size: 1.06rem !important;
    line-height: 1.3 !important;
  }
  .free-guide-copy p {
    font-size: 0.74rem;
  }
  .free-guide-copy .button {
    width: 100%;
    min-height: 40px;
    padding: 7px 10px;
  }
}

/* Keep the mobile menu viewport-sized even after the sticky header is scrolled */
@media (max-width: 820px) {
  .site-header.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  body.menu-open .site-header {
    inset: 0;
    height: 100dvh !important;
    background: rgba(5, 22, 31, 0.99);
  }
  body.menu-open .header-inner {
    height: 72px;
  }
  body.menu-open .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    height: 100dvh;
    max-height: 100dvh;
    padding-top: 88px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  body.menu-open .brand,
  body.menu-open .menu-toggle {
    position: relative;
    z-index: 1002;
  }
}

.mobile-dock {
  display: none;
}
@media (max-width: 820px) {
  body {
    padding-bottom: 72px;
  }
  .mobile-dock {
    position: fixed;
    z-index: 95;
    right: 10px;
    left: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    height: 62px;
    padding: 5px 7px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    color: #fff;
    background: rgba(5, 24, 33, 0.96);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .mobile-dock a,
  .mobile-dock button {
    min-width: 0;
    padding: 4px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    font-size: 0.66rem;
    line-height: 1.1;
    cursor: pointer;
  }
  .mobile-dock a:active,
  .mobile-dock button:active,
  .mobile-dock a:focus-visible,
  .mobile-dock button:focus-visible {
    color: var(--gold-light);
    background: rgba(240, 216, 159, 0.1);
  }
  .mobile-dock svg {
    width: 21px;
    height: 21px;
  }
  body.menu-open .mobile-dock {
    visibility: hidden;
    opacity: 0;
  }
}

/* Production polish: clear keyboard focus and stable mobile chrome */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #e8c879;
  outline-offset: 3px;
}
@media (min-width: 821px) {
  main > section:not(.hero):not(.topic-ribbon) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}
@media (max-width: 820px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
  }
  .menu-toggle {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  .mobile-dock {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.counseling-testimonials {
  grid-column: 1/-1;
  margin-top: 4px;
  padding: 34px;
  border: 1px solid rgba(201, 155, 77, 0.3);
  border-radius: 26px;
  background: linear-gradient(135deg, #fff, #f8f1e3);
  box-shadow: 0 16px 40px rgba(7, 28, 39, 0.07);
}
.counseling-testimonials-heading {
  max-width: 700px;
  margin-bottom: 22px;
}
.counseling-testimonials-heading > span {
  color: #987130;
  font-size: 0.76rem;
  font-weight: 900;
}
.counseling-testimonials-heading h3 {
  margin: 7px 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}
.counseling-testimonials-heading p {
  margin: 0;
  color: var(--muted);
}
.counseling-testimonials-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 15px;
}
.counseling-testimonials blockquote {
  margin: 0;
  padding: 25px;
  border: 1px solid rgba(7, 28, 39, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}
.counseling-testimonials blockquote p {
  margin: 0 0 13px;
  color: #314e58;
  line-height: 1.75;
}
.counseling-testimonials blockquote footer {
  padding-top: 13px;
  border-top: 1px solid rgba(7, 28, 39, 0.08);
  color: #987130;
  font-weight: 800;
  font-size: 0.78rem;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.legal-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}
.legal-links a:hover {
  color: var(--gold-light);
}
@media (max-width: 760px) {
  .counseling-testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 590px) {
  .counseling-testimonials {
    padding: 22px 17px;
  }
  .counseling-testimonials-heading h3 {
    font-size: 2rem;
  }
  .counseling-testimonials blockquote {
    padding: 20px 17px;
  }
  .footer-bottom .legal-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* Shared, reliable navigation and locally hosted typography on inner pages */
.has-subsite-header > main {
  padding-top: 72px;
}
.subsite-header {
  height: 72px;
  background: rgba(6, 27, 38, 0.97);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.global-subsite-dock {
  display: none;
}
.book-front-crop {
  position: relative;
  display: block;
  width: min(100%, 650px);
  aspect-ratio: 650/1065;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
  background: #0b3440;
}
.book-front-crop img {
  position: absolute !important;
  top: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  right: auto !important;
  width: auto !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: fill !important;
  transform: none !important;
}
.book-mockup .book-front-crop {
  width: min(100%, 287px);
  border-radius: 8px;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.24));
}
@media (max-width: 820px) {
  .subsite-header .main-nav {
    z-index: 1001;
  }
  .global-subsite-dock {
    position: fixed;
    z-index: 95;
    right: 10px;
    left: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    height: 62px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(5, 24, 33, 0.97);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.4);
  }
  .global-subsite-dock a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-align: center;
    font:
      700 0.69rem/1.18 "Heebo",
      Arial,
      sans-serif;
  }
  body.menu-open .global-subsite-dock {
    opacity: 0;
    visibility: hidden;
  }
}

/* One clear books area: the printed book leads, downloads remain secondary */
.books-library {
  position: relative;
  margin-top: 70px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.books-library-heading {
  max-width: 680px;
  margin-bottom: 25px;
}
.books-library-heading h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
}
.books-library-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}
.books-download-grid .program-card {
  background: #fff;
  color: var(--ink);
}
.course-books-link {
  max-width: 980px;
  margin: 42px auto 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(201, 155, 77, 0.3);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 28, 39, 0.08);
}
.course-books-link > div {
  min-width: 0;
}
.course-books-link span {
  color: #987130;
  font-size: 0.75rem;
  font-weight: 900;
}
.course-books-link strong {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.35rem;
}
.course-books-link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.course-books-link .button {
  flex: 0 0 auto;
}
@media (max-width: 650px) {
  .books-library {
    margin-top: 42px;
    padding-top: 32px;
  }
  .books-library-heading h3 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
  .course-books-link {
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .course-books-link strong {
    font-size: 1.18rem;
  }
  .course-books-link .button {
    width: 100%;
  }
}

/* A calmer homepage flow: one short idea first, deeper video content later */
main#main {
  display: flex;
  flex-direction: column;
}
main#main > .hero {
  order: 1;
}
main#main > .topic-ribbon {
  order: 2;
}
main#main > .watch-section {
  order: 3;
}
main#main > .pathfinder-section {
  order: 4;
}
main#main > .about-section {
  order: 5;
}
main#main > .articles-section {
  order: 6;
}
main#main > .book-section {
  order: 7;
}
main#main > .videos-section {
  order: 8;
}
main#main > .home-questions-feature {
  order: 9;
}
main#main > .weekly-club {
  order: 10;
}
main#main > .counseling-section {
  order: 11;
}
main#main > .lectures-section {
  order: 12;
}
main#main > .audiences-section {
  order: 13;
}
main#main > .programs-section {
  order: 15;
}
main#main > .booking-section {
  order: 16;
}

.curated-shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1050px;
  margin: 0 auto;
}
.curated-short-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  border: 1px solid rgba(187, 143, 65, 0.28);
  border-radius: 24px;
  background: #092532;
  box-shadow: 0 24px 55px rgba(9, 37, 50, 0.16);
}
.curated-short-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.curated-short-card > .lite-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
}
.video-library-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.video-library-button {
  min-height: 56px;
  padding: 15px 28px !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  box-shadow: 0 14px 30px rgba(157, 113, 40, 0.2);
}
.custom-lecture .video-library-button {
  margin-inline-start: auto;
  color: #082632;
}
.book-promotional-cover {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(2, 22, 30, 0.27));
}
.book-page .book-cover-promotional {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.book-page .book-cover-promotional img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: auto;
  border-radius: 22px;
}

@media (min-width: 821px) {
  .hero {
    min-height: 850px;
    height: auto;
    padding-top: 122px;
    padding-bottom: 76px;
  }
  .hero-visual {
    height: 500px;
  }
}
@media (max-width: 760px) {
  .curated-shorts-grid {
    grid-template-columns: repeat(3, 78vw);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 16px;
    margin-inline: -4px;
  }
  .curated-short-card {
    scroll-snap-align: center;
    border-radius: 20px;
  }
  .video-library-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .book-promotional-cover {
    width: min(88vw, 390px);
  }
  .hero-lead {
    max-width: 31ch;
  }
}
.about-intro {
  padding-block: 76px;
  background: #fff;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 62px rgba(7, 28, 39, 0.14);
}
.about-intro-photo::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(5, 22, 30, 0.24));
}
.about-intro-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
.about-intro-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.55rem, 4.8vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.about-intro-copy h2 em {
  color: #9b7431;
  font-style: normal;
}
.about-intro-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 23px 0 26px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.articles-section .article-filters {
  display: none;
}
.articles-section .article-card[data-category="relationships"]:nth-child(8) {
  display: none !important;
}
.articles-section .article-grid {
  grid-template-columns: repeat(3, 1fr);
}
.article-card-weekly {
  position: relative;
  border: 2px solid rgba(183, 132, 43, 0.82);
  background: linear-gradient(180deg, #fffdf8, #f7ead0);
  box-shadow: 0 24px 60px rgba(126, 85, 20, 0.2);
}
.article-card-weekly:before {
  content: "חדש השבוע";
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #a97927;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(83, 52, 7, 0.25);
}
.article-card-weekly .article-body h3 {
  font-size: clamp(1.65rem, 2.1vw, 2.18rem);
  color: #082632;
}
.article-card-weekly .article-body p {
  font-size: 1.04rem;
  color: #3d5057;
}
.article-card-weekly .article-body p strong {
  color: #7c5516;
}
.article-card-weekly .article-open {
  background: #0b3441;
  color: #fff;
  border-radius: 999px;
  padding: 11px 17px;
  width: max-content;
  max-width: 100%;
}
.smart-guide-banner {
  align-items: center;
  background: linear-gradient(120deg, #0b3340, #124d5e);
  border: 1px solid rgba(231, 191, 104, 0.52);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(6, 34, 43, 0.16);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  margin: 24px 0;
  padding: 22px 26px;
  text-decoration: none;
}
.smart-guide-banner small {
  color: #f2d78e;
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}
.smart-guide-banner strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.smart-guide-banner b {
  color: #ffe3a0;
  white-space: nowrap;
}
.smart-guide-icon {
  align-items: center;
  background: #f3d486;
  border-radius: 50%;
  color: #0b3340;
  display: flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}
@media (max-width: 640px) {
  .smart-guide-banner {
    grid-template-columns: auto 1fr;
    padding: 18px;
  }
  .smart-guide-banner b {
    grid-column: 2;
  }
}
.article-visual-image {
  background-image:
    linear-gradient(to top, rgba(4, 20, 28, 0.48), transparent 60%),
    var(--article-card-image);
  background-size: cover;
  background-position: center;
}
.article-visual-image > span {
  position: relative;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 20, 28, 0.72);
  backdrop-filter: blur(5px);
}
@media (max-width: 900px) {
  .articles-section .article-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .articles-heading-link {
    display: none;
  }
  .articles-all {
    margin-top: 24px;
  }
  .articles-all-button {
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    font-size: 1.05rem;
  }
}
@media (max-width: 760px) {
  .articles-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
  }
  .articles-heading-link {
    align-self: flex-start;
    margin-bottom: 0;
  }
}

.pathfinder-section {
  background: #f7f1e5;
}
.pathfinder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pathfinder-card {
  min-height: 255px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7, 28, 39, 0.1);
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 15px 38px rgba(7, 28, 39, 0.06);
  transition: 0.25s ease;
}
.pathfinder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 155, 77, 0.55);
  box-shadow: 0 22px 48px rgba(7, 28, 39, 0.1);
}
.pathfinder-card > span {
  color: #b48639;
  font-family: "Rubik", sans-serif;
  font-weight: 900;
}
.pathfinder-card strong {
  margin: 14px 0 10px;
  font-family: "Rubik", sans-serif;
  font-size: 1.34rem;
  line-height: 1.25;
}
.pathfinder-card small {
  display: block;
  margin: 0 0 19px;
  color: #526a73;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.68;
}
.pathfinder-cta {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #fff;
  background: #0b3542;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 9px 22px rgba(8, 38, 50, 0.16);
}
.pathfinder-card:hover .pathfinder-cta {
  color: #071c27;
  background: #f0d89f;
}
.daily-video-join {
  margin-top: 22px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(120deg, #0b3542, #071b25);
}
.daily-video-join span {
  color: var(--gold-light);
  font-weight: 900;
}
.daily-video-join strong {
  display: block;
  margin: 4px 0;
  font-family: "Rubik", sans-serif;
  font-size: 1.35rem;
}
.daily-video-join p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}
.daily-video-join .button {
  flex: 0 0 auto;
}
.singles-host-offer {
  margin: 24px 0;
  padding: 25px;
  border: 1px solid rgba(240, 216, 159, 0.28);
  border-radius: 22px;
  background: rgba(240, 216, 159, 0.08);
}
.singles-host-offer > span {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
}
.singles-host-offer h3 {
  margin: 7px 0;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
  line-height: 1.25;
}
.singles-host-offer p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.singles-host-offer .button {
  min-height: 44px;
  padding: 9px 17px;
}
.audience-card {
  color: inherit;
  text-decoration: none;
}
.audience-card > b {
  margin: 16px 24px 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #936c2c;
  font-size: 0.78rem;
}
.audience-card:hover > b {
  color: #071c27;
}
.consultation-conversion {
  min-width: 0;
  display: grid;
  gap: 16px;
}
.consultation-conversion .counseling-testimonials {
  margin: 0;
  padding: 22px;
}
.consultation-conversion .counseling-testimonials-heading {
  margin-bottom: 15px;
}
.consultation-conversion .counseling-testimonials-heading h3 {
  font-size: 1.75rem;
}
.consultation-conversion .counseling-testimonials-grid {
  grid-template-columns: 1fr 1fr;
}
.consultation-conversion .counseling-testimonials blockquote {
  padding: 17px;
}
.consultation-conversion .counseling-testimonials blockquote p {
  font-size: 0.78rem;
  line-height: 1.62;
}
.consultation-conversion .counseling-testimonials blockquote footer {
  font-size: 0.7rem;
}
@media (max-width: 760px) {
  .consultation-conversion .counseling-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .consultation-conversion .counseling-testimonials {
    padding: 18px 15px;
  }
}
@media (max-width: 570px) {
  .consultation-submit-actions {
    grid-template-columns: 1fr;
  }
}
.pathfinder-primary {
  border-color: rgba(201, 155, 77, 0.32);
}
.pathfinder-counseling {
  background: #0b3542;
  color: #fff;
}
.pathfinder-counseling small {
  color: rgba(255, 255, 255, 0.8);
}
.pathfinder-options {
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pathfinder-options i,
.pathfinder-options a {
  padding: 8px 12px;
  border: 1px solid rgba(240, 216, 159, 0.25);
  border-radius: 999px;
  color: #f0d89f;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}
.pathfinder-options a:hover,
.pathfinder-options a:focus-visible {
  color: #071c27;
  background: #f0d89f;
  border-color: #f0d89f;
}
.pathfinder-actions {
  align-items: stretch;
}
.pathfinder-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pathfinder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.article-card,
.weekly-card,
.video-browser-card {
  position: relative;
}
.content-share {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  min-height: 36px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(7, 28, 39, 0.14);
  border-radius: 999px;
  color: #0a2a36;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 24px rgba(4, 20, 28, 0.12);
  font:
    800 0.75rem/1 "Heebo",
    sans-serif;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}
.content-share:hover,
.content-share:focus-visible {
  transform: translateY(-2px);
  color: #071c27;
  background: #f1d99c;
  border-color: #d3a958;
}
.content-share svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.content-share-inline {
  top: 12px;
  left: 12px;
}
.article-page-share {
  position: relative;
  top: auto;
  left: auto;
  margin: 0 0 22px;
}
.share-toast {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 24px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: #071c27;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 0.22s ease;
}
.share-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 900px) {
  .pathfinder-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-intro-photo {
    min-height: 320px;
  }
  .about-intro-copy h2 br {
    display: none;
  }
}
@media (max-width: 590px) {
  .about-intro {
    padding-block: 50px;
  }
  .about-intro-grid {
    gap: 24px;
  }
  .about-intro-photo {
    min-height: 235px;
    border-radius: 21px;
  }
  .about-intro-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
    overflow-wrap: anywhere;
  }
  .about-intro-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
  }
  .pathfinder-grid {
    grid-template-columns: 1fr;
  }
  .pathfinder-card {
    min-height: 140px;
  }
  .pathfinder-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .pathfinder-actions a {
    width: 100%;
    min-height: 42px;
  }
  .daily-video-join {
    align-items: stretch;
    flex-direction: column;
    padding: 21px;
  }
  .daily-video-join .button {
    width: 100%;
  }
  .singles-host-offer {
    padding: 20px;
  }
  .singles-host-offer .button {
    width: 100%;
  }
  .form-contact-options {
    grid-template-columns: 1fr;
  }
  .content-share {
    min-height: 34px;
    padding: 7px 9px;
  }
  .content-share span {
    font-size: 0.7rem;
  }
}

/* Final narrow-screen guard: every content column can shrink and Hebrew headings wrap cleanly. */
@media (max-width: 590px) {
  main
    :where(
      .shell,
      .hero-grid,
      .about-grid,
      .pathfinder-grid,
      .channel-player,
      .articles-heading,
      .article-grid,
      .book-grid,
      .program-grid,
      .course-proof,
      .counseling-grid,
      .lecture-paths,
      .lecture-grid,
      .audience-grid,
      .booking-grid,
      .footer-main
    )
    > * {
    min-width: 0;
  }
  main
    :where(
      h1,
      h2,
      h3,
      h4,
      p,
      blockquote,
      .eyebrow,
      .about-lead,
      .hero-lead,
      .book-subtitle,
      .path-identity strong,
      .home-lecture-offer h4
    ) {
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .hero-actions {
    width: 100%;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
  }
  .about-copy,
  .about-highlights,
  .about-highlights > div,
  .path-card,
  .article-card,
  .article-body,
  .book-copy,
  .program-card,
  .program-copy,
  .counseling-copy,
  .booking-copy,
  .booking-form,
  .lecture-card,
  .audience-card {
    max-width: 100%;
    min-width: 0;
  }
  .about-copy h2,
  .book-copy h2,
  .counseling-copy h2,
  .booking-copy h2,
  .section-heading h2 {
    font-size: clamp(1.95rem, 9.2vw, 2.5rem) !important;
    line-height: 1.16 !important;
  }
  .video-browser-card-copy h3,
  .video-body h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Current campaign and clearer content hierarchy */
.hero-visual-with-banner {
  height: 620px;
}
.hero-visual-with-banner .hero-portrait-card {
  bottom: 132px;
}
.hero-visual .seasonal-banner {
  position: absolute;
  z-index: 5;
  right: 4px;
  bottom: 0;
  left: 4px;
  margin: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(245, 217, 149, 0.82);
  border-radius: 24px;
  background: linear-gradient(120deg, #0b3441, #145566 54%, #987129);
  box-shadow: 0 20px 44px rgba(6, 30, 39, 0.38);
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.hero-visual .seasonal-banner:hover,
.hero-visual .seasonal-banner:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 19px 40px rgba(25, 10, 20, 0.34);
}
.seasonal-banner-media {
  position: relative;
  height: 102px;
  overflow: hidden;
  border-radius: 16px;
  background: #071c27;
}
.seasonal-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seasonal-banner-media i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7b234c;
  background: #fff;
  font-style: normal;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.seasonal-banner-copy strong,
.seasonal-banner-copy small,
.seasonal-banner-copy em {
  display: block;
}
.seasonal-banner-copy small {
  color: #ffe2a0;
  font-family: "Rubik", sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 900;
}
.seasonal-banner-copy strong {
  margin: 5px 0 3px;
  font-family: "Rubik", sans-serif;
  font-size: 1.12rem;
  line-height: 1.15;
}
.seasonal-banner-copy em {
  color: #fff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}
.seasonal-banner-copy del {
  color: rgba(255, 255, 255, 0.58);
}
.seasonal-banner > b {
  padding: 10px 13px;
  border-radius: 999px;
  color: #402331;
  background: #f5d995;
  font-size: 0.75rem;
  white-space: nowrap;
}
.heading-library-button {
  display: inline-flex;
  margin-top: 24px;
}
.seo-visual-break {
  padding: 22px 0 58px;
  background: linear-gradient(180deg, #f7f1e5, #fff);
}
.seo-visual-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}
.seo-visual-grid figure {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #d9d2c6;
  box-shadow: 0 22px 48px rgba(7, 28, 39, 0.12);
}
.seo-visual-grid figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-visual-grid figure.wide img {
  object-position: center;
}
.free-guide-copy > span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1dfb8;
  color: #755019;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.path-identity small {
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
}
.path-identity strong {
  margin-top: 7px;
  color: #8a744e;
  font-family: "Heebo", sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
}
.public-path .path-identity small {
  color: #fff;
}
.public-path .path-identity strong {
  color: var(--gold-light);
}
.couples-path .path-identity small {
  color: #fff;
}
.couples-path .path-identity strong {
  color: var(--gold-light);
}
@media (max-width: 720px) {
  .hero-visual-with-banner {
    height: 520px;
  }
  .hero-visual-with-banner .hero-portrait-card {
    bottom: 145px;
  }
  .hero-visual .seasonal-banner {
    right: 0;
    left: 0;
    grid-template-columns: 66px 1fr;
    padding: 10px;
    gap: 10px;
    border-radius: 19px;
  }
  .seasonal-banner-media {
    height: 94px;
  }
  .seasonal-banner-copy strong {
    font-size: 0.9rem;
  }
  .seasonal-banner-copy small {
    font-size: 0.88rem;
  }
  .seasonal-banner-copy em {
    font-size: 0.62rem;
  }
  .seasonal-banner > b {
    grid-column: 1/-1;
    width: 100%;
    padding: 8px;
    text-align: center;
    font-size: 0.72rem;
  }
  .heading-library-button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 820px) {
  .topic-ribbon {
    margin-top: 0;
  }
  .hero-visual-with-banner {
    margin-bottom: 12px;
  }
}
@media (max-width: 720px) {
  .seo-visual-break {
    padding: 10px 0 42px;
  }
  .seo-visual-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .seo-visual-grid figure {
    min-height: 220px;
    border-radius: 20px;
  }
  .seo-visual-grid figure.wide {
    min-height: 250px;
  }
}

/* Shared mobile safety net for every route: prevent wide media, cards and long Hebrew
   headings from pushing the page beyond the phone viewport. */
@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  body {
    padding-bottom: 78px;
  }
  main,
  main > section,
  main > article,
  main > div,
  footer {
    max-width: 100%;
    min-width: 0;
  }
  .shell {
    max-width: 100%;
    min-width: 0;
  }
  main
    :where(
      [class$="-grid"],
      [class*="-grid "],
      [class$="-wrap"],
      [class*="-wrap "]
    )
    > * {
    min-width: 0;
  }
  main :where(h1, h2, h3, h4, h5, p, li, blockquote, figcaption, strong, span) {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }
  main :where(img, video, iframe, embed, object) {
    display: block;
    max-width: 100%;
  }
  main :where(a.button, button.button) {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .site-header .header-inner {
    width: min(calc(100% - 22px), var(--shell));
    max-width: 100%;
    min-width: 0;
  }
  .site-header .brand {
    max-width: calc(100% - 58px);
    min-width: 0;
  }
  .site-header .brand-copy {
    max-width: 100%;
    min-width: 0;
  }
  .site-header .brand-copy strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 420px) {
  .shell {
    width: calc(100% - 22px);
  }
  .site-header .header-inner {
    width: calc(100% - 18px);
  }
  .site-header .brand-copy strong {
    font-size: 0.92rem;
  }
}

/* Cross-route mobile QA fixes. These rules intentionally stay conservative:
   they only remove overflow and stack layouts that cannot remain side by side. */
@media (max-width: 820px) {
  body:not(.training-page)
    main
    :where(
      .seo-hero-grid,
      .seo-split,
      .library-intro,
      .book-page-grid,
      .watch-card,
      .content-hero-grid,
      .content-feature-grid
    ) {
    grid-template-columns: minmax(0, 1fr);
  }
  body
    main
    :where(
      .seo-card,
      .topic-group,
      .lecture-entry,
      .legal-content,
      .legal-header,
      .watch-card,
      .booking-form,
      .program-card
    ) {
    min-width: 0;
    max-width: 100%;
  }
  body main :where(input, select, textarea, button) {
    max-width: 100%;
    min-width: 0;
  }
  body main :where(iframe, video) {
    height: auto;
  }
  body
    main
    :where(.video-frame, .watch-frame-wrap, .video-browser-media)
    iframe {
    height: 100%;
  }
}
@media (max-width: 590px) {
  body main :where(h1, h2, h3, h4) {
    letter-spacing: 0 !important;
    text-wrap: balance;
  }
  body main :where(.seo-actions, .watch-actions, .footer-actions) {
    align-items: stretch;
    flex-direction: column;
  }
  body main :where(.seo-actions, .watch-actions, .footer-actions) .button {
    width: 100%;
    justify-content: center;
  }
  .seo-hero h1,
  .library-intro h1,
  .watch-copy h1,
  .legal-header h1 {
    font-size: clamp(2rem, 10.5vw, 2.85rem) !important;
    line-height: 1.14 !important;
  }
  .seo-hero p,
  .library-intro p,
  .watch-copy p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .seo-section,
  .lecture-library-grid {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .legal-shell {
    width: calc(100% - 22px);
  }
  .global-subsite-dock {
    padding-right: max(8px, env(safe-area-inset-right));
    padding-left: max(8px, env(safe-area-inset-left));
  }
}

/* Prominent free challenge directly after the About section */
main#main > .home-challenge-section {
  order: 6;
}
main#main > .home-questions-feature {
  order: 7;
}
main#main > .articles-section {
  order: 8;
}
main#main > .book-section {
  order: 9;
}
main#main > .videos-section {
  order: 10;
}
main#main > .weekly-club {
  order: 11;
}
main#main > .counseling-section {
  order: 12;
}
main#main > .lectures-section {
  order: 13;
}
main#main > .audiences-section {
  order: 14;
}
main#main > .programs-section {
  order: 14;
}
main#main > .booking-section {
  order: 15;
}
.home-challenge-section {
  padding: 24px 0 72px;
  background: #f7f1e5;
}
.home-challenge-card {
  display: grid;
  grid-template-columns: minmax(230px, 360px) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(205, 158, 67, 0.42);
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #0b4050, #061d27);
  text-decoration: none;
  box-shadow: 0 25px 65px rgba(5, 31, 41, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.home-challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 75px rgba(5, 31, 41, 0.28);
}
.home-challenge-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.home-challenge-copy {
  display: grid;
  gap: 14px;
}
.home-challenge-copy small {
  color: #edcf83;
  font-size: 1rem;
  font-weight: 900;
}
.home-challenge-copy strong {
  font-family: "Rubik", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
}
.home-challenge-copy b {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}
.home-challenge-copy em {
  width: fit-content;
  margin-top: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #06212b;
  background: #edcf83;
  font-style: normal;
  font-weight: 900;
}
.home-challenge-copy em span {
  display: inline-block;
  margin-right: 7px;
}
@media (max-width: 700px) {
  .home-challenge-section {
    padding: 12px 0 52px;
  }
  .home-challenge-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 16px;
  }
  .home-challenge-card img {
    width: min(100%, 370px);
    margin-inline: auto;
  }
  .home-challenge-copy {
    text-align: center;
  }
  .home-challenge-copy strong {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }
  .home-challenge-copy em {
    width: 100%;
  }
}
.home-questions-feature{position:relative;min-height:520px;display:grid;align-items:center;background:linear-gradient(90deg,rgba(5,17,28,.97),rgba(5,17,28,.72) 48%,rgba(5,17,28,.08)),url("assets/judaism-questions/torah-science-hero.webp") center/cover no-repeat;color:#fff}.home-questions-feature-inner{width:100%}.home-questions-feature-copy{max-width:680px}.home-questions-feature-copy h2{margin:10px 0 20px;font:800 clamp(38px,5vw,64px)/1.08 Rubik,Heebo,sans-serif}.home-questions-feature-copy h2 em{color:#efc779;font-style:normal}.home-questions-feature-copy>p:not(.eyebrow){max-width:590px;margin:0 0 27px;color:#e0e6e8;font-size:19px;line-height:1.7}@media(max-width:700px){.home-questions-feature{min-height:560px;background-position:65% center;background-image:linear-gradient(180deg,rgba(5,17,28,.4),rgba(5,17,28,.94)),url("assets/judaism-questions/torah-science-hero.webp");align-items:end}.home-questions-feature-inner{padding-bottom:60px}}
 .site-announcement{position:relative;z-index:1001;background:#c6943d;color:#092532;text-align:center;padding:9px 42px;font:700 15px Heebo,Arial,sans-serif}.site-announcement a{color:inherit;text-decoration:underline}
