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

  --max-w: 1300px;
  --space-x: 1.9rem;
  --space-y: 1.5rem;
  --gap: 2.42rem;
  --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: 1.17rem;
  --radius-lg: 1rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.11);
  --shadow-md: 0 10px 18px rgba(0,0,0,0.14);
  --shadow-lg: 0 18px 52px rgba(0,0,0,0.17);

  --overlay: rgba(0,0,0,0.45);
  --anim-duration: 320ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #2C3E50;
  --brand-contrast: #F5F0EB;
  --accent: #B87333;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F0EB;
  --neutral-300: #D4C9B8;
  --neutral-600: #7A6E5E;
  --neutral-800: #3D352C;
  --neutral-900: #1E1A16;

  --page-bg: #F5F0EB;
  --page-fg: #2C3E50;
  --muted-bg: #E8DFD3;
  --muted-fg: #2C3E50;
  --card-bg: #FFFFFF;
  --card-fg: #2C3E50;
  --card-border: #D4C9B8;
  --inverse-bg: #2C3E50;
  --inverse-fg: #F5F0EB;
  --primary-bg: #2C3E50;
  --primary-fg: #F5F0EB;
  --primary-hover: #1A252F;
  --accent-bg: #B87333;
  --accent-fg: #FFFFFF;
  --accent-hover: #9A5E2A;
  --gradient-hero-bg: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  --gradient-hero-fg: #F5F0EB;
  --gradient-accent-bg: linear-gradient(135deg, #B87333 0%, #9A5E2A 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #B87333;

  --link: #2C3E50;
  --link-hover: #B87333;

  --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;}

header {
    background: var(--page-bg);
    border-bottom: 1px solid var(--muted-bg);
    width: 100%;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--page-fg);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
  }

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

  .nav-list {
    display: flex;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-list a {
    color: var(--page-fg);
    text-decoration: none;
    font-size: var(--font-size-md);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-bg);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .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);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }

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

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: var(--space-y);
    }

    .nav-list a {
      font-size: var(--font-size-h3);
      padding: 0.5rem 0;
    }

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

footer {
  font-family: var(--font-family, 'Georgia', serif);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.6);
  background: var(--page-bg, #ffffff);
  color: var(--page-fg, #1a1a1a);
  padding: var(--space-section-y, 3rem) var(--space-section-x, 2rem);
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 1.5rem);
}
.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-y, 0.75rem);
}
.contact-item {
  display: block;
}
.contact-item a {
  color: var(--link, #0056b3);
  text-decoration: none;
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.contact-item a:hover {
  color: var(--link-hover, #003d80);
}
.footer-brand .logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary-fg, #1a1a1a);
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 1.5rem);
}
.footer-nav a {
  color: var(--link, #0056b3);
  text-decoration: none;
  font-size: var(--font-size-md, 1rem);
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.footer-nav a:hover {
  color: var(--link-hover, #003d80);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 1.5rem);
}
.footer-legal a {
  color: var(--muted-fg, #666);
  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, #003d80);
}
.footer-disclaimer p {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #666);
  line-height: var(--line-height-base, 1.6);
  margin: 0;
  padding: 0;
}
.footer-copy p {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #666);
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  footer {
    padding: var(--space-section-y, 2rem) var(--space-section-x, 1rem);
  }
  .footer-nav ul {
    flex-direction: column;
    gap: var(--space-y, 0.75rem);
  }
  .footer-legal {
    flex-direction: column;
    gap: var(--space-y, 0.75rem);
  }
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-top: 1px solid var(--card-border, #e0e0e0);
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
  box-shadow: var(--shadow-md, 0 -2px 8px rgba(0,0,0,0.08));
}

.cookie-notice__inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

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

.cookie-notice__text {
  margin: 0;
  color: inherit;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-notice__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-sm, 4px);
  font-size: var(--font-size-sm, 0.875rem);
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  text-decoration: none;
}

.cookie-notice__btn--primary {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}

.cookie-notice__btn--primary:hover {
  background: var(--primary-hover, #0040cc);
}

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

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

.cookie-notice__btn--link {
  background: transparent;
  color: var(--link, #0055ff);
  padding: 0.5rem 0.75rem;
  border: none;
}

.cookie-notice__btn--link:hover {
  color: var(--link-hover, #003399);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-notice {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .cookie-notice__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-width: 0;
  }

  .cookie-notice__title {
    white-space: normal;
  }

  .cookie-notice__actions {
    justify-content: flex-start;
  }
}

.intro-focus {
  background: var(--page-bg);
  color: var(--page-fg);
  padding: 5rem 1.5rem;
}

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

.intro-focus .label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin: 0 0 1.5rem;
}

.intro-focus h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 2rem;
  max-width: 720px;
}

.intro-focus .note {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 0 2.5rem;
}

.intro-focus .actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.intro-focus .primary,
.intro-focus .secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.intro-focus .primary {
  background: var(--primary-bg);
  color: var(--primary-fg);
}

.intro-focus .primary:hover {
  background: var(--primary-hover);
}

.intro-focus .secondary {
  background: transparent;
  color: var(--page-fg);
  border: 1px solid var(--page-fg);
}

.intro-focus .secondary:hover {
  background: var(--page-fg);
  color: var(--page-bg);
}

@media (max-width: 600px) {
  .intro-focus h1 {
    font-size: 2rem;
  }

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

  .intro-focus .actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.identity {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 5rem 1.5rem;
    }
    .identity .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    .identity .lead {
      max-width: 640px;
    }
    .identity h2 {
      font-size: 2.2rem;
      font-weight: 400;
      line-height: 1.25;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .identity .subtitle {
      font-size: 1.1rem;
      line-height: 1.6;
      opacity: 0.85;
      margin: 0;
    }
    .identity .note {
      max-width: 540px;
      align-self: flex-end;
      border-left: 2px solid var(--accent-bg);
      padding-left: 1.5rem;
    }
    .identity .note p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 0.75rem;
      opacity: 0.8;
    }
    .identity .tagline {
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      opacity: 0.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .identity {
        padding: 7rem 2rem;
      }
      .identity .inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
      }
      .identity .lead {
        flex: 1 1 55%;
      }
      .identity .note {
        flex: 0 1 38%;
        align-self: flex-end;
        padding-left: 2rem;
      }
      .identity h2 {
        font-size: 2.6rem;
      }
    }

.people-behind {
      background: var(--page-bg, #F5F0EB);
      color: var(--page-fg, #2C3E50);
      padding: 3rem 1.5rem 4rem;
    }
    .people-behind .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .people-behind h2 {
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 1rem;
    }
    .people-behind .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 680px;
    }
    .people-behind .members {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem 3rem;
    }
    .people-behind .member {
      flex: 1 1 240px;
    }
    .people-behind .member-name {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 0.15rem;
    }
    .people-behind .member-role {
      font-size: 0.85rem;
      color: var(--accent-bg, #B87333);
      margin: 0 0 0.75rem;
      letter-spacing: 0.03em;
    }
    .people-behind .member-text {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
    }
    .people-behind .outro {
      margin: 2.5rem 0 0;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 600px;
    }
    .people-behind .outro a {
      color: var(--accent-bg, #B87333);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .people-behind .outro a:hover {
      color: var(--accent-hover, #9A5E2A);
    }

.why-choose {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .why-choose .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .why-choose .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem 0;
      color: var(--page-fg);
      max-width: 640px;
    }
    .why-choose .arguments {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .why-choose .argument {
      flex: 1 1 260px;
    }
    .why-choose .argument h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.4rem 0;
      line-height: 1.4;
    }
    .why-choose .argument p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--page-fg);
    }
    @media (max-width: 600px) {
      .why-choose .arguments {
        flex-direction: column;
        gap: 1.5rem;
      }
    }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .faq .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 2.5rem 0;
      line-height: 1.2;
    }
    .faq .entry {
      margin-bottom: 2rem;
    }
    .faq .entry:last-child {
      margin-bottom: 0;
    }
    .faq h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 0.4rem 0;
      line-height: 1.4;
    }
    .faq p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }

.mission {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem;
    }
    .mission .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .mission h2 {
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 1.5rem;
      color: var(--page-fg);
      line-height: 1.2;
    }
    .mission p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.25rem;
      color: var(--page-fg);
    }
    .mission .closing {
      font-size: 0.95rem;
      color: var(--page-fg);
      opacity: 0.75;
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.25rem;
      margin-top: 1.5rem;
    }

.partners {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 5rem 1.5rem;
    }
    .partners .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .partners h2 {
      font-size: 2.2rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 1.5rem;
    }
    .partners .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0 0 3rem;
      max-width: 640px;
      opacity: 0.85;
    }
    .partners .logos {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem 3rem;
    }
    .partners .item {
      flex: 1 1 200px;
      min-width: 180px;
    }
    .partners .name {
      display: block;
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
    }
    .partners .note {
      display: block;
      font-size: 0.9rem;
      opacity: 0.7;
      line-height: 1.4;
    }

.our-story {
            background: #F5F0EB;
            color: #2C3E50;
            padding: 3rem 1.5rem;
            
        }
        .our-story .inner {
            max-width: 820px;
            margin: 0 auto;
        }
        .our-story .heading {
            font-size: 1.6rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            margin: 0 0 0.75rem 0;
            line-height: 1.2;
            color: #2C3E50;
        }
        .our-story .intro {
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0 0 2.2rem 0;
            color: #2C3E50;
            max-width: 640px;
        }
        .our-story .entry {
            display: flex;
            gap: 1.2rem;
            padding: 1.2rem 0;
            border-top: 1px solid #D4C9B8;
        }
        .our-story .entry:first-of-type {
            border-top: none;
            padding-top: 0;
        }
        .our-story .year {
            flex: 0 0 4.2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #B87333;
            margin: 0;
            line-height: 1.5;
            letter-spacing: 0.03em;
        }
        .our-story .body {
            flex: 1;
            min-width: 0;
        }
        .our-story .title {
            font-size: 1.05rem;
            font-weight: 500;
            margin: 0 0 0.3rem 0;
            line-height: 1.35;
            color: #2C3E50;
        }
        .our-story .text {
            font-size: 0.9rem;
            line-height: 1.55;
            margin: 0;
            color: #2C3E50;
        }
        @media (max-width: 540px) {
            .our-story .entry {
                flex-direction: column;
                gap: 0.3rem;
            }
            .our-story .year {
                flex: none;
            }
            .our-story .heading {
                font-size: 1.4rem;
            }
        }

.contacts {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 1.25rem;
      line-height: 1.2;
    }
    .contacts .note {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.85;
    }
    .contacts .details {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      border-top: 1px solid rgba(245, 240, 235, 0.2);
      padding-top: 2rem;
    }
    .contacts .entry {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .contacts .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.6;
    }
    .contacts .value {
      font-size: 1.05rem;
      line-height: 1.5;
    }
    .contacts a.value {
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .contacts a.value:hover {
      border-color: var(--accent-bg);
    }
    .contacts .footnote {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 2.5rem 0 0;
      opacity: 0.7;
      border-top: 1px solid rgba(245, 240, 235, 0.15);
      padding-top: 1.5rem;
    }
    @media (min-width: 600px) {
      .contacts {
        padding: 5rem 2rem;
      }
      .contacts h2 {
        font-size: 2rem;
      }
      .contacts .details {
        gap: 1.5rem;
      }
    }

.clarifications {
      background: var(--page-bg, #F5F0EB);
      color: var(--page-fg, #2C3E50);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 1.25rem 0;
      letter-spacing: 0.02em;
      line-height: 1.3;
    }
    .clarifications p {
      margin: 0 0 1rem 0;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    .clarifications p:last-of-type {
      margin-bottom: 0;
    }
    /* divider rhythm — простая линия после заголовка */
    .clarifications h2::after {
      content: '';
      display: block;
      width: 48px;
      height: 2px;
      background: var(--accent-bg, #B87333);
      margin-top: 0.75rem;
    }

.form {
      background: var(--inverse-bg, #2C3E50);
      color: var(--inverse-fg, #F5F0EB);
      padding: 4rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.75rem;
      font-weight: 400;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: 0.02em;
    }
    .form p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 0.75rem 0;
      opacity: 0.85;
    }
    .form p:last-of-type {
      margin-bottom: 2rem;
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form label {
      font-size: 0.85rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .form input {
      background: var(--card-bg, #FFFFFF);
      color: var(--card-fg, #2C3E50);
      border: 1px solid var(--card-border, #D4C9B8);
      border-radius: 4px;
      padding: 0.7rem 0.9rem;
      font-size: 0.95rem;
      
      outline: none;
      transition: border-color 0.15s;
    }
    .form input:focus {
      border-color: var(--accent-bg, #B87333);
    }
    .form button {
      background: var(--accent-bg, #B87333);
      color: var(--accent-fg, #FFFFFF);
      border: none;
      border-radius: 4px;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--accent-hover, #9A5E2A);
    }
    @media (max-width: 480px) {
      .form {
        padding: 2.5rem 1rem;
      }
      .form h2 {
        font-size: 1.4rem;
      }
      .form button {
        width: 100%;
        text-align: center;
      }
    }

.policy-items {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 60px 20px;
        }
        .policy-items .inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .policy-items h2 {
            font-size: 1.8rem;
            margin: 0 0 8px 0;
            font-weight: 400;
            letter-spacing: 0.02em;
        }
        .policy-items .update-date {
            font-size: 0.85rem;
            opacity: 0.7;
            margin: 0 0 32px 0;
            border-bottom: 1px solid rgba(245, 240, 235, 0.2);
            padding-bottom: 12px;
        }
        .policy-items .entry {
            margin-bottom: 28px;
        }
        .policy-items .entry h3 {
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0 0 8px 0;
            color: var(--accent-bg);
        }
        .policy-items .entry p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            opacity: 0.9;
        }
        .policy-items .note {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 36px;
            border-top: 1px solid rgba(245, 240, 235, 0.15);
            padding-top: 18px;
        }
        @media (max-width: 600px) {
            .policy-items {
                padding: 40px 16px;
            }
            .policy-items h2 {
                font-size: 1.4rem;
            }
            .policy-items .entry h3 {
                font-size: 1rem;
            }
        }

.terms-items {
      background: var(--inverse-bg, #2C3E50);
      color: var(--inverse-fg, #F5F0EB);
      padding: 4rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 2rem 0;
      line-height: 1.3;
      color: var(--inverse-fg, #F5F0EB);
    }
    .terms-items .body {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .terms-items .item {
      border-bottom: 1px solid rgba(245, 240, 235, 0.15);
      padding-bottom: 1.5rem;
    }
    .terms-items .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .terms-items .item-title {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.4rem 0;
      line-height: 1.4;
      color: var(--inverse-fg, #F5F0EB);
    }
    .terms-items .item-text {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: rgba(245, 240, 235, 0.85);
    }
    .terms-items .item-text a {
      color: var(--accent-bg, #B87333);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .terms-items .item-text a:hover {
      color: var(--accent-hover, #9A5E2A);
    }
    @media (max-width: 600px) {
      .terms-items {
        padding: 2.5rem 1.2rem;
      }
      .terms-items h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
      }
      .terms-items .item-title {
        font-size: 1rem;
      }
      .terms-items .item-text {
        font-size: 0.9rem;
      }
    }

.thank {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 2rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 1.5rem;
      color: var(--page-fg);
    }
    .thank p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 1.2rem;
    }
    .thank a {
      color: var(--brand-primary-bg, #2C3E50);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .thank a:hover {
      color: var(--accent-bg, #B87333);
    }

.not-found {
            background: var(--page-bg, #F5F0EB);
            color: var(--page-fg, #2C3E50);
            padding: 5rem 1.5rem;
            display: flex;
            justify-content: center;
        }
        .not-found .inner {
            max-width: 720px;
            width: 100%;
        }
        .not-found h1 {
            font-size: 2.8rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin: 0 0 1.25rem 0;
            color: var(--page-fg, #2C3E50);
        }
        .not-found p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0 0 1.5rem 0;
            color: var(--page-fg, #2C3E50);
            max-width: 580px;
        }
        .not-found .note {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 0 2.5rem 0;
            color: var(--muted-fg, #2C3E50);
            background: var(--muted-bg, #E8DFD3);
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            display: inline-block;
        }
        .not-found .links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem 2rem;
            border-top: 1px solid var(--muted-bg, #E8DFD3);
            padding-top: 2rem;
        }
        .not-found .links li {
            margin: 0;
            padding: 0;
        }
        .not-found .links a {
            display: inline-block;
            font-size: 1.1rem;
            font-weight: 450;
            color: var(--accent-bg, #B87333);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.15s ease;
            padding-bottom: 2px;
        }
        .not-found .links a:hover {
            border-bottom-color: var(--accent-bg, #B87333);
        }
        .not-found .links a span {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-left: 0.4rem;
            font-weight: 350;
        }
        @media (max-width: 540px) {
            .not-found h1 {
                font-size: 2.2rem;
            }
            .not-found p {
                font-size: 1rem;
            }
            .not-found .links {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

.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);
}