:root {
  --primary-color: #b23256;
  --primary-color-hover: #902845;
  --primary-gradient: linear-gradient(135deg, #b23256 0%, #d44d71 100%);
  --secondary-color: #ac9a73;
  --text-main: #333333;
  --text-gray: #4f4f4f;
  --text-light: #828282;
  --text-white: #ffffff;
  --bg-body: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #333333;
  --font-heading: "Prata", "Didot", "Bodoni MT", "Times New Roman", serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --container-width: 1200px;
  --container-padding: 20px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(178, 50, 86, 0.15);
}

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

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(var(--container-width), calc(100% - var(--container-padding) * 2));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--primary-color);
  color: var(--text-white);
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-height);
  color: var(--text-white);
}

.site-header__container {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  font-weight: 800;
}

.site-logo__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__list a:not(.btn) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav__list a:not(.btn):hover {
  color: #f7dbe3;
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-white);
  content: "";
}

.hamburger-icon::before {
  transform: translateY(-8px);
}

.hamburger-icon::after {
  transform: translateY(6px);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn--primary {
  background: var(--primary-gradient);
  box-shadow: 0 14px 32px rgba(178, 50, 86, 0.28);
}

.btn--primary:hover {
  background: var(--primary-color-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn--sm {
  min-height: 40px;
  padding: 10px 20px;
}

.btn--lg {
  min-width: 230px;
  min-height: 54px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.hero-section {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 132px 20px 84px;
  color: var(--text-white);
  text-align: center;
  background-image: linear-gradient(135deg, rgba(37, 33, 30, 0.76) 0%, rgba(37, 33, 30, 0.3) 100%), url("../images/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__content {
  max-width: 990px;
}

.hero__content h1 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__content p {
  max-width: 850px;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.section {
  padding: 72px 0;
}

.section__header {
  max-width: 1040px;
  margin: 0 auto 44px;
  text-align: center;
}

.section__header h2,
.feature-content h2,
.cta-section h2 {
  margin-bottom: 18px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.22;
}

.section__header h2 span {
  display: inline-block;
  position: relative;
}

.section__header h2 span::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 86px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--primary-color);
  content: "";
}

.section__header p {
  max-width: 980px;
  margin: 28px auto 0;
  color: var(--text-gray);
  line-height: 1.8;
}

.intro-section {
  padding-bottom: 38px;
}

.problem-section {
  background: var(--bg-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.problem-grid h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.2;
}

.problem-grid p {
  color: var(--text-gray);
  line-height: 1.85;
}

.problem-list {
  display: grid;
  gap: 18px;
}

.problem-list div {
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  background: var(--bg-body);
  box-shadow: var(--shadow-card);
}

.problem-list strong,
.problem-list span {
  display: block;
}

.problem-list strong {
  margin-bottom: 7px;
  color: var(--text-main);
  font-size: 18px;
}

.problem-list span {
  color: var(--text-gray);
  line-height: 1.7;
}

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

.step-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.step-card h3 {
  margin: 24px 22px 10px;
  color: var(--text-main);
  font-size: 22px;
  line-height: 1.25;
}

.step-card p {
  margin: 0 22px 28px;
  color: var(--text-gray);
  line-height: 1.75;
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

.feature-section {
  max-width: var(--container-width);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  margin: 40px auto 0;
  padding: 0 var(--container-padding) 74px;
}

.feature-media img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.feature-content p {
  margin-bottom: 24px;
  color: var(--text-gray);
  line-height: 1.8;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-gray);
  font-weight: 600;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
}

.member-section {
  background: var(--bg-light);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.member-card {
  padding: 32px 26px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.member-card img {
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border: 4px solid #f2e9e1;
  border-radius: 50%;
  object-fit: cover;
}

.member-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.member-card p {
  margin-bottom: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

.member-card a {
  color: var(--primary-color);
  font-weight: 800;
}

.faq-section {
  background: var(--bg-body);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-grid article {
  min-height: 190px;
  border-radius: var(--radius-md);
  padding: 26px;
  background: var(--bg-light);
  box-shadow: var(--shadow-card);
}

.faq-grid h3 {
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.35;
}

.faq-grid p {
  color: var(--text-gray);
  line-height: 1.75;
}

.cta-section {
  padding: 96px 20px;
  background-image: linear-gradient(rgba(30, 28, 24, 0.8), rgba(30, 28, 24, 0.8)), url("../images/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--text-white);
}

.cta-section p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--bg-dark);
  color: var(--text-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(4, minmax(130px, 1fr));
  gap: 30px;
}

.site-logo--footer {
  margin-bottom: 16px;
}

.footer-grid p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--text-white);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a:not(.site-logo) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.about-hero {
  background-image: linear-gradient(135deg, rgba(37, 33, 30, 0.82) 0%, rgba(37, 33, 30, 0.48) 100%), url("../images/feature.jpg");
}

.about-intro {
  background: var(--bg-body);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.about-kicker {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-grid h2,
.about-trust-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.22;
}

.about-story-grid p,
.about-value-grid p,
.about-audience-grid p,
.about-trust-panel p {
  color: var(--text-gray);
  line-height: 1.8;
}

.about-story-grid p + p {
  margin-top: 18px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-grid article,
.about-audience-grid article {
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--bg-body);
  box-shadow: var(--shadow-card);
}

.about-value-grid h2,
.about-audience-grid h3 {
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 22px;
}

.about-audience-section {
  background: var(--bg-light);
}

.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-audience-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-color);
  font-weight: 800;
}

.about-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 42px;
  background: var(--bg-dark);
  color: var(--text-white);
}

.about-trust-panel h2,
.about-trust-panel p {
  color: var(--text-white);
}

.about-trust-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.about-trust-panel ul {
  display: grid;
  gap: 14px;
}

.about-trust-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.about-trust-panel li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
}

.about-link-section {
  padding-top: 34px;
}

.about-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-link-grid a {
  min-height: 86px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.about-link-grid a:hover {
  box-shadow: var(--shadow-hover);
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 128px 0 62px;
  color: var(--text-white);
  background-image: linear-gradient(135deg, rgba(37, 33, 30, 0.82) 0%, rgba(37, 33, 30, 0.48) 100%), url("../images/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--text-white);
  font-weight: 700;
}

.breadcrumb span::before {
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.72);
  content: "/";
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 400;
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.content-frame,
.sidebar-card,
.placeholder-card,
.cluster-card {
  border-radius: var(--radius-md);
  background: var(--bg-body);
  box-shadow: var(--shadow-card);
}

.content-frame {
  padding: 36px;
}

.article-content {
  color: var(--text-main);
}

.article-block + .article-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #ece7e2;
}

.article-kicker {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-block h2 {
  margin-bottom: 14px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
}

.article-block h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.35;
}

.article-block p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.82;
}

.article-block p + p {
  margin-top: 16px;
}

.takeaway-box {
  border-radius: var(--radius-md);
  padding: 26px;
  background: var(--bg-light);
}

.takeaway-box ul {
  display: grid;
  gap: 12px;
}

.takeaway-box li {
  position: relative;
  padding-left: 24px;
  color: var(--text-gray);
  line-height: 1.7;
}

.takeaway-box li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
}

.content-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.content-faq-grid article {
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--bg-light);
}

.structure-block + .structure-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #ece7e2;
}

.structure-block h2 {
  margin-bottom: 14px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.placeholder-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px dashed #d8cbc2;
  padding: 22px;
  color: var(--text-gray);
}

.placeholder-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cluster-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  border: 1px solid #eee5df;
  padding: 18px;
  color: var(--primary-color);
  font-weight: 800;
}

.cluster-card:hover {
  border-color: rgba(178, 50, 86, 0.38);
  box-shadow: var(--shadow-hover);
}

.sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-card h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

.sidebar-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee5df;
  color: var(--text-gray);
  font-weight: 700;
}

.sidebar-card a:last-child {
  border-bottom: 0;
}

.sidebar-card a:hover {
  color: var(--primary-color);
}

.page-cta {
  margin-top: 48px;
  padding: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  color: var(--text-white);
  text-align: center;
}

.page-cta h2 {
  margin-bottom: 14px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
}

.page-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(51, 51, 51, 0.98);
  }

  .site-nav__list.is-open {
    display: flex;
  }

  .site-nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav__list a:not(.btn) {
    min-height: 52px;
  }

  .site-nav__list .btn {
    margin-top: 14px;
  }

  .feature-section,
  .footer-grid,
  .page-layout,
  .problem-grid,
  .about-story-grid,
  .about-value-grid,
  .about-audience-grid,
  .about-trust-panel,
  .about-link-grid {
    grid-template-columns: 1fr;
  }

  .steps-container,
  .member-grid,
  .cluster-grid,
  .faq-grid,
  .content-faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-media img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  :root {
    --container-padding: 16px;
  }

  .site-logo__text {
    font-size: 18px;
  }

  .hero-section {
    min-height: 680px;
    padding-top: 118px;
  }

  .hero__content p {
    font-size: 16px;
  }

  .hero__actions {
    gap: 14px;
  }

  .btn,
  .btn--lg {
    width: 100%;
  }

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

  .content-frame,
  .page-cta {
    padding: 24px;
  }

  .about-value-grid article,
  .about-audience-grid article,
  .about-trust-panel {
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
