﻿:root {
  --bg-main: #F5EFE6;
  --bg-soft: #EFE7DC;
  --text-dark: #2B1F1E;
  --text-soft: #6E625C;
  --accent: #E87A6D;
  --accent-hover: #DC6B5F;
  --accent-light: #F08B7E;
  --border-soft: #E7DCCF;
  --overlay-light: rgba(245,239,230,0.92);
  --overlay-text: rgba(43,31,30,0.22);
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(232,122,109,0.38);
  outline-offset: 3px;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 78px;
  background: rgba(245,239,230,0.92);
  border-bottom: 1px solid rgba(43,31,30,0.08);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
  background: rgba(245,239,230,0.96);
  box-shadow: 0 12px 34px rgba(43,31,30,0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 0 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent);
  background: rgba(232,122,109,0.12);
  border-radius: 50%;
}

.brand__mark svg {
  width: 18px;
  height: 18px;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.brand__role {
  color: #A99B91;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
}

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

.nav a {
  color: #4F403B;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: -18px;
  color: rgba(79,64,59,0.76);
  border: 1px solid rgba(79,64,59,0.22);
  border-radius: 50%;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav__social svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.7;
}

.nav__social:hover,
.nav__social:focus-visible {
  color: var(--accent);
  border-color: rgba(232,122,109,0.58);
  transform: translateY(-1px);
}

.header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 18px 30px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(232,122,109,0.32);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.header__cta:hover,
.header__cta:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 18px 34px rgba(232,122,109,0.38);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  width: min(100%, 1440px);
  min-height: 760px;
  height: calc(100vh - 78px);
  margin: 78px auto 0;
  overflow: hidden;
  background: var(--bg-main);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 56px 0 42px;
}

.hero__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 43px;
  color: var(--accent);
}

.eyebrow {
  margin: 0 0 28px;
  color: #A99B91;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__name,
.hero__headline,
p {
  margin-top: 0;
}

.hero__name {
  margin-bottom: 34px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 76px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.hero__line {
  display: block;
  width: 64px;
  height: 2px;
  margin-bottom: 31px;
  background: #EE7669;
}

.hero__headline {
  margin-bottom: 30px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero__headline span {
  color: var(--accent);
}

.hero__copy {
  max-width: 395px;
  margin-bottom: 45px;
  color: #4F403B;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.hero__copy strong {
  color: var(--text-dark);
  font-weight: 700;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  min-height: 76px;
  padding: 22px 34px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 24px 38px rgba(232,122,109,0.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 28px 42px rgba(232,122,109,0.42);
  transform: translateY(-2px);
}

.hero__cta-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
}

.hero__cta-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

.hero__image {
  position: relative;
  min-width: 0;
  background-image: linear-gradient(
      90deg,
      #F5EFE6 0%,
      rgba(245,239,230,0.98) 8%,
      rgba(245,239,230,0.88) 20%,
      rgba(245,239,230,0.58) 38%,
      rgba(245,239,230,0.18) 58%,
      rgba(245,239,230,0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(245,239,230,0.16) 0%,
      rgba(245,239,230,0.03) 48%,
      rgba(245,239,230,0.18) 100%
    ),
    image-set(
      url("assets/hero-bg.webp") type("image/webp"),
      url("assets/hero-bg.jpg") type("image/jpeg")
    );
  background-position: 80% center;
  background-size: cover;
  background-repeat: no-repeat;
}

.interventions {
  background: #F5F1EC;
  border-top: 1px solid rgba(231,220,207,0.62);
}

.interventions__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 112px 42px 120px;
}

.interventions__header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 88px;
  margin-bottom: 58px;
}

.section-label {
  margin: 0 0 23px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.interventions h2 {
  max-width: 720px;
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.03;
}

.interventions h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.interventions__intro {
  max-width: 430px;
  margin: 0 0 9px;
  color: #6E625C;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

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

.intervention-card {
  display: flex;
  flex-direction: column;
  min-height: 366px;
  padding: 30px 26px 26px;
  background: rgba(255,251,246,0.72);
  border: 1px solid rgba(232,122,109,0.14);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(43,31,30,0.035);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.intervention-card:hover,
.intervention-card:focus-within {
  border-color: rgba(232,122,109,0.28);
  box-shadow: 0 24px 52px rgba(43,31,30,0.065);
  transform: translateY(-4px);
}

.intervention-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(232,122,109,0.24);
}

.intervention-card__icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}

.intervention-card h3 {
  min-height: 86px;
  margin: 0 0 20px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

.intervention-card p {
  margin: 0;
  color: #756A64;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
}

.about {
  background: #F5F1EC;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 70px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 88px 120px 112px;
}

.about__content {
  max-width: 590px;
}

.about h2 {
  margin: 0 0 22px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.about h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.about__content p:not(.section-label) {
  margin: 0;
  color: #4F403B;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.about__content p:not(.section-label) + p {
  margin-top: 16px;
  max-width: 560px;
}

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

.about-card {
  min-height: 180px;
  padding: 24px 24px 22px;
  background: rgba(255,251,246,0.64);
  border: 1px solid rgba(232,122,109,0.16);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(43,31,30,0.025);
}

.about-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--accent);
  background: rgba(232,122,109,0.17);
  border-radius: 50%;
}

.about-card__icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.about-card h3 {
  max-width: 250px;
  margin: 0 0 9px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.about-card p {
  margin: 0;
  color: #8A7D76;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.paths {
  background: #F5F1EC;
}

.paths__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 104px 120px 128px;
}

.paths__header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.paths__header .section-label {
  margin-bottom: 21px;
}

.paths h2 {
  margin: 0 0 21px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.paths h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.paths__header p:not(.section-label) {
  max-width: 620px;
  margin: 0 auto;
  color: #6E625C;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.paths__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px 34px 32px;
  background: rgba(255,251,246,0.72);
  border: 1px solid rgba(232,122,109,0.15);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(43,31,30,0.035);
}

.path-card--featured {
  color: #FDF7F0;
  background: #342624;
  border-color: rgba(52,38,36,0.24);
  box-shadow: 0 26px 58px rgba(43,31,30,0.16);
}

.path-card--consultation {
  background: rgba(248,247,232,0.68);
  border-color: rgba(91,111,66,0.22);
}

.path-card__badge {
  position: absolute;
  top: -15px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 9px 16px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(232,122,109,0.26);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.path-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  margin-bottom: 24px;
}

.path-card h3 {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 250px;
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.path-card--featured h3 {
  max-width: 185px;
  color: #fff;
}

.path-card__top span {
  flex: 0 0 auto;
  max-width: none;
  margin-top: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.path-card--featured .path-card__top span {
  color: #F2B5AD;
}

.path-card__price {
  margin: 0 0 22px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.path-card--featured .path-card__price {
  color: #fff;
  margin-top: -11px;
  margin-bottom: 36px;
  font-size: 36px;
  line-height: 0.95;
}

.path-card__description {
  min-height: 76px;
  margin: 0 0 28px;
  color: #6E625C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
}

.path-card__description--long {
  min-height: 0;
  margin-bottom: 0;
}

.path-card__description--long p {
  margin: 0;
}

.path-card__description--long p + p {
  margin-top: 14px;
}

.path-card--featured .path-card__description {
  margin-top: 8px;
  color: rgba(255,248,240,0.78);
}

.path-card__list {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.path-card__list li {
  position: relative;
  padding-left: 28px;
  color: #4F403B;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.path-card__list li::before {
  content: "";
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.path-card__list li::after {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

.path-card--featured .path-card__list li {
  color: rgba(255,248,240,0.86);
}

.path-card--featured .path-card__list li::before {
  border-color: #F2B5AD;
}

.path-card--featured .path-card__list li::after {
  border-color: #F2B5AD;
}

.path-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  padding: 18px 24px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(232,122,109,0.25);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.path-card__cta:hover,
.path-card__cta:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.resources {
  background: #F5F1EC;
}

.resources__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 86px 120px 118px;
}

.resources__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.resources__header .section-label {
  margin-bottom: 21px;
}

.resources h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.resources h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.resource-card {
  display: block;
  min-height: 196px;
  padding: 27px 28px 26px;
  background: rgba(255,251,246,0.74);
  border: 1px solid rgba(232,122,109,0.15);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(43,31,30,0.028);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(232,122,109,0.28);
  box-shadow: 0 22px 48px rgba(43,31,30,0.055);
  transform: translateY(-3px);
}

.resource-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.resource-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--accent);
  background: rgba(232,122,109,0.18);
  border-radius: 15px;
}

.resource-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.65;
}

.resource-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 7px 12px;
  color: #8A7D76;
  background: #F1E9DE;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.resource-card h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.18;
}

.resource-card p {
  max-width: 330px;
  margin: 0;
  color: #4F403B;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.contact {
  background: #F5F1EC;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: 86px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 98px 120px 124px;
}

.contact__content {
  max-width: 640px;
}

.contact h2 {
  margin: 0 0 24px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.contact h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.contact__intro {
  max-width: 500px;
  margin: 0 0 42px;
  color: #6E625C;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
}

.contact__list {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--accent);
  background: rgba(232,122,109,0.16);
  border-radius: 50%;
}

.contact-item__icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.65;
}

.contact-item h3 {
  margin: 1px 0 8px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: #4F403B;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
}

.contact-item a {
  transition: color 0.25s ease;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--accent);
}

.contact-item p + p {
  margin-top: 6px;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  background: rgba(255,251,246,0.76);
  border: 1px solid rgba(232,122,109,0.15);
  border-radius: 30px;
  box-shadow: 0 22px 52px rgba(43,31,30,0.045);
}

.contact-form__field {
  display: grid;
  gap: 9px;
}

.contact-form label {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(43,31,30,0.11);
  border-radius: 18px;
  outline: none;
  background: rgba(255,255,255,0.58);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input {
  height: 56px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 156px;
  padding: 17px 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(232,122,109,0.55);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 0 4px rgba(232,122,109,0.09);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(220,107,95,0.8);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 34px rgba(232,122,109,0.28);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 22px 38px rgba(232,122,109,0.34);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form__status {
  min-height: 20px;
  margin: 0;
  color: #6E625C;
  font-size: 13px;
  line-height: 1.45;
}

.contact-form__status.is-success {
  color: #4C7A5E;
}

.contact-form__status.is-error {
  color: var(--accent-hover);
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.faq {
  background: #F5F1EC;
}

.faq__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 82px 24px 112px;
}

.faq__header {
  margin: 0 auto 42px;
  text-align: center;
}

.faq h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq details {
  background: rgba(255,251,246,0.74);
  border: 1px solid rgba(232,122,109,0.15);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(43,31,30,0.025);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  max-width: 760px;
  margin: -6px 28px 25px;
  color: #6E625C;
  font-size: 15px;
  line-height: 1.72;
}

.site-footer {
  background: #2B1F1E;
  color: rgba(255,248,240,0.78);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.7fr) minmax(280px, 1fr) minmax(130px, 0.55fr);
  gap: 52px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 68px 42px 50px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(232,122,109,0.24);
  border: 1px solid rgba(232,122,109,0.26);
  border-radius: 50%;
}

.footer-brand__mark svg {
  width: 20px;
  height: 20px;
}

.footer-brand__name {
  display: block;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.footer-brand__role {
  display: block;
  margin-top: 6px;
  color: rgba(255,248,240,0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 0 0 26px;
  color: rgba(255,248,240,0.66);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-footer__social svg {
  width: 19px;
  height: 19px;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
  background: rgba(232,122,109,0.2);
  border-color: rgba(232,122,109,0.42);
  transform: translateY(-2px);
}

.site-footer__column h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column p {
  display: block;
  margin: 0;
  color: rgba(255,248,240,0.68);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
}

.site-footer__column a {
  width: fit-content;
  transition: color 0.25s ease;
}

.site-footer__column a + a,
.site-footer__column p + p {
  margin-top: 9px;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #fff;
}

.site-footer__studios p {
  max-width: 360px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 24px 42px 30px;
  border-top: 1px solid rgba(255,248,240,0.1);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255,248,240,0.5);
  font-size: 13px;
}

.site-footer__bottom nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__bottom a {
  color: rgba(255,248,240,0.62);
  font-size: 13px;
  transition: color 0.25s ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 48px), 760px);
  padding: 22px;
  color: rgba(255,248,240,0.76);
  background: #2B1F1E;
  border: 1px solid rgba(255,248,240,0.12);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(43,31,30,0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 7px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner button {
  min-height: 42px;
  padding: 13px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cookie-banner .cookie-banner__secondary {
  color: rgba(255,248,240,0.82);
  background: transparent;
  border-color: rgba(255,248,240,0.22);
}

.legal-page {
  min-height: 100vh;
  background: #F5F1EC;
  color: var(--text-dark);
}

.legal-page__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 86px 24px 110px;
}

.legal-page__back {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.legal-page h1 {
  margin: 0 0 34px;
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.legal-page p {
  margin: 0;
  color: #4F403B;
  font-size: 16px;
  line-height: 1.75;
}

.legal-page a:not(.legal-page__back) {
  color: var(--accent);
  font-weight: 600;
}

.feature-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 72px;
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
}

.feature-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 0 42px;
}

.feature {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 0 28px;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 0;
  width: 1px;
  height: 34px;
  background: var(--border-soft);
}

.feature__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--accent);
  border: 1px solid rgba(232,122,109,0.26);
  border-radius: 50%;
}

.feature__icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

.feature p {
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .header__inner {
    padding: 0 30px;
  }

  .nav {
    gap: 26px;
  }

  .hero__content {
    padding-left: 32px;
    padding-right: 34px;
  }

  .hero__name {
    font-size: 68px;
  }

  .interventions__inner {
    padding: 96px 30px 104px;
  }

  .interventions__header {
    gap: 54px;
  }

  .interventions h2 {
    font-size: 50px;
  }

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

  .intervention-card {
    min-height: 336px;
  }

  .about__inner {
    gap: 46px;
    padding: 78px 60px 92px;
  }

  .about h2 {
    font-size: 50px;
  }

  .about__content p:not(.section-label) {
    font-size: 16px;
  }

  .about-card {
    min-height: 172px;
  }

  .paths__inner {
    padding: 92px 60px 112px;
  }

  .paths h2 {
    font-size: 50px;
  }

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

  .path-card {
    min-height: 540px;
    padding: 30px 26px 28px;
  }

  .path-card h3 {
    font-size: 29px;
  }

  .resources__inner {
    padding: 78px 60px 100px;
  }

  .resources h2 {
    font-size: 50px;
  }

  .contact__inner {
    gap: 54px;
    padding: 88px 60px 108px;
  }

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

  .contact-form {
    padding: 32px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 58px 30px 44px;
  }

  .site-footer__bottom {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 900px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
  }

  .nav {
    display: none;
  }

  .header__cta {
    min-height: 42px;
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero__content {
    min-height: calc(100vh - 78px);
    padding: 72px 24px 54px;
  }

  .hero__icon {
    margin-bottom: 34px;
  }

  .eyebrow {
    margin-bottom: 23px;
    font-size: 11px;
  }

  .hero__name {
    margin-bottom: 28px;
    font-size: 54px;
    line-height: 0.95;
  }

  .hero__line {
    margin-bottom: 28px;
  }

  .hero__headline {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .hero__copy {
    max-width: 100%;
    margin-bottom: 36px;
  }

  .hero__cta {
    width: 100%;
    min-height: 66px;
    padding: 20px 24px;
  }

  .hero__image {
    min-height: 520px;
    background-image: linear-gradient(
        180deg,
        #F5EFE6 0%,
        rgba(245,239,230,0.88) 14%,
        rgba(245,239,230,0.36) 42%,
        rgba(245,239,230,0) 100%
      ),
      linear-gradient(
        90deg,
        rgba(245,239,230,0.28) 0%,
        rgba(245,239,230,0.06) 52%,
        rgba(245,239,230,0) 100%
      ),
      image-set(
        url("assets/hero-bg.webp") type("image/webp"),
        url("assets/hero-bg.jpg") type("image/jpeg")
      );
    background-position: 80% top;
  }

  .interventions__inner {
    padding: 82px 24px 88px;
  }

  .interventions__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    margin-bottom: 42px;
  }

  .section-label {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .interventions h2 {
    max-width: 620px;
    font-size: 42px;
    line-height: 1.06;
  }

  .interventions__intro {
    max-width: 560px;
    margin-bottom: 0;
    font-size: 15px;
  }

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

  .intervention-card {
    min-height: 318px;
    padding: 28px 24px 24px;
    border-radius: 24px;
  }

  .intervention-card__icon {
    margin-bottom: 30px;
  }

  .intervention-card h3 {
    min-height: auto;
    font-size: 24px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
    padding: 72px 24px 82px;
  }

  .about__content {
    max-width: 680px;
  }

  .about h2 {
    font-size: 42px;
  }

  .about__content p:not(.section-label) {
    font-size: 16px;
  }

  .about__cards {
    gap: 16px;
  }

  .paths__inner {
    padding: 82px 24px 92px;
  }

  .paths__header {
    margin-bottom: 42px;
  }

  .paths h2 {
    font-size: 42px;
  }

  .paths__header p:not(.section-label) {
    font-size: 15px;
  }

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

  .path-card {
    min-height: 0;
    padding: 30px 24px 26px;
    border-radius: 26px;
  }

  .path-card--featured {
    grid-column: auto;
  }

  .path-card__description {
    min-height: 0;
  }

  .resources__inner {
    padding: 76px 24px 86px;
  }

  .resources__header {
    margin-bottom: 42px;
  }

  .resources h2 {
    font-size: 42px;
  }

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 82px 24px 92px;
  }

  .contact__content {
    max-width: 680px;
  }

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

  .contact__intro {
    font-size: 16px;
  }

  .faq__inner {
    padding: 74px 24px 88px;
  }

  .faq h2 {
    font-size: 42px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 24px 40px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 24px 30px;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
  }

  .feature-bar {
    height: auto;
  }

  .feature-bar__inner {
    grid-template-columns: 1fr 1fr;
    padding: 12px 24px;
  }

  .feature {
    justify-content: flex-start;
    min-height: 68px;
    padding: 0 12px 0 0;
  }

  .feature:not(:last-child)::after {
    display: none;
  }

  .feature p {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    font-size: 14px;
  }

  .brand__role {
    font-size: 8px;
  }

  .header__cta {
    display: none;
  }

  .hero__content {
    min-height: auto;
    padding-top: 62px;
  }

  .hero__icon {
    margin-bottom: 30px;
  }

  .hero__name {
    font-size: 54px;
  }

  .hero__headline {
    font-size: 28px;
  }

  .hero__cta {
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero__image {
    min-height: 430px;
  }

  .interventions__inner {
    padding: 70px 24px 74px;
  }

  .interventions h2 {
    font-size: 35px;
  }

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

  .intervention-card {
    min-height: 0;
    padding: 28px 24px 25px;
  }

  .intervention-card h3 {
    font-size: 25px;
  }

  .about__inner {
    padding: 62px 24px 68px;
  }

  .about h2 {
    font-size: 38px;
  }

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

  .about-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .paths__inner {
    padding: 70px 24px 78px;
  }

  .paths h2 {
    font-size: 36px;
  }

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

  .path-card--featured {
    grid-column: auto;
  }

  .path-card h3 {
    font-size: 28px;
  }

  .path-card__top {
    min-height: 0;
    margin-bottom: 24px;
  }

  .path-card__price {
    font-size: 42px;
  }

  .resources__inner {
    padding: 68px 24px 74px;
  }

  .resources h2 {
    font-size: 36px;
  }

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

  .resource-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .contact__inner {
    padding: 70px 24px 78px;
  }

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

  .contact-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-item__icon {
    width: 42px;
    height: 42px;
  }

  .contact-form {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .faq__inner {
    padding: 64px 24px 76px;
  }

  .faq h2 {
    font-size: 34px;
  }

  .faq summary {
    padding: 21px 22px;
    font-size: 20px;
  }

  .faq details p {
    margin-right: 22px;
    margin-left: 22px;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-banner button {
    width: 100%;
  }

  .feature-bar__inner {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 58px;
  }
}

@media (max-width: 700px) {
  .header__inner,
  .interventions__inner,
  .about__inner,
  .paths__inner,
  .resources__inner,
  .contact__inner,
  .faq__inner,
  .site-footer__inner,
  .site-footer__bottom {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero__content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero__image {
    min-height: 400px;
    background-position: 78% top;
  }

  .interventions__grid,
  .about__cards,
  .paths__grid,
  .resources__grid {
    grid-template-columns: 1fr;
  }

  .intervention-card,
  .about-card,
  .path-card,
  .resource-card,
  .contact-form,
  .faq details {
    max-width: 100%;
  }

  .intervention-card p {
    overflow-wrap: break-word;
  }

  .path-card {
    padding: 30px 24px 28px;
  }

  .path-card__top {
    min-height: 0;
  }

  .path-card__price {
    margin-bottom: 20px;
  }

  .resource-card__top {
    gap: 14px;
  }

  .resource-card__badge {
    padding-right: 12px;
    padding-left: 12px;
    white-space: nowrap;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form button,
  .header__cta,
  .hero__cta,
  .cookie-banner button {
    min-height: 48px;
  }

  .site-footer__social {
    margin: 2px auto 0;
  }
}

@media (max-width: 430px) {
  .header {
    height: 72px;
  }

  .hero {
    margin-top: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__name {
    font-size: 13px;
  }

  .brand__role {
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .hero__content {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .hero__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
  }

  .eyebrow,
  .section-label {
    font-size: 10px;
    letter-spacing: 0.34em;
  }

  .hero__name {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 0.96;
  }

  .hero__line {
    width: 54px;
    margin-bottom: 24px;
  }

  .hero__headline {
    font-size: 26px;
    line-height: 1.08;
  }

  .hero__copy,
  .interventions__intro,
  .about__content p:not(.section-label),
  .paths__header p:not(.section-label),
  .contact__intro,
  .faq details p {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero__cta {
    gap: 12px;
    min-height: 58px;
    padding: 18px 18px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero__cta-icon {
    width: 26px;
    height: 26px;
  }

  .hero__image {
    min-height: 360px;
    background-position: 76% top;
  }

  .interventions__inner {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .interventions h2,
  .about h2,
  .paths h2,
  .resources h2,
  .contact h2 {
    font-size: 33px;
    line-height: 1.08;
  }

  .faq h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .interventions__header,
  .paths__header,
  .resources__header,
  .faq__header {
    margin-bottom: 34px;
  }

  .intervention-card {
    padding: 26px 22px 24px;
  }

  .intervention-card__icon,
  .resource-card__icon {
    width: 46px;
    height: 46px;
  }

  .intervention-card h3 {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .intervention-card p {
    font-size: 13.5px;
    line-height: 1.66;
  }

  .about__inner,
  .paths__inner,
  .resources__inner,
  .contact__inner {
    padding-top: 60px;
    padding-bottom: 66px;
  }

  .about-card h3,
  .resource-card h3 {
    font-size: 20px;
  }

  .path-card {
    padding: 28px 22px 26px;
    border-radius: 24px;
  }

  .path-card h3 {
    font-size: 26px;
  }

  .path-card--featured h3 {
    max-width: 170px;
  }

  .path-card__top {
    gap: 14px;
    margin-bottom: 20px;
  }

  .path-card__top span {
    font-size: 12px;
  }

  .path-card__price {
    font-size: 38px;
  }

  .path-card--featured .path-card__price {
    margin-top: -6px;
    margin-bottom: 26px;
    font-size: 31px;
  }

  .path-card__description {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .path-card__list {
    gap: 13px;
  }

  .path-card__list li {
    font-size: 13px;
    line-height: 1.45;
  }

  .resource-card {
    padding: 24px 22px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-form {
    gap: 18px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contact-form input {
    height: 52px;
  }

  .contact-form textarea {
    min-height: 142px;
  }

  .faq__inner {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .faq summary {
    padding: 19px 20px;
    font-size: 18px;
    line-height: 1.22;
  }

  .faq summary::after {
    margin-left: 14px;
  }

  .faq details p {
    margin: -4px 20px 22px;
  }

  .feature-bar__inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .feature p {
    font-size: 13px;
  }

  .site-footer__inner {
    gap: 30px;
  }

  .site-footer__bottom {
    gap: 18px;
  }
}

@media (max-width: 380px) {
  .header__inner,
  .hero__content,
  .interventions__inner,
  .about__inner,
  .paths__inner,
  .resources__inner,
  .contact__inner,
  .faq__inner,
  .site-footer__inner,
  .site-footer__bottom {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand__name {
    font-size: 12px;
  }

  .hero__name {
    font-size: 42px;
  }

  .hero__headline {
    font-size: 24px;
  }

  .hero__cta {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero__image {
    min-height: 330px;
  }

  .interventions h2,
  .about h2,
  .paths h2,
  .resources h2,
  .contact h2,
  .faq h2 {
    font-size: 30px;
  }

  .path-card__badge {
    left: 22px;
  }

  .path-card h3 {
    font-size: 24px;
  }

  .path-card__price {
    font-size: 36px;
  }

  .path-card--featured .path-card__price {
    font-size: 29px;
  }

  .resource-card__top {
    align-items: flex-start;
  }

  .resource-card__badge {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .intervention-card p {
    font-size: 13px;
    line-height: 1.64;
  }

  .feature-bar__inner {
    padding-right: 18px;
    padding-left: 18px;
  }
}
