:root {
  --font-family: "Orbitron", sans-serif;
  --font-size-base: 14px;
  --line-height-base: 1.38;

  --max-w: 1040px;
  --space-x: 0.77rem;
  --space-y: 0.95rem;
  --gap: 0.69rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 0.77rem;
  --radius-lg: 0.51rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.11);
  --shadow-lg: 0 6px 30px rgba(0,0,0,0.13);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 130ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #C06C4C;
  --brand-contrast: #FFFFFF;
  --accent: #8B5E3C;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F3F0;
  --neutral-300: #D1CCC7;
  --neutral-600: #7A736E;
  --neutral-800: #3D3835;
  --neutral-900: #1C1A18;

  --page-bg: #FFFFFF;
  --page-fg: #1C1A18;
  --muted-bg: #F5F3F0;
  --muted-fg: #3D3835;
  --card-bg: #FFFFFF;
  --card-fg: #1C1A18;
  --card-border: #D1CCC7;
  --inverse-bg: #1C1A18;
  --inverse-fg: #FFFFFF;
  --primary-bg: #C06C4C;
  --primary-fg: #FFFFFF;
  --primary-hover: #A85A3E;
  --accent-bg: #8B5E3C;
  --accent-fg: #FFFFFF;
  --accent-hover: #7A4F32;
  --gradient-hero-bg: linear-gradient(135deg, #C06C4C 0%, #8B5E3C 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #C06C4C 0%, #A85A3E 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #C06C4C;

  --link: #C06C4C;
  --link-hover: #8B5E3C;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
  background: var(--page-bg, #ffffff);
  border-bottom: 1px solid var(--muted-bg, #e5e7eb);
  width: 100%;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1.5rem);
}

.logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  color: var(--page-fg, #111827);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--link-hover, #2563eb);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap, 1.5rem);
}

.nav-list a {
  font-size: var(--font-size-md, 1rem);
  color: var(--muted-fg, #4b5563);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--link, #2563eb);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--link-hover, #2563eb);
}

.nav-list a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm, 0.25rem);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--muted-bg, #f3f4f6);
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--page-fg, #111827);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--page-bg, #ffffff);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-y, 1.5rem);
    text-align: center;
  }

  .nav-list a {
    font-size: var(--font-size-h3, 1.25rem);
    color: var(--page-fg, #111827);
    padding: 0.5rem 0;
  }

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

  .header-inner {
    position: relative;
    z-index: 101;
  }
}

footer {
  background: var(--page-bg, #ffffff);
  color: var(--page-fg, #1a1a1a);
  font-family: var(--font-family, 'Helvetica Neue', Arial, sans-serif);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.6);
  padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
  border-top: 1px solid var(--muted-bg, #eaeaea);
}

.footer-container {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap, 1.5rem);
  text-align: center;
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-y, 0.5rem);
}

.contact-item {
  display: inline-block;
  color: var(--muted-fg, #555555);
  text-decoration: none;
  font-size: var(--font-size-sm, 0.875rem);
}

.contact-item:hover {
  color: var(--link-hover, #0056b3);
}

.footer-logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary-bg, #1a1a1a);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap, 1.5rem);
}

.footer-nav a {
  color: var(--link, #333333);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.footer-nav a:hover {
  color: var(--link-hover, #0056b3);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap, 1.5rem);
}

.footer-legal a {
  color: var(--muted-fg, #777777);
  text-decoration: none;
  font-size: var(--font-size-sm, 0.875rem);
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.footer-legal a:hover {
  color: var(--link-hover, #0056b3);
}

.footer-disclaimer {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #777777);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.footer-copy {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #999999);
  margin: 0;
}

@media (min-width: 768px) {
  footer {
    padding: var(--space-section-y, 4rem) var(--space-section-x, 2rem);
  }

  .footer-container {
    gap: var(--gap, 2rem);
  }

  .footer-contact address {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-x, 1.5rem);
  }
}

.cookie-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--card-bg);
  color: var(--card-fg);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
}

.cookie-notice__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}

.cookie-notice__copy {
  flex: 1 1 60%;
  min-width: 240px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--gap);
}

.cookie-notice__title {
  font-size: var(--font-size-md);
  font-weight: 600;
  white-space: nowrap;
}

.cookie-notice__text {
  margin: 0;
  flex: 1 1 200px;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0;
}

.cookie-notice__btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.cookie-notice__btn--primary {
  background: var(--primary-bg);
  color: var(--primary-fg);
}

.cookie-notice__btn--primary:hover {
  background: var(--primary-hover);
}

.cookie-notice__btn--ghost {
  background: transparent;
  color: var(--card-fg);
  border: 1px solid var(--card-border);
}

.cookie-notice__btn--ghost:hover {
  background: var(--btn-ghost-bg-hover);
}

.cookie-notice__btn--link {
  background: transparent;
  color: var(--link);
  padding: 0.4rem 0.5rem;
  text-decoration: underline;
}

.cookie-notice__btn--link:hover {
  color: var(--link-hover);
}

@media (max-width: 640px) {
  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-notice__copy {
    flex-basis: auto;
  }
  .cookie-notice__actions {
    justify-content: flex-end;
  }
}

.intro-focus {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1C1A18);
      padding: 3.5rem 1.5rem 4rem;
    }

    .intro-focus .inner {
      max-width: 740px;
      margin: 0 auto;
    }

    .intro-focus .title {
      font-size: 2.2rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 0 0 1.25rem;
      color: var(--page-fg, #1C1A18);
    }

    .intro-focus .subtitle {
      font-size: 1.1rem;
      line-height: 1.55;
      color: var(--muted-fg, #3D3835);
      margin: 0 0 2rem;
      max-width: 640px;
    }

    .intro-focus .note {
      border-top: 1px solid var(--muted-bg, #F5F3F0);
      padding-top: 1.5rem;
      margin-bottom: 2.2rem;
    }

    .intro-focus .note p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg, #3D3835);
      margin: 0 0 0.75rem;
    }

    .intro-focus .note p:last-child {
      margin-bottom: 0;
    }

    .intro-focus .action {
      display: inline-block;
      background: var(--primary-bg, #C06C4C);
      color: var(--primary-fg, #FFFFFF);
      font-size: 1rem;
      font-weight: 500;
      padding: 0.85rem 2rem;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s ease;
      line-height: 1.2;
    }

    .intro-focus .action:hover {
      background: var(--primary-hover, #A85A3E);
    }

    /* small screens */
    @media (max-width: 600px) {
      .intro-focus {
        padding: 2.5rem 1.25rem 3rem;
      }

      .intro-focus .title {
        font-size: 1.7rem;
      }

      .intro-focus .subtitle {
        font-size: 1rem;
      }

      .intro-focus .action {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
      }
    }

.identity {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1C1A18);
      padding: 3rem 1.5rem;
    }

    .identity .inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .identity .section-heading {
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 0;
      max-width: 70%;
    }

    .identity .section-summary {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      max-width: 65%;
      color: var(--muted-fg, #3D3835);
    }

    .identity .note {
      background: var(--muted-bg, #F5F3F0);
      padding: 1.5rem 2rem;
      border-radius: 8px;
      max-width: 75%;
      align-self: flex-start;
    }

    .identity .note-title {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin: 0 0 0.5rem 0;
      color: var(--accent-bg, #8B5E3C);
    }

    .identity .note-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg, #3D3835);
    }

    /* тонкая адаптация */
    @media (max-width: 700px) {
      .identity {
        padding: 2rem 1rem;
      }

      .identity .section-heading {
        max-width: 100%;
        font-size: 1.4rem;
      }

      .identity .section-summary {
        max-width: 100%;
      }

      .identity .note {
        max-width: 100%;
        padding: 1.25rem 1.5rem;
      }
    }

.people-behind {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1C1A18);
      padding: 4rem 1.5rem;
    }
    .people-behind .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .people-behind h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin: 0 0 1.25rem;
      line-height: 1.2;
      color: var(--page-fg, #1C1A18);
    }
    .people-behind > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 680px;
      color: var(--page-fg, #1C1A18);
    }
    .people-behind .team-grid {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin-bottom: 2.5rem;
    }
    .people-behind .member {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      border-bottom: 1px solid var(--muted-bg, #D1CCC7);
      padding-bottom: 1.5rem;
    }
    .people-behind .member:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .people-behind .role {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--brand-primary-bg, #C06C4C);
      font-weight: 500;
    }
    .people-behind .name {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--page-fg, #1C1A18);
      line-height: 1.3;
    }
    .people-behind .note {
      font-size: 0.92rem;
      line-height: 1.5;
      color: var(--muted-fg, #3D3835);
      max-width: 580px;
      margin-top: 0.15rem;
    }
    .people-behind .closing {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--page-fg, #1C1A18);
      margin: 0;
      padding-top: 0.5rem;
      border-top: 1px solid var(--muted-bg, #D1CCC7);
      max-width: 620px;
    }
    @media (min-width: 640px) {
      .people-behind {
        padding: 5rem 2rem;
      }
      .people-behind h2 {
        font-size: 2rem;
      }
      .people-behind .team-grid {
        gap: 2rem;
      }
      .people-behind .member {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.4rem 1rem;
        padding-bottom: 1.75rem;
      }
      .people-behind .role {
        flex: 0 0 9rem;
      }
      .people-behind .name {
        flex: 1 1 auto;
        min-width: 12rem;
      }
      .people-behind .note {
        flex: 0 0 100%;
        margin-top: 0.25rem;
      }
    }
    @media (min-width: 860px) {
      .people-behind .member {
        gap: 0.4rem 1.5rem;
      }
      .people-behind .role {
        flex-basis: 10rem;
      }
      .people-behind .name {
        min-width: 14rem;
      }
    }

.why-choose {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1C1A18);
      padding: 3.5rem 1.5rem;
    }
    .why-choose .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      color: var(--page-fg, #1C1A18);
    }
    .why-choose p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1.25rem;
      color: var(--muted-fg, #3D3835);
    }
    .why-choose p:last-of-type {
      margin-bottom: 0;
    }
    /* небольшой акцент на первом абзаце — терракотовая линия */
    .why-choose h2::after {
      content: '';
      display: block;
      width: 2.5rem;
      height: 3px;
      background: var(--primary-bg, #C06C4C);
      margin-top: 0.75rem;
      border-radius: 2px;
    }
    /* для планшетов и шире */
    @media (min-width: 640px) {
      .why-choose {
        padding: 5rem 2rem;
      }
      .why-choose h2 {
        font-size: 2rem;
      }
      .why-choose p {
        font-size: 1.0625rem;
      }
    }
    /* тонкая адаптация для больших экранов */
    @media (min-width: 1024px) {
      .why-choose .inner {
        max-width: 760px;
      }
    }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 20px;
    }

    .faq .inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq h2 {
      font-size: 28px;
      font-weight: 600;
      margin: 0 0 36px 0;
      letter-spacing: -0.3px;
    }

    .faq .item {
      border-bottom: 1px solid var(--muted-bg);
      padding: 20px 0;
    }

    .faq .item:first-of-type {
      padding-top: 0;
    }

    .faq .item:last-of-type {
      border-bottom: none;
    }

    .faq .item h3 {
      font-size: 17px;
      font-weight: 500;
      margin: 0 0 8px 0;
      line-height: 1.4;
    }

    .faq .item p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }

    .faq .footnote {
      margin: 32px 0 12px 0;
      font-size: 15px;
      line-height: 1.5;
      color: var(--muted-fg);
    }

    .faq .link {
      display: inline-block;
      padding: 10px 24px;
      background: var(--primary-bg);
      color: var(--primary-fg);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      border-radius: 4px;
      transition: background 0.2s;
    }

    .faq .link:hover {
      background: var(--primary-hover);
    }

.mission {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1C1A18);
      padding: 4rem 1.5rem;
    }
    .mission .inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .mission__heading {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0 0 1.5rem 0;
      color: var(--page-fg, #1C1A18);
    }
    .mission__text {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.25rem 0;
      color: var(--page-fg, #1C1A18);
    }
    .mission__result {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      padding-left: 1.25rem;
      border-left: 3px solid var(--brand-primary-bg, #C06C4C);
      color: var(--muted-fg, #3D3835);
    }
    /* небольшой отступ для читаемости на мобильных */
    @media (max-width: 600px) {
      .mission {
        padding: 2.5rem 1rem;
      }
      .mission__heading {
        font-size: 1.5rem;
      }
      .mission__result {
        padding-left: 1rem;
      }
    }

.partners {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .partners .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .partners h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 1rem 0;
    }
    .partners .intro {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2rem 0;
      max-width: 640px;
    }
    .partners .logos {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      margin-bottom: 2rem;
    }
    .partners .item {
      flex: 1 1 200px;
      min-width: 160px;
    }
    .partners .name {
      display: block;
      font-size: 1rem;
      font-weight: 500;
      color: var(--page-fg);
      margin-bottom: 0.25rem;
    }
    .partners .note {
      display: block;
      font-size: 0.875rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }
    .partners .outro {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0;
      max-width: 600px;
    }
    .partners .outro a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .partners .outro a:hover {
      color: var(--primary-hover);
    }

.our-story {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .our-story .inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .our-story h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
    }
    .our-story .lead {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2.5rem 0;
      max-width: 600px;
    }
    .our-story .milestones {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .our-story .milestone {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .our-story .year {
      flex-shrink: 0;
      width: 4rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-primary-bg);
      line-height: 1.5;
      padding-top: 0.1rem;
    }
    .our-story .body {
      border-left: 1px solid var(--card-border);
      padding-left: 1.5rem;
    }
    .our-story .body h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
      line-height: 1.4;
    }
    .our-story .body p {
      font-size: 0.925rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0;
    }

    @media (max-width: 600px) {
      .our-story {
        padding: 2.5rem 1rem;
      }
      .our-story .milestone {
        flex-direction: column;
        gap: 0.25rem;
      }
      .our-story .year {
        width: auto;
      }
      .our-story .body {
        border-left: none;
        padding-left: 0;
      }
    }

.timeline {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 24px;
    }
    .timeline .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .timeline h2 {
      margin: 0 0 8px 0;
      font-size: 28px;
      font-weight: 600;
      letter-spacing: -0.3px;
    }
    .timeline .intro {
      margin: 0 0 40px 0;
      font-size: 16px;
      line-height: 1.5;
      color: var(--muted-fg);
    }
    .timeline .entry {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--muted-bg);
    }
    .timeline .entry:last-child {
      border-bottom: none;
    }
    .timeline .date {
      flex-shrink: 0;
      width: 80px;
      font-size: 15px;
      font-weight: 600;
      color: var(--brand-primary-bg);
      line-height: 1.4;
    }
    .timeline .body {
      flex: 1;
      min-width: 0;
    }
    .timeline .body h3 {
      margin: 0 0 6px 0;
      font-size: 18px;
      font-weight: 600;
    }
    .timeline .body p {
      margin: 0;
      font-size: 15px;
      line-height: 1.6;
      color: var(--muted-fg);
    }
    @media (max-width: 600px) {
      .timeline .entry {
        flex-direction: column;
        gap: 6px;
      }
      .timeline .date {
        width: auto;
      }
    }

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .contacts h2 {
      margin: 0 0 1rem;
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--page-fg);
    }
    .contacts > .inner > p {
      margin: 0 0 2rem;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      max-width: 640px;
    }
    .contacts .body {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .contacts .item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }
    .contacts .item:last-child {
      border-bottom: none;
    }
    .contacts .label {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--accent-bg);
    }
    .contacts .value {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--page-fg);
    }
    .contacts .link {
      color: var(--primary-bg);
      text-decoration: none;
      font-weight: 500;
    }
    .contacts .link:hover {
      text-decoration: underline;
      color: var(--primary-hover);
    }

.form {
      background: var(--inverse-bg, #1C1A18);
      color: var(--inverse-fg, #FFFFFF);
      padding: 2.5rem 1.25rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }
    .form p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.75rem 0;
      opacity: 0.85;
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .form .field label {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--accent-bg, #8B5E3C);
    }
    .form .field input {
      background: var(--card-bg, #FFFFFF);
      color: var(--card-fg, #1C1A18);
      border: 1px solid var(--card-border, #D1CCC7);
      border-radius: 4px;
      padding: 0.7rem 0.9rem;
      font-size: 0.95rem;
      
      outline: none;
      transition: border-color 0.15s;
    }
    .form .field input:focus {
      border-color: var(--primary-bg, #C06C4C);
    }
    .form .field input::placeholder {
      color: var(--muted-fg, #3D3835);
      opacity: 0.6;
    }
    .form button {
      background: var(--primary-bg, #C06C4C);
      color: var(--primary-fg, #FFFFFF);
      border: none;
      border-radius: 4px;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
      margin-top: 0.25rem;
    }
    .form button:hover {
      background: var(--primary-hover, #A85A3E);
    }
    .form .contact-note {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.4rem 0.6rem;
      font-size: 0.9rem;
    }
    .form .contact-note .label {
      font-weight: 500;
      opacity: 0.7;
      letter-spacing: 0.01em;
    }
    .form .contact-note .value {
      font-weight: 400;
    }
    .form .contact-note .sep {
      opacity: 0.35;
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form h2 {
        font-size: 1.4rem;
      }
      .form .contact-note {
        flex-direction: column;
        gap: 0.2rem;
      }
      .form .contact-note .sep {
        display: none;
      }
    }

.support {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3.5rem 1.5rem;
        }
        .support .inner {
            max-width: 680px;
            margin: 0 auto;
        }
        .support__title {
            font-size: 1.75rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin: 0 0 1.25rem 0;
            color: var(--page-fg);
        }
        .support__desc {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1.5rem 0;
            color: var(--page-fg);
            max-width: 580px;
        }
        .support__note {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 0 2rem 0;
            color: var(--muted-fg);
            background: var(--muted-bg);
            padding: 0.75rem 1rem;
            border-radius: 6px;
            display: inline-block;
        }
        .support__link {
            display: inline-block;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--primary-bg);
            text-decoration: none;
            border-bottom: 1px solid var(--primary-bg);
            padding-bottom: 2px;
            transition: color 0.2s, border-color 0.2s;
        }
        .support__link:hover {
            color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }
    .clarifications p:last-of-type {
      margin-bottom: 0;
    }

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 20px;
    }

    .policy-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .policy-items h2 {
      font-size: 28px;
      font-weight: 600;
      margin: 0 0 8px 0;
      letter-spacing: -0.3px;
    }

    .policy-items .subtitle {
      font-size: 16px;
      color: var(--muted-fg);
      margin: 0 0 36px 0;
      line-height: 1.5;
    }

    .policy-items .list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .policy-items .item h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 8px 0;
      color: var(--page-fg);
    }

    .policy-items .item p {
      font-size: 15px;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }

    .policy-items .closing {
      margin-top: 40px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--muted-fg);
      border-top: 1px solid var(--muted-bg);
      padding-top: 24px;
    }

.terms-items {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1C1A18);
      padding: 3rem 1.5rem;
      
      line-height: 1.6;
    }

    .terms-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
      color: var(--page-fg, #1C1A18);
    }

    .terms-items .subtitle {
      font-size: 1rem;
      color: var(--muted-fg, #3D3835);
      margin: 0 0 2rem 0;
      max-width: 640px;
    }

    .terms-items .item {
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--card-border, #D1CCC7);
      padding-bottom: 1.5rem;
    }

    .terms-items .item:last-of-type {
      border-bottom: none;
      margin-bottom: 1.5rem;
    }

    .terms-items .item h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.4rem 0;
      color: var(--brand-primary-bg, #C06C4C);
    }

    .terms-items .item p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--page-fg, #1C1A18);
    }

    .terms-items .closing {
      margin: 1.5rem 0 0 0;
      font-size: 0.9rem;
      color: var(--muted-fg, #3D3835);
      border-top: 1px solid var(--card-border, #D1CCC7);
      padding-top: 1.5rem;
    }

    @media (max-width: 600px) {
      .terms-items {
        padding: 2rem 1rem;
      }

      .terms-items h2 {
        font-size: 1.4rem;
      }

      .terms-items .item h3 {
        font-size: 1rem;
      }
    }

.thank {
            background: var(--inverse-bg, #1C1A18);
            color: var(--inverse-fg, #FFFFFF);
            padding: 4rem 1.5rem;
            box-sizing: border-box;
        }
        .thank .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .thank h2 {
            font-size: 1.75rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            margin: 0 0 0.75rem 0;
            line-height: 1.2;
        }
        .thank .intro {
            font-size: 1rem;
            line-height: 1.5;
            margin: 0 0 2rem 0;
            opacity: 0.85;
            max-width: 520px;
        }
        .thank .steps {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }
        .thank .step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .thank .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            flex-shrink: 0;
            background: var(--primary-bg, #C06C4C);
            color: var(--primary-fg, #FFFFFF);
            border-radius: 50%;
            font-size: 0.9rem;
            font-weight: 500;
            line-height: 1;
        }
        .thank .step-text {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
            padding-top: 0.2rem;
            opacity: 0.9;
        }
        .thank .contact-note {
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
            opacity: 0.8;
        }
        .thank .contact-note a {
            color: var(--accent-bg, #8B5E3C);
            text-decoration: none;
            border-bottom: 1px solid currentColor;
            transition: opacity 0.2s;
        }
        .thank .contact-note a:hover {
            opacity: 0.7;
        }
        @media (min-width: 640px) {
            .thank {
                padding: 5rem 2rem;
            }
            .thank h2 {
                font-size: 2rem;
            }
            .thank .steps {
                gap: 1.5rem;
            }
            .thank .step-text {
                font-size: 1rem;
            }
        }

.page-404 {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-404 .inner {
            max-width: 640px;
            width: 100%;
        }

        .page-404 h1 {
            font-size: 2.8rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin: 0 0 0.75rem 0;
        }

        .page-404 .note {
            font-size: 1.05rem;
            line-height: 1.55;
            color: var(--muted-fg);
            margin: 0 0 2rem 0;
        }

        .page-404 .action {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary-fg);
            padding: 0.7rem 1.8rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
            line-height: 1.4;
        }

        .page-404 .action:hover {
            background: var(--primary-hover);
        }

        /* разделительная линия для ритма */
        .page-404 .divider {
            width: 48px;
            height: 2px;
            background: var(--accent-bg);
            margin: 0 0 1.5rem 0;
            border: 0;
        }

        @media (max-width: 480px) {
            .page-404 h1 {
                font-size: 2rem;
            }

            .page-404 .note {
                font-size: 0.95rem;
            }

            .page-404 .action {
                padding: 0.65rem 1.5rem;
                font-size: 0.9rem;
            }
        }

.404 {
  background: var(--page-bg);
  color: var(--page-fg);
  padding: var(--space-section-y) var(--space-section-x);
}
.404 .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-card);
}
.404 h2,
.404 p {
  margin: 0;
}
.404 h2 {
  font-size: var(--font-size-h2);
  line-height: 1.08;
}
.404 p {
  max-width: 62ch;
  font-size: var(--font-size-lg);
}