:root {
  --ink: #29312e;
  --muted: #68716d;
  --cream: #f6f1e8;
  --cream-light: #fbf8f2;
  --paper: #fffdf8;
  --sage: #cbd5c3;
  --sage-deep: #718071;
  --olive: #66705a;
  --clay: #c98263;
  --clay-light: #edc8b6;
  --sand: #e9d8b9;
  --blue: #c7d3d0;
  --line: rgba(41, 49, 46, 0.16);
  --container: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-light);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 248, 242, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-name {
  position: relative;
  display: inline-block;
  min-width: 0;
  padding-top: 6px;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  position: absolute;
  z-index: 1;
  top: -6px;
  right: 0;
  display: block;
  width: 100%;
  padding-right: 1px;
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  text-transform: none;
  transform: none;
}

.brand-name strong {
  display: block;
  color: var(--ink);
  font-family: "Prata", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  font-kerning: normal;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: left;
  transition: color 0.3s ease;
}

.brand:hover .brand-name strong {
  color: var(--clay);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: #5d6662;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 11px 17px 11px 22px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 3px 16px 3px 16px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(41, 49, 46, 0.14);
  transition: background 0.25s ease, border-radius 0.3s var(--ease), transform 0.25s ease;
}

.header-contact:hover {
  background: var(--olive);
  border-radius: 16px 3px 16px 3px;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 12px;
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease;
}

.menu-toggle i::before {
  transform: translateY(-6px);
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::before {
  transform: rotate(-90deg);
}

.overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--sage-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overline::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 em,
h1 span {
  color: var(--clay);
  font-weight: 400;
  font-style: normal;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: calc(var(--header-height) + 72px) 0 36px;
  background: var(--cream-light);
}

.hero::after {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 0;
}

.hero-copy {
  padding: 32px 0 24px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(55px, 5.55vw, 82px);
  line-height: 1.09;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-action {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 15px 23px;
  color: var(--paper);
  background: var(--olive);
  border-radius: 3px 18px 3px 18px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(102, 112, 90, 0.16);
  transition: background 0.25s ease, transform 0.25s ease, border-radius 0.3s var(--ease);
}

.primary-action:hover {
  background: #505a48;
  border-radius: 18px 3px 18px 3px;
  transform: translateY(-2px);
}

.quiet-action,
.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0 8px;
  border-bottom: 1px solid var(--line);
  color: #59625e;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.quiet-action:hover,
.underlined-link:hover {
  color: var(--ink);
  border-color: var(--clay);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  gap: 12px 0;
}

.hero-meta span {
  display: flex;
  align-items: center;
}

.hero-meta span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 16px;
  border-radius: 50%;
  background: var(--clay-light);
  content: "";
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(54vw, 920px);
  height: auto;
  min-height: 0;
  margin: 0;
}

.hero-background-words {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.hero-background-words span {
  position: absolute;
  width: clamp(130px, 11vw, 200px);
  color: #899788;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(32px, 2.5vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1;
  opacity: 0;
  text-align: center;
  white-space: nowrap;
  will-change: opacity, transform;
  animation: hero-word-cycle 16s var(--ease) infinite;
}

.hero-background-words span:nth-child(1) {
  --word-rotation: -2deg;
  top: 23%;
  right: clamp(12px, 2vw, 34px);
  animation-delay: -1s;
}

.hero-background-words span:nth-child(2) {
  --word-rotation: 1deg;
  top: 31%;
  right: clamp(8px, 1.4vw, 24px);
  animation-delay: 3s;
}

.hero-background-words span:nth-child(3) {
  --word-rotation: -1deg;
  top: 40%;
  right: clamp(10px, 1.8vw, 30px);
  animation-delay: 7s;
}

.hero-background-words span:nth-child(4) {
  --word-rotation: 2deg;
  top: 49%;
  right: clamp(14px, 2.2vw, 38px);
  color: #b67f67;
  animation-delay: 11s;
}

.hero-mobile-terms {
  display: none;
}

.hero-person {
  position: absolute;
  z-index: 1;
  right: clamp(170px, 13vw, 250px);
  bottom: 0;
  width: auto;
  height: calc(100% - clamp(120px, 13vh, 150px));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 26px rgba(58, 61, 56, 0.12));
}

.situations {
  padding: clamp(110px, 12vw, 180px) 0;
  border-top: 1px solid rgba(41, 49, 46, 0.1);
  background: linear-gradient(145deg, #b7c2ae 0%, #c7d0bf 52%, #d6ddd0 100%);
}

.situations-intro {
  display: grid;
  align-items: end;
  margin-bottom: 86px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 70px;
}

.situations-intro .overline {
  grid-column: 1 / -1;
  margin-bottom: -25px;
  color: #526057;
}

.situations h2,
.about h2,
.credentials h2,
.approach h2,
.meeting h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.12;
}

.situations-intro > p:last-child {
  margin: 0 0 7px;
  color: #4f5b55;
  font-size: 15px;
  line-height: 1.8;
}

.situation-stream {
  display: grid;
  gap: 4px;
}

.situation-line {
  position: relative;
  display: grid;
  min-height: 172px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 92px minmax(330px, 0.9fr) minmax(320px, 0.7fr);
  gap: 34px;
}

.situation-line:last-child {
  border-bottom: 1px solid var(--line);
}

.situation-line-offset {
  padding-right: 5%;
  padding-left: 8%;
}

.situation-mark {
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 8px 50%;
  transition: border-radius 0.5s var(--ease), transform 0.5s var(--ease);
}

.situation-line:hover .situation-mark {
  border-radius: 8px 50% 50% 50%;
  transform: rotate(12deg) scale(1.08);
}

.mark-clay {
  background: var(--clay-light);
}

.mark-sage {
  background: var(--sage);
}

.mark-sand {
  background: var(--sand);
}

.mark-blue {
  background: var(--blue);
}

.situation-line h3 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.4;
}

.situation-line p {
  margin: 0;
  color: #4f5b55;
  font-size: 13px;
  line-height: 1.8;
}

.not-found-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 22px 28px;
  background: rgba(255, 253, 248, 0.52);
  border-radius: 3px 22px 3px 22px;
  gap: 30px;
}

.not-found-note p {
  max-width: 820px;
  margin: 0;
  color: #4f5b55;
  font-size: 12px;
}

.not-found-note p span {
  color: var(--ink);
  font-weight: 600;
}

.not-found-note a {
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 11px;
  font-weight: 600;
}

.about {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 170px) 0;
  background: #e5eadf;
}

.about::before {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(113, 128, 113, 0.2);
  border-radius: 50%;
  content: "";
}

.about-shape {
  position: absolute;
  bottom: -25%;
  left: -12%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.38);
}

.about-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(430px, 0.98fr) minmax(0, 1fr);
  gap: clamp(62px, 7vw, 112px);
}

.about-photo {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 3px 62px 3px 62px;
  background: #c9c9b9;
  box-shadow: 0 34px 84px rgba(55, 65, 56, 0.19);
}

.about-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(25, 31, 27, 0.56));
  content: "";
  pointer-events: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.98) brightness(1.02);
}

.about-photo > span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-content h2 {
  margin-bottom: 32px;
}

.about-lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: #56615b;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.about-facts {
  display: grid;
  margin-bottom: 30px;
  border-top: 1px solid rgba(41, 49, 46, 0.17);
}

.about-facts p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(41, 49, 46, 0.17);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.about-facts strong {
  color: var(--ink);
}

.credentials {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 170px) 0;
  background: #f2ede4;
}

.credentials::before {
  position: absolute;
  top: 54px;
  right: -36px;
  color: rgba(113, 128, 113, 0.07);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(110px, 15vw, 230px);
  letter-spacing: -0.07em;
  line-height: 1;
  content: "знания";
  pointer-events: none;
}

.credentials-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 38px clamp(48px, 8vw, 120px);
}

.credentials-heading .overline {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.credentials-heading h2 {
  max-width: 820px;
}

.credentials-heading h2 em {
  color: var(--clay);
  font-weight: 400;
  font-style: normal;
}

.credentials-heading > p:last-child {
  max-width: 450px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.professional-scene {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  min-height: 410px;
  margin-block: clamp(58px, 7vw, 88px) 0;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.58fr);
  border: 1px solid rgba(41, 49, 46, 0.1);
  border-radius: 3px 54px 3px 3px;
  background: var(--ink);
  box-shadow: 0 28px 72px rgba(54, 59, 53, 0.14);
}

.professional-scene-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
}

.professional-scene-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, rgba(31, 38, 34, 0.18));
  content: "";
  pointer-events: none;
}

.professional-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(0.97) brightness(0.98);
}

.professional-scene figcaption {
  display: flex;
  padding: 44px 38px 42px;
  color: var(--paper);
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #35413b, #29312e 76%);
}

.professional-scene small {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  gap: 12px;
}

.professional-scene small::before {
  width: 24px;
  height: 1px;
  background: var(--clay);
  content: "";
}

.professional-scene p {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.55;
}

.credentials-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(62px, 8vw, 104px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 286px);
  gap: 20px;
}

.certificate-card,
.certificate-tile,
.certificate-slide {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.certificate-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  background: #ded8cc;
  box-shadow: 0 22px 58px rgba(64, 70, 62, 0.1);
}

.certificate-card-featured {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  border-radius: 4px 48px 4px 4px;
}

.certificate-card-secondary {
  grid-column: 8 / -1;
  border-radius: 4px 30px 4px 4px;
}

.certificate-card-secondary:nth-child(3) {
  grid-row: 2;
  border-radius: 4px 4px 4px 30px;
}

.certificate-image {
  display: flex;
  min-height: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2vw, 25px);
  background: linear-gradient(145deg, #e8e3da, #d7d1c5);
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 11px 28px rgba(54, 60, 54, 0.13);
  filter: saturate(0.74) contrast(0.97) brightness(1.03);
  transition: filter 0.45s ease, transform 0.6s var(--ease);
}

.certificate-card:hover .certificate-image img {
  filter: saturate(0.94) contrast(1) brightness(1.02);
  transform: scale(1.018);
}

.certificate-caption {
  display: grid;
  min-height: 86px;
  align-items: center;
  padding: 17px 21px 18px;
  color: var(--cream-light);
  background: #414b45;
  grid-template-columns: 1fr auto;
  gap: 3px 20px;
}

.certificate-caption small {
  grid-column: 1;
  color: rgba(255, 253, 248, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.certificate-caption strong {
  grid-column: 1;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.3;
}

.certificate-caption i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--clay-light);
  font-size: 16px;
  font-style: normal;
}

.credentials-more {
  display: grid;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 24px;
}

.credentials-more[hidden] {
  display: none;
}

.certificate-tile {
  display: grid;
  min-width: 0;
  grid-template-rows: 330px auto auto;
}

.certificate-tile > span {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 18px;
  background: #ded8cc;
}

.certificate-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 8px 22px rgba(54, 60, 54, 0.12);
  filter: saturate(0.74) contrast(0.97) brightness(1.03);
  transition: filter 0.4s ease, transform 0.5s var(--ease);
}

.certificate-tile:hover img {
  filter: saturate(0.98) contrast(1);
  transform: scale(1.018);
}

.certificate-tile strong,
.certificate-slide strong {
  font-family: "Prata", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.certificate-tile small,
.certificate-slide small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.credentials-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.credentials-toggle {
  display: inline-flex;
  min-width: 310px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 14px 24px;
  border: 1px solid rgba(41, 49, 46, 0.25);
  color: var(--ink);
  background: transparent;
  border-radius: 3px 18px 3px 18px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, border-radius 0.35s var(--ease);
}

.credentials-toggle:hover,
.credentials-toggle[aria-expanded="true"] {
  color: var(--paper);
  background: var(--ink);
  border-radius: 18px 3px 18px 3px;
}

.credentials-toggle i {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  transition: transform 0.35s var(--ease);
}

.credentials-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.credentials-mobile {
  display: none;
}

.certificate-lightbox {
  width: fit-content;
  max-width: min(94vw, 1180px);
  max-height: 94vh;
  margin: auto;
  padding: 18px;
  border: 0;
  color: var(--paper);
  background: #313a35;
  border-radius: 4px 28px 4px 28px;
  box-shadow: 0 36px 100px rgba(23, 29, 26, 0.35);
}

.certificate-lightbox::backdrop {
  background: rgba(26, 31, 28, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.certificate-lightbox figure {
  display: grid;
  margin: 0;
  gap: 14px;
}

.certificate-lightbox img {
  display: block;
  max-width: calc(94vw - 36px);
  max-height: calc(88vh - 60px);
  object-fit: contain;
}

.certificate-lightbox figcaption {
  padding: 0 46px 2px 4px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
}

.certificate-lightbox-close {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.24);
  color: var(--paper);
  background: #414b45;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.approach {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 170px) 0;
  color: var(--cream-light);
  background: linear-gradient(135deg, #303a35 0%, #3e4a42 48%, #566254 100%);
}

.approach::before {
  position: absolute;
  top: -42%;
  right: -12%;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 50%;
  content: "";
}

.approach::after {
  position: absolute;
  bottom: -34%;
  left: -14%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.035);
  content: "";
}

.approach-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.approach-title {
  display: grid;
  align-items: end;
  margin-bottom: clamp(62px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(48px, 8vw, 120px);
}

.approach-title .overline {
  grid-column: 1 / -1;
  color: var(--clay-light);
  margin-bottom: -10px;
}

.approach-title h2 {
  max-width: 760px;
  margin: 0;
  color: var(--cream-light);
  font-size: clamp(52px, 6vw, 82px);
}

.approach-title > p:last-child {
  max-width: 480px;
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 15px;
  line-height: 1.85;
}

.approach-dictionary {
  display: grid;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  border-left: 1px solid rgba(255, 253, 248, 0.2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.approach-dictionary::after {
  display: none;
}

.approach-entry {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 300px;
  padding: clamp(34px, 4vw, 56px);
  border-right: 1px solid rgba(255, 253, 248, 0.2);
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  grid-template-columns: 1fr;
  gap: 28px;
  transition: background 0.4s ease;
}

.approach-entry:nth-child(even) {
  margin-left: 0;
}

.approach-entry:hover {
  background: rgba(255, 253, 248, 0.055);
}

.approach-term {
  align-self: start;
  width: fit-content;
  height: fit-content;
  margin: 0;
  padding: 7px 12px;
  color: var(--cream-light);
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(237, 200, 182, 0.4);
  border-radius: 2px 12px 2px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.approach-entry h3 {
  margin: 0 0 12px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.45;
}

.approach-entry div > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

.meeting {
  padding: clamp(110px, 12vw, 170px) 0;
  background: var(--paper);
}

.meeting-head {
  display: flex;
  width: min(calc(100% - 48px), 1040px);
  align-items: center;
  flex-direction: column;
  margin: 0 auto 108px;
  text-align: center;
}

.meeting-head .overline {
  margin-bottom: 26px;
}

.meeting-head h2 {
  max-width: 980px;
}

.conversation-path {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: start;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.path-line {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 165px;
  overflow: visible;
}

.path-line-track,
.path-line-progress {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.path-line-track {
  stroke: var(--sage-deep);
  stroke-width: 3;
  stroke-linecap: round;
}

.path-line-progress {
  stroke: var(--clay-light);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0.085 0.915;
  stroke-dashoffset: 1;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(201, 130, 99, 0.42));
  animation: path-energy-flow 6s linear infinite;
  transition: opacity 0.5s ease;
}

.conversation-path.is-path-visible .path-line-progress {
  opacity: 0.94;
}

.path-energy-halo,
.path-energy-core {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.path-energy-halo {
  fill: rgba(237, 200, 182, 0.24);
  stroke: rgba(201, 130, 99, 0.2);
  stroke-width: 1;
  filter: drop-shadow(0 0 7px rgba(201, 130, 99, 0.34));
}

.path-energy-core {
  fill: #f2c3aa;
  stroke: var(--paper);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 5px rgba(201, 130, 99, 0.68));
}

.conversation-path.is-path-visible .path-energy-halo {
  opacity: 0.72;
}

.conversation-path.is-path-visible .path-energy-core {
  opacity: 1;
}

.path-stop {
  position: relative;
  z-index: 2;
  padding-right: clamp(28px, 4vw, 62px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.path-stop-lower {
  margin-top: 118px;
}

.conversation-path.is-path-visible .path-stop {
  opacity: 1;
  transform: translateY(0);
}

.conversation-path.is-path-visible .path-stop:nth-of-type(1) {
  transition-delay: 0.08s;
}

.conversation-path.is-path-visible .path-stop:nth-of-type(2) {
  transition-delay: 0.55s;
}

.conversation-path.is-path-visible .path-stop:nth-of-type(3) {
  transition-delay: 1.05s;
}

.conversation-path.is-path-visible .path-stop:nth-of-type(4) {
  transition-delay: 1.55s;
}

.path-stop::before {
  display: block;
  width: 15px;
  height: 15px;
  margin-bottom: 26px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 1px rgba(201, 130, 99, 0.4);
  content: "";
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}

.path-stop-lower::before {
  background: var(--sage-deep);
  box-shadow: 0 0 0 1px rgba(113, 128, 113, 0.4);
}

.conversation-path.is-path-visible .path-stop::before {
  box-shadow: 0 0 0 7px rgba(201, 130, 99, 0.11), 0 0 0 1px rgba(201, 130, 99, 0.4);
  transform: scale(1.08);
}

.conversation-path.is-path-visible .path-stop-lower::before {
  box-shadow: 0 0 0 7px rgba(113, 128, 113, 0.11), 0 0 0 1px rgba(113, 128, 113, 0.4);
}

.path-stop span {
  display: block;
  margin-bottom: 12px;
  font-family: "Prata", Georgia, serif;
  font-size: 21px;
}

.path-stop p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.meeting-panel {
  display: grid;
  align-items: center;
  margin-top: 30px;
  padding: 50px;
  background: var(--sand);
  border-radius: 4px 52px 4px 52px;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  gap: clamp(38px, 6vw, 80px);
}

.meeting-message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.meeting-message > span {
  color: rgba(41, 49, 46, 0.26);
  font-family: "Prata", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.meeting-message p {
  max-width: 470px;
  margin: 4px 0 0;
  font-family: "Prata", Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
}

.meeting-price {
  display: grid;
  padding-left: 34px;
  border-left: 1px solid rgba(41, 49, 46, 0.16);
}

.meeting-price p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meeting-price strong {
  white-space: nowrap;
  font-family: "Prata", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.meeting-price span {
  max-width: 250px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.meeting-locations {
  display: grid;
  margin-top: 18px;
  padding: 34px 38px 38px;
  border: 1px solid rgba(41, 49, 46, 0.12);
  border-radius: 3px 34px 3px 34px;
  background: rgba(246, 241, 232, 0.62);
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
}

.meeting-locations-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.meeting-locations-head .overline {
  margin: 0;
}

.meeting-locations-head > span {
  max-width: 270px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

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

.meeting-location {
  position: relative;
  display: grid;
  min-height: 154px;
  margin: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(41, 49, 46, 0.1);
  border-radius: 3px 22px 3px 22px;
  background: rgba(255, 253, 248, 0.72);
  font-style: normal;
  grid-template-columns: 18px 1fr;
  gap: 14px;
}

.meeting-location i {
  position: relative;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border: 1px solid var(--clay);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.meeting-location i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.meeting-location div {
  display: flex;
  flex-direction: column;
}

.meeting-location small {
  margin-bottom: 9px;
  color: var(--sage-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meeting-location strong {
  max-width: 300px;
  font-family: "Prata", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.meeting-location div > span {
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.primary-action-dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: none;
}

.primary-action-dark:hover {
  background: var(--olive);
}

.promo-strip {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 17px 24px;
  border: 1px solid rgba(201, 130, 99, 0.32);
  border-radius: 2px 16px 2px 16px;
  background: #fff8f3;
  gap: 24px;
}

.promo-strip[hidden] {
  display: none;
}

.promo-strip > span {
  flex: 0 0 auto;
  color: var(--clay);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-strip p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.promo-strip a {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 600;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 170px) 0;
  background: #dfe5d9;
}

.reviews::before {
  position: absolute;
  top: -54px;
  right: 4vw;
  color: rgba(41, 49, 46, 0.055);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(250px, 38vw, 560px);
  line-height: 1;
  content: "“";
  pointer-events: none;
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(68px, 10vw, 140px);
}

.reviews-heading {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.reviews-heading h2 {
  margin-bottom: 28px;
}

.reviews-heading h2 em,
.reading-heading h2 em {
  color: var(--clay);
  font-weight: 400;
  font-style: normal;
}

.reviews-heading > p:last-child {
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.reviews-quotes {
  border-top: 1px solid rgba(41, 49, 46, 0.18);
}

.review-quote {
  position: relative;
  margin: 0;
  padding: 46px 0 42px 52px;
  border-bottom: 1px solid rgba(41, 49, 46, 0.18);
}

.review-quote::before {
  position: absolute;
  top: 38px;
  left: 0;
  color: var(--clay);
  font-family: "Prata", Georgia, serif;
  font-size: 54px;
  line-height: 1;
  content: "“";
}

.review-quote p {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(17px, 1.85vw, 23px);
  line-height: 1.72;
}

.review-quote-compact p {
  max-width: 620px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.review-quote footer {
  display: flex;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}

.review-quote cite {
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-quote footer span {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  gap: 16px;
}

.review-quote footer span::before {
  width: 28px;
  height: 1px;
  background: rgba(41, 49, 46, 0.24);
  content: "";
}

.reading {
  position: relative;
  padding: clamp(110px, 12vw, 170px) 0;
  background: #f3ede4;
}

.reading-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.52fr);
  gap: clamp(54px, 8vw, 118px);
}

.reading-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.82;
}

.reading-list {
  border-top: 1px solid rgba(41, 49, 46, 0.18);
}

.reading-book {
  position: relative;
  display: grid;
  align-items: center;
  padding: 28px 22px 28px 0;
  border-bottom: 1px solid rgba(41, 49, 46, 0.18);
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  transition: padding-left 0.35s var(--ease), background 0.3s ease;
}

.reading-book::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--clay);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}

.reading-book:hover {
  padding-left: 22px;
  background: rgba(255, 253, 248, 0.52);
}

.reading-book:hover::before {
  transform: scaleY(1);
}

.reading-book > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reading-book small {
  color: var(--sage-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reading-book strong {
  max-width: 430px;
  font-family: "Prata", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.reading-book > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.reading-book > span {
  padding: 8px 12px;
  border: 1px solid rgba(41, 49, 46, 0.14);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq {
  padding: clamp(110px, 12vw, 170px) 0;
  background: #eef0e9;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 150px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.faq-heading h2 {
  margin-bottom: 26px;
}

.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-family: "Prata", Georgia, serif;
  font-size: 19px;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(41, 49, 46, 0.2);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item div p {
  max-width: 680px;
  margin: -4px 52px 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 150px) 0;
  background: #efd2c2;
}

.contact::before {
  position: absolute;
  top: -55%;
  right: -10%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(41, 49, 46, 0.13);
  border-radius: 50%;
  content: "";
}

.contact-watermark {
  position: absolute;
  right: -2vw;
  bottom: -0.38em;
  color: rgba(255, 253, 248, 0.28);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(110px, 18vw, 280px);
  line-height: 1;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(70px, 11vw, 160px);
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(58px, 7.2vw, 96px);
}

.contact-copy > p:last-child {
  max-width: 470px;
  margin: 0;
  color: #6d5d54;
  font-size: 14px;
  line-height: 1.8;
}

.contact-choices {
  display: grid;
  gap: 12px;
}

.contact-choices a {
  display: grid;
  min-height: 86px;
  align-items: center;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(255, 253, 248, 0.44);
  background: rgba(255, 253, 248, 0.28);
  border-radius: 4px 20px 4px 20px;
  box-shadow:
    0 13px 30px rgba(112, 78, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  grid-template-columns: 105px 1fr auto;
  gap: 22px;
  -webkit-backdrop-filter: blur(14px) saturate(0.72);
  backdrop-filter: blur(14px) saturate(0.72);
  transition: background 0.3s ease, border-color 0.3s ease, border-radius 0.35s var(--ease), box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.contact-choices a:hover {
  border-color: rgba(255, 253, 248, 0.68);
  background: rgba(255, 253, 248, 0.43);
  border-radius: 20px 4px 20px 4px;
  box-shadow:
    0 18px 38px rgba(112, 78, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translateY(-2px);
}

.contact-choices a:active {
  box-shadow:
    0 7px 18px rgba(112, 78, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(1px);
}

.contact-choices span {
  color: #826451;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-choices strong {
  font-family: "Prata", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.contact-choices i {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(41, 49, 46, 0.08);
  border-radius: 50%;
  font-style: normal;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.3s var(--ease);
}

.contact-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.82;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.3s var(--ease);
}

.contact-icon-max img {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.contact-icon-vk b {
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.08em;
  transform: translateX(-0.5px);
  transition: color 0.25s ease, transform 0.3s var(--ease);
}

.contact-choices a:hover i {
  background: var(--ink);
  transform: scale(1.06);
}

.contact-choices a:hover .contact-icon img {
  filter: invert(1);
  opacity: 1;
  transform: scale(0.92);
}

.contact-choices a:hover .contact-icon-max img {
  filter: none;
}

.contact-choices a:hover .contact-icon-vk b {
  color: var(--paper);
  transform: translateX(-0.5px) scale(0.94);
}

.site-footer {
  padding: 64px 0 36px;
  background: #dfe4d9;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) 0.8fr 0.5fr;
  gap: 70px;
}

.footer-identity p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav,
.footer-socials {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-nav a,
.footer-socials a {
  width: fit-content;
  color: #5b655f;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-socials a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(41, 49, 46, 0.14);
  color: var(--muted);
  gap: 30px;
}

.footer-bottom p {
  max-width: 600px;
  margin: 0;
  font-size: 9px;
  line-height: 1.7;
}

.footer-bottom p:last-child {
  text-align: right;
}

.mobile-contact {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

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

/* Wide screens: keep the whole hero as one centered scene. */
@media (min-width: 1500px) {
  .site-header .container,
  .hero .container {
    width: min(calc(100% - 96px), 1460px);
  }

  .hero-layout {
    grid-template-columns: minmax(680px, 1fr) minmax(580px, 0.86fr);
  }

  .hero {
    padding: calc(var(--header-height) + 38px) 0 24px;
  }

  .hero-copy {
    padding: 8px 0 18px;
    transform: none;
  }

  .hero h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(72px, 4vw, 84px);
  }

  .hero-lead {
    max-width: 690px;
    margin-bottom: 27px;
    font-size: 18px;
    line-height: 1.72;
  }

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

  .hero-visual {
    right: max(24px, calc((100vw - 1460px) / 2 - 34px));
    width: min(44vw, 850px);
  }

  .hero-person {
    right: clamp(120px, 7vw, 165px);
    height: calc(100% - clamp(42px, 5vh, 64px));
  }

}

@media (max-width: 1100px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 10px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 0;
  }

  .situation-line {
    grid-template-columns: 70px minmax(300px, 1fr) minmax(280px, 0.8fr);
  }

  .meeting-panel {
    grid-template-columns: 1fr auto;
  }

  .meeting-panel .primary-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  body.menu-open .site-header {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    border-color: var(--line);
    background: var(--cream-light);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.menu-open .mobile-contact {
    transform: translateY(130%) !important;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    overflow-y: auto;
    align-content: start;
    justify-content: stretch;
    padding: clamp(28px, 6vh, 58px) 24px max(48px, env(safe-area-inset-bottom));
    background: var(--cream-light);
    opacity: 0;
    transform: translateY(-10px);
    overscroll-behavior: contain;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    width: 100%;
    min-height: clamp(58px, 9.2vh, 72px);
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(23px, 6.8vw, 31px);
    line-height: 1.2;
  }

  .site-nav a:first-child {
    border-top: 1px solid var(--line);
  }

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

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 0;
  }

  .hero-layout,
  .about-layout,
  .approach-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    position: relative;
    z-index: 2;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: min(860px, 106vw);
    min-height: 700px;
    margin-right: 0;
    margin-left: 0;
    margin-top: 20px;
    justify-self: center;
  }

  .hero-person {
    right: 50%;
    bottom: 0;
    width: auto;
    height: calc(100% - 26px);
    max-width: none;
    max-height: none;
    transform: translateX(50%);
  }

  .situations-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .situations-intro .overline {
    grid-column: auto;
    margin-bottom: 0;
  }

  .situation-line,
  .situation-line-offset {
    padding-right: 0;
    padding-left: 0;
    grid-template-columns: 60px 1fr;
  }

  .situation-line p {
    grid-column: 2;
  }

  .about-layout {
    gap: 80px;
  }

  .credentials-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .credentials-heading .overline {
    grid-column: auto;
    margin-bottom: 0;
  }

  .credentials-heading > p:last-child {
    max-width: 620px;
  }

  .professional-scene {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 3px 46px 3px 3px;
  }

  .professional-scene-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .professional-scene-media::after {
    background: linear-gradient(180deg, transparent 78%, rgba(31, 38, 34, 0.2));
  }

  .professional-scene figcaption {
    padding: 32px 34px 36px;
  }

  .professional-scene small {
    margin-bottom: 16px;
  }

  .credentials-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 460px 300px;
  }

  .certificate-card-featured {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .certificate-card-secondary {
    grid-column: auto;
    grid-row: 2;
  }

  .certificate-card-secondary:nth-child(3) {
    grid-row: 2;
  }

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

  .about-photo {
    width: min(76vw, 500px);
    justify-self: center;
  }

  .approach-layout,
  .faq-layout {
    gap: 62px;
  }

  .approach-title,
  .faq-heading {
    position: static;
  }

  .approach-title {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .approach-title .overline {
    margin-bottom: 0;
  }

  .approach-dictionary {
    grid-template-columns: 1fr;
  }

  .approach-entry {
    min-height: auto;
  }

  .meeting-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meeting-head .overline {
    margin-top: 0;
  }

  .conversation-path {
    min-height: auto;
    padding-left: 34px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .path-line {
    top: 0;
    bottom: auto;
    left: 6px;
    width: 2px;
    height: 100%;
    overflow: hidden;
    background:
      linear-gradient(var(--sage-deep), var(--sage-deep)) 0 0 / 100% 0 no-repeat,
      rgba(113, 128, 113, 0.2);
    transition: background-size 1.5s var(--ease);
  }

  .path-line-track,
  .path-line-progress,
  .path-energy-halo,
  .path-energy-core {
    display: none;
  }

  .conversation-path::after {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 1px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    background: var(--clay-light);
    box-shadow: 0 0 0 7px rgba(201, 130, 99, 0.1), 0 0 12px rgba(201, 130, 99, 0.42);
    content: "";
    opacity: 0;
    pointer-events: none;
    animation: path-energy-vertical 6s linear infinite paused;
  }

  .conversation-path.is-path-visible .path-line {
    background-size: 100% 100%, 100% 100%;
  }

  .conversation-path.is-path-visible::after {
    animation-play-state: running;
  }

  .path-stop-lower {
    margin-top: 0;
  }

  .path-stop::before {
    position: absolute;
    top: 5px;
    left: -34px;
  }

  .meeting-panel {
    grid-template-columns: 1fr;
  }

  .meeting-locations {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .meeting-locations-head {
    align-items: flex-end;
    flex-direction: row;
  }

  .meeting-locations-head > span {
    text-align: right;
  }

  .meeting-price {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(41, 49, 46, 0.16);
    border-left: 0;
  }

  .meeting-panel .primary-action {
    grid-column: auto;
  }

  .reviews-layout,
  .reading-heading {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    gap: 48px;
  }

  .reviews-heading {
    position: static;
  }

  .reviews-heading > p:last-child,
  .reading-heading > p {
    max-width: 620px;
  }

  .reading-heading {
    gap: 24px;
  }

  .reading-book {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 28px;
  }

  .reading-book > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .reading-book > span {
    grid-column: 2;
    grid-row: 1;
  }

  .contact-layout {
    gap: 62px;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    transform: translateY(130%);
    transition: transform 0.4s var(--ease);
  }

  .mobile-contact.is-visible {
    transform: translateY(0);
  }

  .mobile-contact a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--paper);
    background: var(--olive);
    border-radius: 3px 18px 3px 18px;
    box-shadow: 0 14px 36px rgba(56, 65, 53, 0.24);
    font-size: 12px;
    font-weight: 600;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  .brand-name span {
    top: -5px;
    font-size: 16px;
  }

  .brand-name strong {
    font-size: 26px;
  }

  .menu-toggle span {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 22px);
  }

  .hero-copy {
    padding: 12px 0 8px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.08;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .primary-action {
    width: 100%;
  }

  .quiet-action {
    align-self: center;
  }

  .hero-meta {
    display: grid;
  }

  .hero-meta span:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    width: 100%;
    height: 126vw;
    min-height: 520px;
    margin-top: 6px;
    padding: 0;
  }

  .hero-person {
    bottom: 0;
    width: auto;
    height: calc(100% - 18px);
  }

  .hero-background-words {
    display: none;
  }

  .hero-mobile-terms {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
  }

  .hero-mobile-terms span {
    position: absolute;
    color: #647364;
    font-family: "Prata", Georgia, serif;
    line-height: 1;
    opacity: 0;
    white-space: nowrap;
    will-change: opacity, transform;
    animation: mobile-psychology-term 18s var(--ease) infinite;
  }

  .hero-mobile-terms span:nth-child(1) {
    top: 8%;
    left: 8%;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    animation-delay: 0s;
  }

  .hero-mobile-terms span:nth-child(2) {
    top: 21%;
    right: -3%;
    font-size: clamp(27px, 8vw, 34px);
    animation-delay: 3s;
  }

  .hero-mobile-terms span:nth-child(3) {
    top: 39%;
    left: -4%;
    color: #b98770;
    font-size: clamp(22px, 7vw, 29px);
    animation-delay: 6s;
  }

  .hero-mobile-terms span:nth-child(4) {
    top: 55%;
    right: 4%;
    font-size: clamp(28px, 8.5vw, 36px);
    animation-delay: 9s;
  }

  .hero-mobile-terms span:nth-child(5) {
    top: 72%;
    left: 3%;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation-delay: 12s;
  }

  .hero-mobile-terms span:nth-child(6) {
    top: 86%;
    right: 7%;
    font-size: clamp(24px, 7.5vw, 31px);
    animation-delay: 15s;
  }

  .situations,
  .about,
  .approach,
  .meeting,
  .faq,
  .contact {
    padding: 92px 0;
  }

  .situations h2,
  .about h2,
  .credentials h2,
  .approach h2,
  .meeting h2,
  .faq h2 {
    font-size: 42px;
  }

  .situation-line,
  .situation-line-offset {
    min-height: auto;
    padding: 30px 0;
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .situation-mark {
    width: 34px;
    height: 34px;
  }

  .situation-line h3 {
    font-size: 23px;
  }

  .not-found-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-photo {
    width: 100%;
    border-radius: 2px 38px 2px 38px;
  }

  .credentials {
    padding: 92px 0;
  }

  .credentials::before {
    top: 74px;
    right: -16px;
    font-size: 86px;
  }

  .credentials-heading {
    gap: 20px;
  }

  .credentials-heading > p:last-child {
    font-size: 13px;
  }

  .professional-scene {
    margin-block-start: 38px;
    border-radius: 2px 32px 2px 2px;
  }

  .professional-scene figcaption {
    padding: 26px 22px 30px;
  }

  .professional-scene p {
    font-size: 19px;
    line-height: 1.55;
  }

  .credentials-desktop {
    display: none;
  }

  .credentials-mobile {
    display: block;
    margin-top: 52px;
  }

  .credentials-slider {
    display: flex;
    overflow-x: auto;
    padding: 0 16px 8px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    overscroll-behavior-inline: contain;
  }

  .credentials-slider::-webkit-scrollbar {
    display: none;
  }

  .certificate-slide {
    display: grid;
    min-width: 0;
    flex: 0 0 calc(100vw - 48px);
    scroll-snap-align: start;
    grid-template-rows: min(74vw, 330px) auto auto;
  }

  .certificate-slide > span {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 16px;
    background: linear-gradient(145deg, #e8e3da, #d7d1c5);
    border-radius: 3px 26px 3px 3px;
  }

  .certificate-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: 0 9px 24px rgba(54, 60, 54, 0.12);
    filter: saturate(0.82) contrast(0.98) brightness(1.03);
  }

  .certificate-slide strong {
    font-size: 19px;
  }

  .credentials-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  .credentials-slider-controls > span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .credentials-slider-controls div {
    display: flex;
    gap: 8px;
  }

  .credentials-slider-controls button {
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(41, 49, 46, 0.22);
    color: var(--ink);
    background: transparent;
    border-radius: 3px 14px 3px 14px;
    cursor: pointer;
    font-size: 17px;
  }

  .credentials-slider-controls button:disabled {
    opacity: 0.32;
  }

  .about-lead {
    font-size: 18px;
  }

  .approach-entry {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .approach-dictionary {
    padding: 0;
    border-radius: 0;
  }

  .approach-entry:nth-child(even) {
    margin-left: 0;
  }

  .meeting-head {
    margin-bottom: 66px;
  }

  .meeting-panel {
    padding: 32px 24px;
    border-radius: 3px 32px 3px 32px;
  }

  .meeting-locations {
    padding: 28px 20px 20px;
    border-radius: 3px 28px 3px 28px;
  }

  .meeting-locations-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .meeting-locations-head > span {
    text-align: left;
  }

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

  .meeting-location {
    min-height: 142px;
  }

  .meeting-message p {
    font-size: 16px;
  }

  .promo-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .reviews::before {
    top: -12px;
    right: -18px;
    font-size: 260px;
  }

  .reviews-layout {
    gap: 36px;
  }

  .review-quote {
    padding: 34px 0 32px 38px;
  }

  .review-quote::before {
    top: 30px;
    font-size: 42px;
  }

  .review-quote p,
  .review-quote-compact p {
    font-size: 17px;
    line-height: 1.7;
  }

  .review-quote footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .review-quote footer span {
    gap: 0;
  }

  .review-quote footer span::before {
    display: none;
  }

  .reading-heading {
    margin-bottom: 42px;
  }

  .reading-book {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reading-book:hover {
    padding-left: 0;
    background: transparent;
  }

  .reading-book > p,
  .reading-book > span {
    grid-column: 1;
    grid-row: auto;
  }

  .reading-book > span {
    justify-self: start;
  }

  .reading-book strong {
    font-size: 17px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .contact h2 {
    font-size: 58px;
  }

  .contact-choices a {
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
  }

  .contact-choices span {
    grid-column: 1;
  }

  .contact-choices strong {
    font-size: 17px;
  }

  .contact-choices i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-identity {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@keyframes path-energy-flow {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes path-energy-vertical {
  0% {
    top: 0;
    opacity: 0;
  }

  8%,
  92% {
    opacity: 1;
  }

  100% {
    top: calc(100% - 12px);
    opacity: 0;
  }
}

@keyframes mobile-psychology-term {
  0%,
  9%,
  56%,
  100% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  18%,
  39% {
    opacity: 0.36;
    transform: translate3d(0, 0, 0);
  }

  48% {
    opacity: 0.06;
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes hero-word-cycle {
  0%,
  4%,
  29%,
  100% {
    opacity: 0;
    transform: translate3d(0, 9px, 0) rotate(var(--word-rotation)) scale(0.985);
  }

  9%,
  21% {
    opacity: 0.78;
    transform: translate3d(0, 0, 0) rotate(var(--word-rotation)) scale(1);
  }

  25% {
    opacity: 0.18;
    transform: translate3d(0, -5px, 0) rotate(var(--word-rotation)) scale(1.008);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero-mobile-terms span {
    opacity: 0;
    animation: none !important;
  }

  .hero-mobile-terms span:nth-child(2),
  .hero-mobile-terms span:nth-child(4) {
    opacity: 0.1;
  }

  .hero-background-words span {
    opacity: 0;
    animation: none !important;
  }

  .hero-background-words span:first-child {
    opacity: 0.42;
    transform: rotate(-7deg);
  }

  .path-line-progress,
  .path-energy-halo,
  .path-energy-core,
  .conversation-path::after {
    display: none !important;
  }
}
