:root {
  --anchor: #a99069;
  --text: #443b34;
  --bg: #f7f3ed;
  --sand: #e7dccf;
  --stone: #ded0c6;
  --olive: #8b8a75;
  --cream: #fcf9f4;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(68, 59, 52, 0.14);
  --soft-shadow: 0 18px 42px rgba(68, 59, 52, 0.1);
  --lift-shadow: 0 24px 54px rgba(68, 59, 52, 0.16);
  --radius: 8px;
  --font: "Assistant", "Noto Sans Hebrew", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0;
}

body::selection {
  background: rgba(169, 144, 105, 0.28);
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .whatsapp-float {
  display: none;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(169, 144, 105, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(68, 59, 52, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 249, 244, 0.96);
  border-bottom-color: rgba(68, 59, 52, 0.16);
  box-shadow: 0 10px 28px rgba(68, 59, 52, 0.08);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.mobile-menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(68, 59, 52, 0.16);
  border-radius: 999px;
  background: rgba(252, 249, 244, 0.86);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(68, 59, 52, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(169, 144, 105, 0.34);
  background: var(--cream);
}

.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.brand:hover,
.nav-links a:hover {
  color: var(--anchor);
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 2px;
  background: var(--anchor);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  --hero-bg-position: center;
  --hero-overlay:
    linear-gradient(180deg, rgba(247, 243, 237, 0.74), rgba(247, 243, 237, 0.56) 52%, rgba(247, 243, 237, 0.7)),
    rgba(247, 243, 237, 0.24);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/assets/images/inner-home-atmosphere.png")
    var(--hero-bg-position) / cover no-repeat;
  transform: scale(1.03);
  animation: heroBreathe 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 26px;
  background: var(--bg);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 80px 120px;
  text-align: center;
  animation: heroContentIn 760ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 15px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 850;
}

h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.hero-lede {
  margin: 26px auto 0;
  max-width: 660px;
  font-size: 26px;
  line-height: 1.55;
}

.hero-copy {
  max-width: 620px;
  margin: 18px auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(68, 59, 52, 0.1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(68, 59, 52, 0.14);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(68, 59, 52, 0.1);
}

.button.primary {
  background: var(--text);
  color: var(--cream);
}

.button.primary:hover {
  background: #352f2a;
}

.button.quiet {
  background: rgba(252, 249, 244, 0.72);
  border-color: rgba(68, 59, 52, 0.18);
}

.button.quiet:hover {
  background: var(--cream);
  border-color: rgba(68, 59, 52, 0.28);
}

.button.full {
  width: 100%;
}

.section {
  padding: 96px clamp(20px, 5vw, 64px);
  scroll-margin-top: 86px;
}

.section.muted,
.intro-band {
  background:
    linear-gradient(180deg, rgba(252, 249, 244, 0.22), rgba(252, 249, 244, 0)),
    var(--sand);
}

.content {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.content.narrow {
  width: min(760px, 100%);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.text-flow > * + * {
  margin-top: 18px;
}

.standout {
  margin-top: 34px;
  padding-right: 24px;
  border-right: 4px solid var(--anchor);
  font-size: 24px;
  line-height: 1.55;
  font-weight: 800;
}

.emphasis {
  display: inline;
  font-weight: 900;
  color: var(--text);
  box-shadow: inset 0 -0.42em 0 rgba(169, 144, 105, 0.28);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.block-emphasis {
  display: block;
  margin-top: 14px;
  padding: 10px 14px;
  border-right: 4px solid var(--anchor);
  border-radius: var(--radius);
  background: rgba(169, 144, 105, 0.14);
  box-shadow: none;
}

.home-return-stack {
  display: inline;
}

.soft-underline {
  font-weight: 900;
  box-shadow: inset 0 -0.42em 0 rgba(169, 144, 105, 0.28);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.text-link,
.footer-link,
.inline-button {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--anchor);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.inline-button,
.footer-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.text-link:hover,
.footer-link:hover,
.inline-button:hover {
  color: var(--anchor);
}

.text-link {
  transition: color 160ms ease, text-underline-offset 160ms ease;
}

.text-link:hover {
  text-underline-offset: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.workshop-heading p {
  max-width: 720px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.person-card,
.registration-form,
.thank-you-details {
  background: var(--cream);
  border: 1px solid rgba(68, 59, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.steps article:hover,
.person-card:hover,
.registration-form:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 144, 105, 0.34);
  box-shadow: var(--lift-shadow);
}

.steps article {
  padding: 28px;
  min-height: 300px;
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--anchor);
  font-weight: 900;
  font-size: 18px;
}

.process-note {
  max-width: 840px;
  margin: 30px auto 0;
  padding: 22px 26px;
  background: rgba(252, 249, 244, 0.72);
  border-right: 4px solid var(--anchor);
  border-radius: var(--radius);
  font-size: 21px;
  line-height: 1.65;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(169, 144, 105, 0.14);
}

.facilitators {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.person-card {
  overflow: hidden;
}

.person-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: var(--stone);
  filter: saturate(0.92) contrast(0.98);
  transition: transform 420ms ease, filter 420ms ease;
}

.person-card .luba-photo {
  object-position: 50% 18%;
}

.person-card:hover img {
  transform: scale(1.018);
  filter: saturate(1) contrast(1);
}

.person-card div {
  padding: 28px;
}

.credential {
  margin-top: 22px;
  padding: 18px;
  background: rgba(231, 220, 207, 0.58);
  border-right: 4px solid var(--anchor);
  border-radius: var(--radius);
  font-weight: 800;
}

.details-band {
  background:
    linear-gradient(135deg, rgba(169, 144, 105, 0.16), rgba(68, 59, 52, 0) 38%),
    var(--text);
  color: var(--cream);
}

.details-band .eyebrow {
  color: var(--stone);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.details-list div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(252, 249, 244, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(252, 249, 244, 0.095), rgba(252, 249, 244, 0.032)),
    rgba(252, 249, 244, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.details-list div::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--anchor), transparent);
  opacity: 0.58;
}

.details-list div:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 249, 244, 0.34);
  background:
    linear-gradient(145deg, rgba(252, 249, 244, 0.14), rgba(252, 249, 244, 0.052)),
    rgba(252, 249, 244, 0.045);
}

.details-list dt {
  color: var(--stone);
  font-size: 14px;
  font-weight: 800;
}

.details-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.registration-section {
  background:
    linear-gradient(180deg, rgba(252, 249, 244, 0.34), rgba(252, 249, 244, 0)),
    var(--stone);
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.registration-copy {
  position: sticky;
  top: 110px;
}

.registration-copy h2 {
  font-size: 42px;
}

.registration-subtitle {
  margin: 18px 0 16px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.registration-form {
  padding: 30px;
}

.registration-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
}

.registration-form input[type="text"],
.registration-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(68, 59, 52, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.registration-form input:focus {
  outline: 3px solid rgba(169, 144, 105, 0.35);
  border-color: var(--anchor);
  box-shadow: 0 12px 26px rgba(68, 59, 52, 0.08);
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 700 !important;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

.form-message {
  min-height: 30px;
  margin: 8px 0 16px;
  font-size: 15px;
  font-weight: 800;
}

.form-message.error {
  color: #8a2f27;
}

.form-message.success {
  color: #3f6448;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--cream);
  border: 1px solid rgba(68, 59, 52, 0.12);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 10px 24px rgba(68, 59, 52, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(169, 144, 105, 0.3);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 850;
  text-align: right;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(169, 144, 105, 0.4);
  border-radius: 50%;
  color: var(--anchor);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::before {
  content: "−";
  background: rgba(169, 144, 105, 0.12);
  transform: rotate(180deg);
}

.faq-list p {
  margin: 14px 0 0;
  animation: faqReveal 180ms ease both;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(252, 249, 244, 0), rgba(222, 208, 198, 0.38));
}

.site-footer {
  padding: 36px clamp(20px, 5vw, 64px);
  background: var(--text);
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
}

.footer-links a,
.footer-link {
  color: var(--cream);
}

.cancel-link {
  font-weight: 900;
  text-decoration-color: var(--stone);
}

.footer-cancel-note,
.copyright {
  max-width: 840px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(252, 249, 244, 0.86);
}

.footer-cancel-note a {
  color: var(--cream);
}

.copyright {
  margin-top: 14px;
}

.whatsapp-float {
  position: fixed;
  inset-inline-start: auto;
  inset-inline-end: auto;
  left: 22px;
  right: auto;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(252, 249, 244, 0.54);
  border-radius: 999px;
  background: #2f7d4b;
  color: var(--cream);
  text-decoration: none;
  box-shadow: var(--shadow);
  font-size: 16px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  animation: whatsappFloat 3.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #25683e;
  box-shadow: 0 26px 64px rgba(47, 125, 75, 0.28);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.legal-modal {
  width: min(760px, calc(100% - 32px));
  max-height: min(760px, calc(100svh - 40px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  box-shadow: var(--shadow);
  animation: modalIn 180ms ease both;
}

.legal-modal::backdrop {
  background: rgba(68, 59, 52, 0.45);
}

.modal-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: var(--cream);
  border-bottom: 1px solid rgba(68, 59, 52, 0.12);
}

.modal-header h2 {
  font-size: 26px;
}

.icon-button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(68, 59, 52, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.modal-content {
  padding: 24px;
  max-height: calc(min(760px, 100svh - 40px) - 80px);
  overflow: auto;
}

.modal-content h3 {
  margin-top: 28px;
}

.modal-content h4 {
  margin: 22px 0 10px;
  font-size: 1rem;
}

.modal-content ul {
  margin: 10px 0 18px;
  padding-inline-start: 22px;
}

.modal-content li + li {
  margin-top: 8px;
}

.cancel-form {
  margin-top: 24px;
}

.cancel-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

.cancel-form input,
.cancel-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(68, 59, 52, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.cancel-form input {
  min-height: 52px;
}

.cancel-form textarea {
  resize: vertical;
}

.cancel-form input:focus,
.cancel-form textarea:focus {
  outline: 3px solid rgba(169, 144, 105, 0.35);
  border-color: var(--anchor);
}

.thank-you-page {
  min-height: 100svh;
  background: var(--sand);
}

.thank-you-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 34px 20px;
}

.thank-you-hero {
  width: min(800px, 100%);
  padding: clamp(32px, 6vw, 72px);
  background: var(--cream);
  border: 1px solid rgba(68, 59, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-hero h1 {
  font-size: 48px;
}

.thank-you-details {
  margin-top: 30px;
  padding: 24px;
}

.thank-you-details h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.small-note,
.signature {
  margin-top: 28px;
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.76, 0.28, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBreathe {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(0, -10px, 0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes detailSettle {
  0% {
    box-shadow: 0 0 0 rgba(169, 144, 105, 0);
  }

  45% {
    box-shadow: 0 20px 48px rgba(169, 144, 105, 0.16);
  }

  100% {
    box-shadow: 0 0 0 rgba(169, 144, 105, 0);
  }
}

.details-list div.is-visible {
  animation: detailSettle 900ms ease both;
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: auto;
    z-index: 25;
    display: grid;
    width: min(226px, calc(100vw - 36px));
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(68, 59, 52, 0.14);
    border-radius: var(--radius);
    background: rgba(252, 249, 244, 0.98);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    text-align: right;
    font-weight: 800;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(231, 220, 207, 0.52);
    color: var(--text);
  }

  .mobile-menu-toggle {
    display: inline-grid;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    min-height: calc(92svh - 70px);
    --hero-bg-position: 46% center;
  }

  .hero::before {
    background-position: var(--hero-bg-position);
  }

  .hero-lede {
    font-size: 22px;
  }

  .two-column,
  .facilitators,
  .details-grid,
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-copy {
    position: static;
  }

  .details-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16.5px;
    line-height: 1.72;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 18px;
  }

  .brand {
    font-size: 16px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  h2 {
    font-size: 27px;
    line-height: 1.32;
  }

  h3 {
    font-size: 20px;
  }

  .section {
    padding-block: 56px;
    padding-inline: 20px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    align-items: center;
    --hero-bg-position: 4% center;
    --hero-overlay:
      radial-gradient(circle at 50% 43%, rgba(252, 249, 244, 0.84) 0%, rgba(252, 249, 244, 0.66) 38%, rgba(247, 243, 237, 0.46) 70%, rgba(247, 243, 237, 0.64) 100%),
      linear-gradient(180deg, rgba(247, 243, 237, 0.62), rgba(247, 243, 237, 0.34) 50%, rgba(247, 243, 237, 0.76));
  }

  .hero::before {
    inset: 0;
    height: auto;
    background-size: cover;
    background-position: var(--hero-bg-position);
    transform: scale(1.04);
    animation: heroBreathe 14s ease-in-out infinite alternate;
  }

  .hero-inner {
    width: min(100% - 32px, 760px);
    padding-block: 58px 84px;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 16.5px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .two-column,
  .details-grid,
  .registration-layout {
    gap: 26px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .standout {
    margin-top: 26px;
    padding-right: 18px;
    font-size: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps article {
    min-height: auto;
    padding: 22px;
  }

  .steps span {
    margin-bottom: 12px;
  }

  .process-note {
    margin-top: 22px;
    padding: 18px 20px;
    font-size: 18px;
  }

  .home-return-stack {
    display: block;
    margin-top: 14px;
  }

  .home-return-stack > span {
    display: block;
  }

  .home-return-stack > * + * {
    margin-top: 6px;
  }

  .home-return-stack > .emphasis {
    display: inline;
  }

  .person-card div {
    padding: 22px;
  }

  .person-card img {
    aspect-ratio: 5 / 4;
  }

  .person-card .luba-photo {
    object-position: 50% 12%;
  }

  .credential {
    margin-top: 18px;
    padding: 16px;
  }

  .details-list {
    gap: 10px;
  }

  .details-list div,
  .faq-list details {
    padding: 16px;
  }

  .details-list div {
    padding-top: 20px;
  }

  .faq-list summary {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .registration-copy h2 {
    font-size: 31px;
  }

  .registration-subtitle {
    font-size: 19px;
  }

  .registration-form {
    padding: 20px;
  }

  .registration-form input[type="text"],
  .registration-form input[type="tel"],
  .cancel-form input {
    min-height: 50px;
  }

  .checkbox-row {
    gap: 8px;
    font-size: 15.5px;
  }

  .site-footer {
    padding-block: 34px 96px;
  }

  .footer-links {
    gap: 12px 16px;
  }

  .footer-cancel-note,
  .copyright {
    font-size: 13.5px;
  }

  .legal-modal {
    width: min(100% - 20px, 760px);
    max-height: calc(100svh - 20px);
  }

  .modal-header {
    padding: 16px 18px;
  }

  .modal-header h2 {
    font-size: 23px;
  }

  .modal-content {
    padding: 18px;
    max-height: calc(100svh - 92px);
  }

  .thank-you-main {
    padding: 20px 12px;
  }

  .thank-you-hero {
    padding: 28px 18px;
  }

  .thank-you-hero h1 {
    font-size: 31px;
  }

  .thank-you-details {
    margin-top: 24px;
    padding: 18px;
  }

  .thank-you-details h2 {
    font-size: 23px;
  }

  .whatsapp-float {
    inset-inline-start: auto;
    inset-inline-end: auto;
    left: 14px;
    right: auto;
    bottom: 14px;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}
