:root {
  --sage: #76846f;
  --sage-deep: #62715e;
  --cream: #f4efe6;
  --warm-white: #fbfaf7;
  --sepia: #655848;
  --shadow-soft: 0 16px 32px rgba(48, 41, 32, 0.18);
  --shadow-card: 0 14px 20px rgba(34, 26, 18, 0.2);
  --text-dark: #2d2d2b;
  --gold-soft: #d8be9a;
  --header-offset: 9.75rem;
  --shell-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  background: #ece8dd;
  font-size: 13.5px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-shell {
  width: min(calc(100% - 2rem), var(--shell-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: transform 320ms ease;
}

.topbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(28, 25, 20, 0.08);
  max-height: 8rem;
  overflow: hidden;
  transform-origin: top center;
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease;
}

.topbar-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  font-weight: 700;
  color: #10100f;
  text-shadow: 0 10px 18px rgba(18, 15, 10, 0.18);
}

.brand img {
  flex: 0 0 4.625rem;
  width: 4.625rem;
  height: 4.625rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.call-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: #201d19;
  text-shadow: 0 8px 14px rgba(15, 11, 8, 0.14);
}

.call-chip small,
.call-chip strong {
  display: block;
}

.call-chip small {
  font-size: 0.95rem;
}

.call-chip strong {
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}

.icon-shell,
.social-links a,
.mini-icon,
.social-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-shell {
  width: 2.05rem;
  height: 2.05rem;
}

.icon-shell svg,
.social-links svg,
.mini-icon svg,
.social-square svg {
  width: 100%;
  height: 100%;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  width: 2.35rem;
  height: 2.35rem;
  color: #1f1e1b;
  filter: drop-shadow(0 8px 12px rgba(15, 12, 10, 0.18));
}

.main-nav {
  background: rgba(115, 130, 111, 0.97);
  box-shadow: 0 10px 18px rgba(25, 25, 22, 0.2);
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
}

.nav-inner {
  position: relative;
  min-height: 4.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2.7rem);
  transition:
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 320ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 3.35rem;
  height: 3.35rem;
  margin-left: auto;
  padding: 0.75rem;
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 16px rgba(18, 18, 16, 0.12);
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 0.14rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  transition: transform 240ms ease, opacity 240ms ease;
}

.nav-brand {
  display: none;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.18rem;
  font-weight: 700;
  text-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
}

.nav-brand img {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border-radius: 50%;
  box-shadow: 0 8px 14px rgba(18, 15, 10, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: inherit;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    font-size 320ms ease,
    letter-spacing 320ms ease;
}

.site-header.is-compact .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-0.75rem) scaleY(0.92);
  box-shadow: none;
}

.site-header.is-compact .main-nav {
  background: rgba(104, 119, 100, 0.9);
  box-shadow: 0 12px 24px rgba(25, 25, 22, 0.18);
  backdrop-filter: blur(12px);
}

.site-header.is-compact .nav-inner {
  min-height: 3.65rem;
  gap: clamp(0.8rem, 1.4vw, 2rem);
  padding: 0.15rem 0;
}

.site-header.is-compact .nav-links a {
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}

.screen {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-offset) + 2rem) 0 4rem;
  background-image: linear-gradient(rgba(247, 242, 233, 0.08), rgba(247, 242, 233, 0.08)), var(--section-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.hero-screen {
  display: grid;
  align-items: center;
}

.hero-shell,
.about-shell,
.numbers-shell,
.consultation-shell,
.reviews-shell {
  position: relative;
  z-index: 1;
}

.hero-shell {
  min-height: calc(100svh - var(--header-offset) - 6rem);
  display: flex;
  align-items: center;
}

.hero-card {
  position: relative;
  max-width: 21rem;
  padding: 1.6rem 1.5rem 1.35rem;
  margin-left: clamp(0rem, 3vw, 1.5rem);
  border-radius: 1.5rem;
  background: rgba(134, 134, 129, 0.35);
  backdrop-filter: blur(13px);
  box-shadow: var(--shadow-soft);
  color: #fffefb;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 48%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
  z-index: -1;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(2rem - 1px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: -1;
}

.hero-name {
  margin: 0 0 0.7rem;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  text-shadow: 0 10px 18px rgba(25, 18, 12, 0.24);
}

.hero-card h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  line-height: 0.98;
  text-shadow: 0 10px 20px rgba(25, 18, 12, 0.3);
}

.hero-copy {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  line-height: 1.2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  margin-top: 1.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(223, 223, 219, 0.92));
  color: #5f5c55;
  font-size: clamp(1.05rem, 1.25vw, 1.4rem);
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(42, 35, 25, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(42, 35, 25, 0.2);
}

.about-screen {
  padding-bottom: 3.8rem;
}

.about-screen::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.22), rgba(255, 250, 242, 0.34)),
    radial-gradient(circle at 50% 8%, rgba(255, 250, 240, 0.66), rgba(255, 250, 240, 0.08) 56%);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(260px, 22rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 6rem);
  padding-top: 1.4rem;
}

.portrait-card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  width: min(100%, 21rem);
  justify-self: center;
}

.about-copy {
  max-width: 34rem;
  text-shadow: 0 10px 18px rgba(24, 18, 12, 0.12);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: #191815;
}

.section-kicker strong {
  font-size: clamp(1.85rem, 2.5vw, 3rem);
}

.section-kicker-mark {
  width: 0.6rem;
  height: 3.7rem;
  border-radius: 999px;
  background: #111;
  box-shadow: 0 10px 16px rgba(17, 17, 17, 0.15);
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.75vw, 2.9rem);
  font-weight: 400;
}

.about-copy p {
  margin: 0;
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  line-height: 1.08;
}

.about-intro {
  margin-bottom: 1.15rem;
}

.about-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 18px rgba(34, 26, 18, 0.12);
  color: #26231f;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.about-more-toggle::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.about-copy.is-open .about-more-toggle::after {
  transform: rotate(45deg);
}

.about-more-toggle:hover,
.about-more-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(34, 26, 18, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.about-more-panel {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 24px rgba(34, 26, 18, 0.12);
  transition: max-height 360ms ease, padding 360ms ease, margin-top 360ms ease;
}

.about-copy.is-open .about-more-panel {
  margin-top: 1.15rem;
  padding: 1.25rem 1.35rem;
}

.about-subline {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-more-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
}

.about-more-panel p {
  font-size: 1.06rem;
  line-height: 1.45;
}

.about-more-panel p + p {
  margin-top: 0.85rem;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}

.value-pill {
  display: grid;
  place-items: center;
  min-height: 4.65rem;
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  text-align: center;
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.05;
}

.progress-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  width: min(48rem, 100%);
  margin: 4rem auto 0;
  padding-top: 0.8rem;
}

.progress-track::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 1.7rem;
  height: 0.2rem;
  background: #667965;
}

.progress-track span {
  justify-self: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #627764;
  box-shadow: 0 8px 18px rgba(63, 73, 58, 0.26);
}

.section-heading {
  margin: 0 0 2.6rem;
  text-align: center;
  color: #201d19;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 400;
  text-shadow: 0 10px 18px rgba(26, 20, 14, 0.14);
}

.sessions-screen::before,
.online-screen::before,
.online-questions-screen::before,
.library-screen::before,
.faq-screen::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.2), rgba(255, 249, 238, 0.28)),
    radial-gradient(circle at 50% 10%, rgba(255, 250, 240, 0.8), rgba(255, 250, 240, 0.06) 60%);
}

.sessions-shell,
.online-shell,
.online-questions-shell,
.library-shell,
.faq-shell {
  position: relative;
  z-index: 1;
}

.library-shell {
  display: grid;
  gap: 2.2rem;
}

.library-intro {
  width: min(42rem, 100%);
  margin: -0.6rem auto 0;
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.5;
  color: rgba(39, 34, 29, 0.88);
  text-shadow: 0 8px 16px rgba(255, 250, 242, 0.26);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.library-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 28px rgba(34, 26, 18, 0.16);
}

.library-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 18px rgba(20, 16, 12, 0.16);
}

.library-copy {
  display: grid;
  gap: 0.25rem;
}

.library-copy h3 {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.15;
}

.library-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(56, 49, 43, 0.86);
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  transition: opacity 320ms ease, transform 320ms ease;
}

.sessions-shell.is-transitioning .sessions-grid {
  opacity: 0;
  transform: translateY(1rem) scale(0.985);
  pointer-events: none;
}

.sessions-shell.is-detail-open .sessions-grid {
  display: none;
}

.session-card {
  position: relative;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.65rem 1.35rem;
  border: 0;
  border-radius: 1.55rem;
  background: rgba(110, 110, 106, 0.58);
  color: #fffef9;
  font-family: Georgia, "Times New Roman", serif;
  text-align: left;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  animation: sessionGlow 6s ease-in-out infinite;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.session-card:nth-child(2) {
  animation-delay: 0.8s;
}

.session-card:nth-child(3) {
  animation-delay: 1.6s;
}

.session-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 46%);
  opacity: 0.45;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: -2;
}

.session-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.16) 50%, transparent 85%);
  transform: translateX(-135%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.session-card:hover,
.session-card:focus-visible {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 36px rgba(34, 26, 18, 0.28);
  background: rgba(102, 102, 98, 0.72);
}

.session-card:hover::before,
.session-card:focus-visible::before {
  opacity: 0.8;
  transform: translateY(-0.6rem);
}

.session-card:hover::after,
.session-card:focus-visible::after,
.session-card.is-selected::after {
  transform: translateX(135%);
}

.session-card.is-selected {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 40px rgba(34, 26, 18, 0.3);
  background: rgba(100, 100, 96, 0.78);
}

.session-card-title {
  display: block;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 400;
  font-family: inherit;
}

.session-card-copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.16;
}

.session-card-link {
  display: block;
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: 700;
}

.session-detail-stack {
  width: min(58rem, 100%);
  margin: 0 auto;
}

.sessions-shell.is-detail-open .session-detail-stack {
  animation: sessionDetailIn 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.session-detail {
  padding: 1.9rem 1.9rem 1.5rem;
  border-radius: 2rem;
  background: rgba(108, 108, 104, 0.62);
  color: #fffef9;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 28px rgba(34, 26, 18, 0.24);
  position: relative;
  overflow: hidden;
}

.session-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.session-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.session-detail-header h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
}

.session-back {
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fffef9;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.session-detail-body {
  max-height: min(58vh, 34rem);
  overflow-y: auto;
  padding-right: 0.9rem;
  text-align: left;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.18;
  scrollbar-width: thin;
  scrollbar-color: rgba(85, 85, 85, 0.85) rgba(255, 255, 255, 0.08);
}

.session-detail-body::-webkit-scrollbar {
  width: 0.7rem;
}

.session-detail-body::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.session-detail-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(87, 87, 84, 0.92);
}

.session-detail-body p,
.session-detail-body ul {
  margin: 0 0 1rem;
}

.session-detail-body ul {
  padding-left: 1.1rem;
}

.session-detail-body li + li {
  margin-top: 0.5rem;
}

.online-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  width: min(54rem, 100%);
  margin: 0 auto;
}

.online-card,
.online-faq-card,
.faq-item {
  border-radius: 1.55rem;
  background: rgba(110, 110, 106, 0.58);
  color: #fffef9;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.online-card {
  min-height: 17rem;
  padding: 1.7rem 1.45rem;
  text-align: left;
}

.online-card h3,
.online-faq-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 700;
}

.online-card p,
.online-faq-card p {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.18;
}

.online-card p + p,
.online-faq-card p + p {
  margin-top: 1rem;
}

.online-faq-grid {
  width: min(52rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem;
}

.online-faq-card {
  padding: 1.5rem 1.35rem;
  text-align: left;
}

.online-faq-card--wide {
  grid-column: 1 / -1;
}

.faq-list {
  width: min(50rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}

.faq-item {
  min-width: 0;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(34, 26, 18, 0.22);
}

.faq-item.is-open {
  background: rgba(78, 78, 76, 0.82);
}

.faq-question {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: transparent;
  color: #fffef9;
  font: inherit;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.35rem;
  font-size: 1.65rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: #fffef9;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 320ms ease, padding 320ms ease, opacity 220ms ease;
}

.faq-answer,
.faq-answer p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.faq-item.is-open .faq-answer {
  height: auto;
  padding: 0 1.5rem 1.5rem;
  opacity: 1;
  visibility: visible;
}

.faq-answer p {
  margin: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.24;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.faq-answer p + p {
  margin-top: 1rem;
}

.numbers-screen::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.24), rgba(255, 249, 238, 0.28)),
    radial-gradient(circle at 50% 12%, rgba(255, 250, 240, 0.84), rgba(255, 250, 240, 0.04) 58%);
}

.numbers-shell {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: calc(100svh - var(--header-offset) - 6rem);
}

.numbers-shell h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  font-weight: 400;
  text-shadow: 0 10px 18px rgba(26, 20, 14, 0.12);
}

.quote {
  margin: 1.7rem 0 0;
  max-width: 26rem;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  line-height: 1.05;
}

.quote-rule {
  width: 15.5rem;
  height: 0.1rem;
  margin: 2rem auto 3.2rem;
  background: rgba(62, 66, 71, 0.5);
}

.stats-grid {
  width: min(48rem, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 0.8rem 1.5rem;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(106, 103, 97, 0.2);
}

.stat-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-soft);
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  font-weight: 400;
  text-shadow: 0 12px 16px rgba(62, 48, 29, 0.18);
}

.stat-item span {
  display: block;
  max-width: 10ch;
  margin: 0 auto;
  font-size: clamp(1.4rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 0.95;
  
}

.consultation-screen::before,
.reviews-screen::before {
  background:
    linear-gradient(180deg, rgba(24, 20, 15, 0.34), rgba(24, 20, 15, 0.44)),
    radial-gradient(circle at 50% 12%, rgba(255, 241, 220, 0.18), rgba(255, 241, 220, 0.02) 56%);
}

.consultation-shell {
  padding-top: 0.5rem;
}

.section-kicker--light {
  color: #fffdf8;
  text-shadow: 0 10px 16px rgba(0, 0, 0, 0.22);
}

.section-kicker--light .section-kicker-mark {
  background: #fffdf8;
}

.consult-grid {
  display: grid;
  grid-template-columns: minmax(240px, 14.5rem) minmax(0, 40rem);
  justify-content: center;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  margin-top: 3.5rem;
}

.contact-column {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-height: 4rem;
  padding: 0.68rem 0.78rem 0.68rem 0.82rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  color: #3a3631;
}

.contact-card strong {
  font-size: clamp(1rem, 1vw, 1.05rem);
  line-height: 1;
}

.mini-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
}

.social-stack {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.2rem;
  
}

.social-square {
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.96);
  color: #272522;
  box-shadow: var(--shadow-card);
  
}

.booking-card {
  width: min(100%, 40rem);
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.3rem 1.45rem 1.25rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 28px rgba(15, 10, 8, 0.22);
}

.booking-tabs {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.booking-tab {
  min-width: 7.35rem;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #ebebe8);
  box-shadow: 0 10px 18px rgba(37, 30, 22, 0.18);
  color: #413c36;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-tab.is-active {
  background: linear-gradient(180deg, #fdfdfd, #f1eee9);
}

.booking-panel {
  min-height: 14.25rem;
  margin-top: 1.35rem;
  padding: 1.85rem 1.5rem;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, #fcfcfb, #f2f1ee);
  box-shadow: inset 0 0 0 1px rgba(114, 111, 106, 0.04), 0 12px 20px rgba(28, 23, 18, 0.12);
}

.booking-title {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 700;
}

.booking-subtitle {
  margin: 0.55rem 0 1.4rem;
  color: #5e574f;
  font-size: 1.2rem;
}

.booking-slots {
  display: grid;
  gap: 0.7rem;
  color: #433f3a;
  font-size: 1.2rem;
}

.booking-map-shell {
  margin-top: 0.35rem;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(114, 111, 106, 0.06), 0 10px 18px rgba(28, 23, 18, 0.1);
}

.booking-map {
  width: 100%;
  height: 19rem;
  border: 0;
  display: block;
}

.booking-link {
  margin-top: 0.9rem;
  align-self: flex-start;
  color: #57524c;
  font-size: 1rem;
  font-weight: 700;
}

@keyframes sessionGlow {
  0%,
  100% {
    box-shadow: 0 14px 20px rgba(34, 26, 18, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 18px 30px rgba(34, 26, 18, 0.24);
    filter: brightness(1.03);
  }
}

@keyframes sessionDetailIn {
  0% {
    opacity: 0;
    transform: translateY(1.2rem) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reviews-shell {
  display: grid;
  align-content: start;
}

.reviews-shell h2 {
  margin: 0 0 3rem;
  text-align: center;
  color: #fffdf7;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  font-weight: 400;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.reviews-layout {
  display: grid;
  gap: 3.2rem;
  align-items: start;
}

.review-card {
  padding: 1.15rem 1.45rem 1.35rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 26px rgba(8, 6, 5, 0.22);
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.review-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 1.6vw, 1.6rem);
  line-height: 0.95;
}

.review-card p {
  margin: 0.7rem 0 0;
  font-size: clamp(0.98rem, 1.15vw, 1.15rem);
  line-height: 1.08;
}

.stars {
  color: #ffa45b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-card--left {
  width: min(36.5rem, 100%);
  margin-left: 1.6rem;
}

.review-card--right {
  width: min(38.5rem, 100%);
  justify-self: end;
  margin-right: 0.4rem;
}

.review-card--center {
  width: min(36.5rem, 100%);
  justify-self: center;
}

.review-card--placeholder {
  width: min(35.5rem, 100%);
  min-height: 10.3rem;
  justify-self: center;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  color: #3b3530;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card--link {
  width: fit-content;
  min-height: auto;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
}
.review-card--link:hover,
.review-card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(8, 6, 5, 0.22);
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, var(--reveal-distance, 2rem), 0) scale(0.975);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal[data-reveal="left"] {
  transform: translate3d(calc(var(--reveal-distance, 2rem) * -1), 0, 0) scale(0.975);
}

.reveal[data-reveal="right"] {
  transform: translate3d(var(--reveal-distance, 2rem), 0, 0) scale(0.975);
}

.reveal[data-reveal="zoom"] {
  transform: translate3d(0, 0.75rem, 0) scale(0.9);
}

.reveal[data-reveal="soft"] {
  transform: translate3d(0, 1.2rem, 0) scale(1);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-offset: 12.2rem;
  }

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

  .session-card:last-child {
    grid-column: 1 / -1;
    width: min(22rem, 100%);
    justify-self: center;
  }

  .online-grid,
  .online-faq-grid,
  .library-grid {
    width: min(44rem, 100%);
  }

  .library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
  }

  .topbar-inner,
  .header-actions {
    flex-direction: column;
    gap: 0.9rem;
  }

  .topbar-inner {
    padding: 1rem 0;
  }

  .hero-shell,
  .numbers-shell {
    min-height: auto;
  }

  .about-shell,
  .consult-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .section-kicker,
  .consultation-shell {
    justify-self: center;
  }

  .session-detail {
    width: min(100%, 52rem);
    margin: 0 auto;
  }

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

  .booking-card {
    max-width: 35rem;
  }

  .review-card--left,
  .review-card--right,
  .review-card--center,
  .review-card--placeholder {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  :root {
    --header-offset: 12.8rem;
  }

  .sessions-grid,
  .online-grid,
  .online-faq-grid,
  .library-grid {
    grid-template-columns: 1fr;
    width: min(32rem, 100%);
  }

  .session-card:last-child,
  .online-faq-card--wide {
    grid-column: auto;
    width: 100%;
  }

  .session-card {
    min-height: 20rem;
  }

  .session-detail-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list {
    width: min(38rem, 100%);
  }

  .topbar-inner {
    align-items: center;
    gap: 0.95rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .call-chip {
    justify-content: center;
  }

  .nav-inner {
    min-height: 4.2rem;
    justify-content: flex-end;
    padding: 0.35rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.55rem;
    padding: 0.8rem;
    border-radius: 1.35rem;
    background: rgba(101, 117, 98, 0.96);
    box-shadow: 0 16px 26px rgba(23, 22, 19, 0.24);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.8rem) scale(0.985);
    transition:
      opacity 260ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 1.02rem;
  }

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

  .site-header.is-nav-open .nav-toggle {
    background: rgba(255, 255, 255, 0.22);
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(0.42rem) rotate(45deg);
  }

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

  .site-header.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-0.42rem) rotate(-45deg);
  }

  .site-header.is-compact .nav-inner {
    min-height: 3.8rem;
  }

  .hero-shell {
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 32rem;
    margin-inline: auto;
  }

  .about-shell {
    gap: 2rem;
  }

  .about-copy {
    max-width: 100%;
  }

  .values-row {
    gap: 1.15rem;
    margin-top: 3rem;
  }

  .numbers-shell {
    min-height: auto;
  }

  .stats-grid {
    width: min(36rem, 100%);
  }

  .consult-grid {
    gap: 2rem;
  }

  .contact-column {
    width: min(100%, 28rem);
    margin: 0 auto;
  }

  .booking-card {
    width: min(100%, 36rem);
  }

  .reviews-layout {
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 9.75rem;
  }

  .section-shell {
    width: min(calc(100% - 1.25rem), var(--shell-width));
  }

  .topbar {
    max-height: 4.6rem;
    box-shadow: 0 10px 18px rgba(28, 25, 20, 0.1);
  }

  .topbar-inner {
    min-height: 4.2rem;
    justify-content: center;
    gap: 0.5rem;
  }

  .topbar .brand,
  .topbar .social-links {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .call-chip {
    justify-content: center;
    gap: 0.95rem;
    width: auto;
    max-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .call-chip small {
    display: block;
  }

  .call-chip .icon-shell {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 1.75rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    box-shadow: none;
  }

  .call-chip strong {
    font-size: clamp(1.35rem, 1.8vw, 1.65rem);
    line-height: 1.1;
    letter-spacing: 0;
  }

  .nav-brand {
    display: inline-flex;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-inner {
    min-height: 3.7rem;
    padding: 0.15rem 0;
  }

  .screen {
    min-height: auto;
    padding-top: calc(var(--header-offset) + 1rem);
    padding-bottom: 3rem;
  }

  .hero-screen {
    background-position: 60% center;
  }

  .hero-shell {
    min-height: calc(100svh - var(--header-offset) - 4.5rem);
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }

  .section-heading {
    margin-bottom: 1.8rem;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-card {
    max-width: min(18rem, 88vw);
    margin-inline: auto;
    padding: 1.35rem 1.15rem 1.15rem;
    border-radius: 1.3rem;
    background: rgba(134, 134, 129, 0.35);
    backdrop-filter: blur(13px);
  }

  .hero-card h1 {
    font-size: clamp(1.1rem, 6.2vw, 1.5rem);
    margin-bottom: 0.65rem;
  }

  .hero-name {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 15ch;
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.86rem;
  }

  .about-shell {
    gap: 1.45rem;
    padding-top: 0.35rem;
  }

  .portrait-card {
    width: min(100%, 17.5rem);
  }

  .section-kicker {
    gap: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .section-kicker strong {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .section-kicker-mark {
    width: 0.5rem;
    height: 2.8rem;
  }

  .about-copy h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .about-copy p {
    font-size: 1.12rem;
    line-height: 1.2;
  }

  .about-more-toggle {
    padding: 0.8rem 1.1rem;
    font-size: 1rem;
  }

  .about-more-panel {
    border-radius: 1.2rem;
  }

  .about-copy.is-open .about-more-panel {
    padding: 1rem;
  }

  .about-subline {
    font-size: 0.92rem;
  }

  .about-more-panel h3 {
    font-size: 1.2rem;
  }

  .about-more-panel p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .sessions-grid,
  .online-grid,
  .online-faq-grid,
  .library-grid,
  .faq-list {
    width: min(36rem, 100%);
    gap: 1rem;
  }

  .library-shell {
    gap: 1.5rem;
  }

  .library-intro {
    margin-top: -0.25rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .library-card {
    padding: 0.85rem;
    border-radius: 1.15rem;
  }

  .library-card img {
    border-radius: 0.85rem;
  }

  .library-copy h3 {
    font-size: 1rem;
  }

  .library-copy p {
    font-size: 0.88rem;
  }

  .session-card,
  .online-card,
  .online-faq-card {
    border-radius: 1.25rem;
  }

  .session-card {
    min-height: auto;
    padding: 1.15rem 1rem;
    gap: 0.8rem;
    align-items: flex-start;
    text-align: left;
  }

  .session-card-title {
    font-size: 1.05rem;
  }

  .session-card-copy {
    -webkit-line-clamp: 8;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .session-card-link {
    font-size: 1rem;
  }

  .session-detail {
    padding: 1.1rem;
    border-radius: 1.35rem;
  }

  .session-detail-header {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.8rem;
  }

  .session-detail-header h3 {
    font-size: 1.45rem;
    text-align: left;
  }

  .session-back {
    align-self: flex-end;
    font-size: 0.92rem;
  }

  .session-detail-body {
    max-height: min(52vh, 26rem);
    padding-right: 0.5rem;
    font-size: 1rem;
    line-height: 1.24;
  }

  .online-card,
  .online-faq-card {
    min-height: auto;
    padding: 1.2rem 1rem;
    text-align: left;
  }

  .online-card h3,
  .online-faq-card h3 {
    font-size: 1.25rem;
  }

  .online-card p,
  .online-faq-card p,
  .faq-answer p {
    font-size: 0.98rem;
    line-height: 1.26;
  }

  .faq-item {
    border-radius: 1.2rem;
    background: rgba(70, 70, 68, 0.82);
    width: min(36rem, 100%);
    margin-inline: auto;
  }

  .faq-question {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.1rem 3.2rem 1.1rem 1.25rem;
    font-size: 1.05rem;
    line-height: 1.28;
    text-align: left;
    max-width: 100%;
  }

  .faq-question::after {
    right: 1rem;
    top: 1.02rem;
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.2rem;
    text-align: left;
    max-width: 100%;
  }

  .faq-answer {
    display: none;
  }

  .faq-item.is-open .faq-answer {
    display: block;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(106, 103, 97, 0.2);
  }

  .values-row {
    position: relative;
    margin-top: 2.2rem;
    padding-left: 2.9rem;
    gap: 0.95rem;
    grid-template-columns: 1fr;
  }

  .values-row::before {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 0.18rem;
    border-radius: 999px;
    background: #667965;
  }

  .value-pill {
    position: relative;
    min-height: 3.9rem;
    padding: 0.9rem 1rem;
  }

  .value-pill::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2.35rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #627764;
    box-shadow: 0 8px 18px rgba(63, 73, 58, 0.26);
    transform: translateY(-50%);
  }

  .progress-track {
    display: none;
  }

  .numbers-shell h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .quote {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .quote-rule {
    width: min(12rem, 65%);
    margin: 1.4rem auto 2rem;
  }

  .stat-item {
    padding: 1.2rem 0.75rem;
  }

  .stat-item strong {
    font-size: clamp(2rem, 11vw, 2.95rem);
  }

  .stat-item span {
    max-width: none;
    font-size: 1.15rem;
    line-height: 1.15;
  }

  .consult-grid {
    gap: 1.35rem;
    margin-top: 2rem;
  }

  .contact-card {
    min-height: auto;
    padding: 0.75rem 0.85rem;
  }

  .contact-card strong {
    font-size: 0.9rem;
    line-height: 1.15;
    word-break: break-word;
  }

  .mini-icon {
    width: 1.65rem;
    height: 1.65rem;
    flex-basis: 1.65rem;
  }

  .social-stack {
    justify-content: center;
  }

  .social-square {
    width: 2.95rem;
    height: 2.95rem;
  }

  .contact-card strong {
    font-size: 0.86rem;
  }

  .booking-tabs {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .booking-tab {
    flex: 1 1 9rem;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 1.15rem;
  }

  .booking-card {
    width: 100%;
    max-width: none;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .booking-panel {
    min-height: auto;
    padding: 1.15rem 1rem;
    border-radius: 1.1rem;
  }

  .booking-title {
    font-size: 1.45rem;
  }

  .booking-subtitle,
  .booking-slots {
    font-size: 1rem;
    line-height: 1.3;
  }

  .booking-map {
    height: 14.5rem;
  }

  .booking-link {
    margin-top: 0.7rem;
    font-size: 0.94rem;
  }

  .reviews-shell h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .reviews-layout {
    gap: 1.3rem;
  }

  .review-card {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .review-card h3 {
    font-size: 2rem;
  }

  .review-card p {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .stars {
    font-size: 1.45rem;
  }

  .review-card--placeholder {
    min-height: 7rem;
  }
}

@media (max-width: 560px) {
  :root {
    --header-offset: 10.1rem;
  }

  .topbar-inner {
    min-height: 3.85rem;
    padding: 0.45rem 0;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .call-chip {
    padding: 0;
  }

  .call-chip strong {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .call-chip .icon-shell {
    width: 1.55rem;
    height: 1.55rem;
    flex-basis: 1.55rem;
  }

  .nav-brand {
    gap: 0.5rem;
    font-size: 1rem;
  }

  .nav-brand img {
    width: 2.3rem;
    height: 2.3rem;
    flex-basis: 2.3rem;
  }

  .nav-toggle {
    width: 3rem;
    height: 3rem;
  }

  .nav-links {
    padding: 0.7rem;
    border-radius: 1.1rem;
  }

  .nav-links a {
    padding: 0.82rem 0.9rem;
    font-size: 0.98rem;
  }

  .hero-name {
    font-size: 1.35rem;
  }

  .hero-card {
    max-width: min(17rem, 88vw);
    padding: 1.15rem 1rem 1rem;
  }

  .hero-card h1 {
    font-size: clamp(1rem, 6.4vw, 1.35rem);
  }

  .hero-copy {
    max-width: 14ch;
    font-size: 0.78rem;
  }

  .cta-button {
    padding: 0.58rem 0.75rem;
    font-size: 0.82rem;
  }

  .values-row {
    padding-left: 2.55rem;
  }

  .values-row::before {
    left: 1rem;
  }

  .value-pill::before {
    left: -2.08rem;
    width: 1rem;
    height: 1rem;
  }

  .session-card,
  .online-card,
  .online-faq-card,
  .library-card,
  .faq-item {
    border-radius: 1.05rem;
    box-shadow: 0 12px 22px rgba(22, 18, 14, 0.18);
  }

  .session-detail {
    padding: 0.95rem;
    border-radius: 1.15rem;
  }

  .session-detail-header h3 {
    font-size: 1.28rem;
  }

  .session-detail-body {
    max-height: min(48vh, 22rem);
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 0.92rem 2.7rem 0.92rem 0.9rem;
    font-size: 0.95rem;
  }

  .faq-question::after {
    right: 0.85rem;
    top: 0.92rem;
    font-size: 1.15rem;
  }

  .faq-answer {
    padding: 0 0.9rem 0.9rem;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.33;
  }

  .booking-map {
    height: 12.5rem;
  }

  .review-card header {
    justify-content: space-between;
    align-items: flex-start;
  }
}
