:root {
  --paper: #f3ede3;
  --paper-light: #faf7f1;
  --paper-deep: #e8dfd2;
  --ink: #292826;
  --ink-soft: #625f59;
  --rust: #8f513e;
  --rust-dark: #754230;
  --olive-soft: #e2e3d9;
  --line: #d4cabd;
  --white: #fffdf8;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --header-height: 68px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.15rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(143, 81, 62, 0.46);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 13px;
  color: var(--white);
  background: var(--rust-dark);
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.section-label,
.hero-kicker,
.final-label {
  margin-bottom: 14px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
}

.section-heading > p:last-child {
  max-width: 540px;
  margin-top: 20px;
  color: var(--ink-soft);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--paper);
  transition: border-color 150ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--rust);
  color: var(--rust-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}

.header-telegram:hover {
  color: var(--white);
  background: var(--rust);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  background: var(--white);
  border-color: #c9bfb2;
}

.button-block {
  width: 100%;
}

/* Hero */

.hero {
  padding: 36px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(48px, 6.5vw, 82px);
  align-items: center;
}

.hero-copy {
  padding: 24px 0;
}

.hero-kicker {
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(3.8rem, 5.8vw, 5rem);
  line-height: 1.02;
}

.hero-lead {
  max-width: 600px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.68;
}

.hero-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--rust);
  border-color: var(--rust);
}

.button-primary:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.hero-format {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 500;
}

.hero-format span {
  margin: 0 6px;
  color: var(--rust);
}

.hero-note {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  height: 620px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center 12%;
}

.hero-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 0.71rem;
}

.hero-photo figcaption span:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.93rem;
  font-weight: 600;
}

/* Who it's for */

.for-whom {
  border-top: 1px solid var(--line);
}

.for-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.for-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.for-list li {
  min-height: 150px;
  padding: 22px 24px 20px 0;
  border-bottom: 1px solid var(--line);
}

.for-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.for-list h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.for-list p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Recognition */

.recognition {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.recognition-photo {
  position: relative;
  width: min(100%, 330px);
  margin: 42px 0 0;
  padding: 0 16px 18px 0;
}

.recognition-photo::before {
  position: absolute;
  inset: 22px 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 170px 170px 6px 6px;
  content: "";
}

.recognition-photo img {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 170px 170px 6px 6px;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.72) contrast(1.04);
}

.recognition-photo figcaption {
  position: relative;
  max-width: 285px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.55;
}

.recognition-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.recognition-list li {
  min-height: 142px;
  padding: 22px 24px 20px 0;
  border-bottom: 1px solid var(--line);
}

.recognition-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.recognition-list h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.recognition-list p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.58;
}

/* Consultation moment */

.consultation-moment {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 96px;
  color: var(--white);
  background: var(--paper-light);
}

.moment-transition {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.moment-transition svg {
  display: block;
  width: 100%;
  height: 120px;
}

.moment-transition path {
  fill: #34342f;
}

.moment-transition::after {
  position: absolute;
  inset: 119px 0 0;
  background: #34342f;
  content: "";
}

.moment-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  align-items: center;
  min-height: 660px;
}

.moment-photo {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 90%;
  margin: 0;
  padding-left: clamp(18px, 5vw, 58px);
}

.moment-photo::before {
  position: absolute;
  z-index: 0;
  inset: 36px -18px -22px clamp(52px, 7vw, 92px);
  border-radius: 320px 320px 8px 8px;
  background: rgba(143, 81, 62, 0.5);
  content: "";
}

.moment-photo::after {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 clamp(18px, 5vw, 58px);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 320px 320px 8px 8px;
  content: "";
  pointer-events: none;
}

.moment-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
  border-radius: 320px 320px 8px 8px;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.82) contrast(0.98);
}

.moment-card {
  position: relative;
  z-index: 2;
  width: calc(100% + 94px);
  margin-left: -94px;
  padding: clamp(34px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper-light);
  border-top: 3px solid rgba(143, 81, 62, 0.72);
  box-shadow: 0 28px 70px rgba(20, 20, 18, 0.24);
}

.moment-card h2 {
  max-width: 470px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 3.5vw, 3.1rem);
}

.moment-card p:not(.section-label) {
  max-width: 500px;
  color: var(--ink-soft);
}

.moment-card .moment-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
}

.moment-card p + p {
  margin-top: 16px;
}

.moment-card .text-link {
  margin-top: 28px;
}

.moment-note {
  position: absolute;
  right: 0;
  bottom: -44px;
  display: flex;
  gap: 22px;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.moment-note span + span::before {
  margin-right: 22px;
  content: "•";
}

/* Anxiety as an entry point */

.anxiety-entry {
  background: var(--olive-soft);
}

.entry-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: center;
}

.anxiety-entry blockquote {
  padding: 16px 0 16px 28px;
  border-left: 3px solid var(--rust);
}

.anxiety-entry blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.3;
}

.anxiety-entry cite {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
}

.entry-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
}

.entry-copy > p:not(.section-label) {
  max-width: 640px;
  color: var(--ink-soft);
}

.entry-copy > p + p {
  margin-top: 14px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: 560px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center 72%;
}

.about-copy {
  padding-top: 8px;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.48;
}

.about-copy p + p {
  margin-top: 18px;
}

/* First session */

.first-session {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.first-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(58px, 9vw, 120px);
  align-items: start;
}

.first-intro h2 {
  margin-bottom: 20px;
}

.first-intro > p:not(.section-label) {
  color: var(--ink-soft);
}

.session-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.session-meta div {
  padding: 15px 0;
}

.session-meta div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.session-meta dt {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.session-meta dd {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.session-flow ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.session-flow li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.session-flow li > span {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
}

.session-flow h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.session-flow li p {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.session-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.session-cta p {
  max-width: 360px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--rust-dark);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Trust */

.trust {
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li {
  min-height: 150px;
  padding: 22px 24px 20px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.trust-list h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.trust-list p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Request / form */

.request {
  background: var(--olive-soft);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.request-copy > p:not(.section-label):not(.placeholder-hint) {
  max-width: 520px;
  color: var(--ink-soft);
}

.contact-list {
  margin: 28px 0 12px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid #c9cbbd;
}

.contact-list span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--rust-dark);
}

.placeholder-hint {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.placeholder-hint code {
  font-size: 0.85em;
  background: var(--paper);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.field {
  margin-bottom: 16px;
}

.field label,
.contact-method legend {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-method {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-option {
  position: relative;
  cursor: pointer;
}

.contact-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-soft);
  background: var(--paper-light);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.contact-option input:checked + span {
  color: var(--white);
  background: var(--rust);
  border-color: var(--rust);
}

.contact-option input:focus-visible + span {
  outline: 3px solid rgba(143, 81, 62, 0.46);
  outline-offset: 3px;
}

.optional {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper-light);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.field select {
  cursor: pointer;
}

.phone-control {
  display: grid;
  grid-template-columns: minmax(132px, 0.7fr) minmax(150px, 1.3fr);
  gap: 8px;
}

#phone-number {
  letter-spacing: 0.08em;
}

.field-hint {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rust);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(143, 81, 62, 0.16);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--rust-dark);
}

.form-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.3em;
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-status.is-ok {
  color: #2f5d46;
}

.form-status.is-error {
  color: var(--rust-dark);
}

.lead-form.is-success {
  padding: 48px 28px;
  text-align: center;
}

.lead-form.is-success h3 {
  margin-bottom: 10px;
}

.lead-form.is-success p {
  color: var(--ink-soft);
}

/* FAQ */

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(58px, 9vw, 120px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 650px;
  padding: 0 38px 20px 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Final CTA */

.final-cta {
  padding: 84px 0;
  color: var(--white);
  background: var(--rust-dark);
}

.final-inner {
  max-width: 790px;
}

.final-label {
  color: #e5c6ba;
}

.final-cta h2 {
  max-width: 770px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.3vw, 3.7rem);
}

.final-inner > p:not(.final-label) {
  max-width: 570px;
  margin-top: 22px;
  color: #eaded8;
}

.button-light {
  margin-top: 28px;
  color: var(--rust-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--paper);
  border-color: var(--paper);
}

/* Footer */

.site-footer {
  padding: 30px 0 34px;
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px 32px;
  align-items: end;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.footer-contacts a {
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-contacts a:hover {
  color: var(--rust-dark);
}

.footer-inner strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-inner div p,
.footer-note {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.footer-note {
  grid-column: 1 / -1;
  max-width: none;
  text-align: left;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 4.25rem);
  }

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
  }

  .container {
    width: min(100% - 32px, 640px);
  }

  .section {
    padding: 62px 0;
  }

  h2 {
    font-size: 2.18rem;
  }

  .desktop-nav,
  .brand small {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-telegram {
    min-height: 40px;
  }

  .hero {
    padding: 26px 0 58px;
  }

  .hero-grid,
  .for-grid,
  .recognition-grid,
  .moment-stage,
  .about-grid,
  .first-grid,
  .trust-grid,
  .request-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    padding: 16px 0 0;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-action .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 13px;
  }

  .hero-photo {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .hero-photo img {
    height: min(112vw, 590px);
    object-position: center 10%;
  }

  .for-grid,
  .recognition-grid,
  .about-grid,
  .first-grid,
  .trust-grid,
  .request-grid,
  .faq-grid {
    gap: 38px;
  }

  .consultation-moment {
    padding: 106px 0 78px;
  }

  .moment-transition svg {
    height: 92px;
  }

  .moment-transition::after {
    top: 91px;
  }

  .moment-stage {
    display: block;
    min-height: 0;
  }

  .moment-photo {
    width: calc(100% - 22px);
    padding-left: 0;
  }

  .moment-photo::before {
    inset: 30px -12px -16px 20px;
    border-radius: 260px 260px 6px 6px;
  }

  .moment-photo::after {
    inset: 0;
    border-radius: 260px 260px 6px 6px;
  }

  .moment-photo img {
    height: min(124vw, 590px);
    border-radius: 260px 260px 6px 6px;
    object-position: center 56%;
  }

  .moment-card {
    width: calc(100% - 22px);
    margin: -62px 0 0 auto;
    padding: 30px;
  }

  .moment-card h2 {
    font-size: 2.45rem;
  }

  .moment-note {
    position: static;
    justify-content: flex-end;
    margin-top: 22px;
  }

  .for-list,
  .recognition-list,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .for-list li,
  .for-list li:nth-child(even),
  .recognition-list li,
  .recognition-list li:nth-child(even),
  .trust-list li,
  .trust-list li:nth-child(even) {
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
  }

  .recognition-list h3 {
    font-size: 1.08rem;
  }

  .recognition-photo {
    width: 100%;
    max-width: 520px;
    margin-top: 30px;
  }

  .recognition-photo img {
    height: min(92vw, 430px);
    border-radius: 240px 240px 6px 6px;
  }

  .recognition-photo::before {
    border-radius: 240px 240px 6px 6px;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy .about-lead {
    font-size: 1.24rem;
  }

  .about-photo img {
    height: 460px;
  }

  .lead-form {
    padding: 22px;
  }

  .final-cta {
    padding: 66px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contacts {
    justify-content: flex-start;
  }

  .footer-note {
    text-align: left;
  }

}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 54px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1.04;
  }

  .hero-photo img {
    height: 430px;
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .consultation-moment {
    padding: 90px 0 64px;
  }

  .moment-transition svg {
    height: 76px;
  }

  .moment-transition::after {
    top: 75px;
  }

  .moment-photo {
    width: calc(100% - 12px);
  }

  .moment-photo::before {
    inset: 24px -8px -12px 16px;
  }

  .moment-photo img {
    height: 450px;
  }

  .moment-card {
    width: calc(100% - 12px);
    margin-top: -44px;
    padding: 26px 24px 28px;
  }

  .moment-card h2 {
    font-size: 2.12rem;
  }

  .moment-card .moment-lead {
    font-size: 1.1rem;
  }

  .button {
    min-height: 50px;
    padding-inline: 17px;
    font-size: 0.84rem;
  }

  .hero-photo figcaption span:last-child {
    max-width: 180px;
    text-align: right;
  }

  .session-flow li {
    grid-template-columns: 26px 1fr;
    gap: 12px;
  }

  .about-photo img {
    height: 400px;
  }

  .faq-list summary {
    padding-right: 30px;
  }

  .final-cta h2 {
    font-size: 2.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
