:root {
  --font-family: "Exo 2", sans-serif;
  --font-size-base: 18.7px;
  --line-height-base: 1.77;

  --max-w: 1620px;
  --space-x: 2.61rem;
  --space-y: 1.5rem;
  --gap: 1.67rem;
  --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.3rem;
  --radius-lg: 0.91rem;
  --radius-md: 0.47rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.11);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.14);
  --shadow-lg: 0 22px 48px rgba(0,0,0,0.17);

  --overlay: rgba(30,25,20,0.65);
  --anim-duration: 480ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #B8860B;
  --brand-contrast: #FEFCF5;
  --accent: #D4A017;
  --accent-contrast: #1E1914;

  --neutral-0: #FEFCF5;
  --neutral-100: #F5F0E8;
  --neutral-300: #C8BCA8;
  --neutral-600: #6B5E4E;
  --neutral-800: #3A322A;
  --neutral-900: #1E1914;

  --page-bg: #FEFCF5;
  --page-fg: #1E1914;
  --muted-bg: #F5F0E8;
  --muted-fg: #3A322A;
  --card-bg: #FFFDF9;
  --card-fg: #1E1914;
  --card-border: #D6CBB8;
  --inverse-bg: #2A241E;
  --inverse-fg: #FEFCF5;
  --primary-bg: #B8860B;
  --primary-fg: #FEFCF5;
  --primary-hover: #A07509;
  --accent-bg: #D4A017;
  --accent-fg: #1E1914;
  --accent-hover: #C4910F;
  --gradient-hero-bg: linear-gradient(135deg, #2A241E 0%, #4A3F32 40%, #6B5E4E 100%);
  --gradient-hero-fg: #FEFCF5;
  --gradient-accent-bg: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
  --gradient-accent-fg: #1E1914;

  --ring: #B8860B;

  --link: #B8860B;
  --link-hover: #D4A017;

  --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);
  border-bottom: 1px solid var(--muted-bg);
  width: 100%;
}

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

.logo {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

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

.cta-area {
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary-fg);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-md);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
  background: var(--primary-hover);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
}

.burger span {
  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 span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--page-bg);
    z-index: 100;
    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);
  }

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

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

  .main-nav a {
    font-size: var(--font-size-h3);
  }

  .cta-area {
    display: none;
  }
}

.site-footer {
    background-color: var(--page-bg, #f5f0eb);
    color: var(--page-fg, #2c2c2c);
    font-family: var(--font-family, 'Georgia', 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, 2rem);
    border-top: 1px solid var(--muted-bg, #e0d8d0);
  }

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

  .footer-contact {
    order: 1;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.75rem);
    font-style: normal;
    color: var(--muted-fg, #5a5a5a);
    font-size: var(--font-size-sm, 0.9rem);
  }

  .contact-address,
  .contact-phone,
  .contact-email {
    display: inline-block;
  }

  .contact-phone,
  .contact-email {
    color: var(--link, #8b6f4e);
    text-decoration: none;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .contact-phone:hover,
  .contact-email:hover {
    color: var(--link-hover, #6b4f2e);
  }

  .footer-brand {
    order: 2;
  }

  .footer-logo {
    font-size: var(--font-size-h2, 1.8rem);
    font-weight: 700;
    color: var(--primary-fg, #3d2b1f);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .footer-nav {
    order: 3;
  }

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

  .nav-link {
    color: var(--link, #8b6f4e);
    text-decoration: none;
    font-size: var(--font-size-md, 1rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--link-hover, #6b4f2e);
  }

  .footer-legal {
    order: 4;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1.5rem);
  }

  .legal-link {
    color: var(--muted-fg, #5a5a5a);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.9rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .legal-link:hover {
    color: var(--link-hover, #6b4f2e);
  }

  .footer-disclaimer {
    order: 5;
    padding-top: var(--space-block, 1.5rem);
    border-top: 1px solid var(--muted-bg, #e0d8d0);
  }

  .disclaimer-text {
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--muted-fg, #7a7a7a);
    line-height: 1.5;
    margin: 0;
  }

  .footer-copyright {
    order: 6;
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--muted-fg, #7a7a7a);
    text-align: center;
  }

  .footer-copyright p {
    margin: 0;
  }

  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap, 2rem) var(--space-x, 3rem);
    }

    .footer-contact {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
    }

    .footer-brand {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
      text-align: right;
    }

    .footer-nav {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
    }

    .footer-legal {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
      justify-content: flex-end;
    }

    .footer-disclaimer {
      grid-column: 1 / -1;
      grid-row: 3 / 4;
    }

    .footer-copyright {
      grid-column: 1 / -1;
      grid-row: 4 / 5;
    }
  }

  @media (min-width: 1024px) {
    .footer-container {
      grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-contact {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
    }

    .footer-brand {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
      text-align: center;
    }

    .footer-nav {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
      justify-content: flex-end;
    }

    .footer-legal {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      justify-content: flex-start;
    }

    .footer-disclaimer {
      grid-column: 1 / -1;
      grid-row: 3 / 4;
    }

    .footer-copyright {
      grid-column: 1 / -1;
      grid-row: 4 / 5;
    }
  }

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  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, 16px) var(--space-x, 24px);
  box-shadow: var(--shadow-md, 0 -4px 12px rgba(0,0,0,0.08));
  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-sizing: border-box;
}

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

.cookie-notice__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--gap, 12px);
  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: var(--gap, 12px);
  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, 6px);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.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: var(--btn-ghost-bg, transparent);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #d0d0d0);
}

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

.cookie-notice__btn--link {
  background: transparent;
  color: var(--link, #0055ff);
  padding: 0.5rem 0.25rem;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

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

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

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

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

  .cookie-notice__btn {
    white-space: normal;
    text-align: center;
  }
}

.intro-focus {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 48rem;
      margin: 0 auto;
      text-align: center;
    }
    .intro-focus .title {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.15;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .intro-focus .lead {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: rgba(254, 252, 245, 0.85);
    }
    .intro-focus .cta {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.75rem 2rem;
      border-radius: 0.25rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .intro-focus .cta:hover {
      background: var(--brand-primary-hover);
      color: var(--brand-primary-fg);
    }

.identity {
      display: block;
      background: #FEFCF5;
      color: #1E1914;
      padding: 3rem 1.5rem;
      box-sizing: border-box;
    }
    .identity .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .identity .title {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.25rem 0;
      letter-spacing: -0.01em;
    }
    .identity .lead {
      font-size: 1.0625rem;
      line-height: 1.55;
      margin: 0 0 1rem 0;
      color: #1E1914;
    }
    .identity .detail {
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: #3A322A;
    }
    .identity .items {
      list-style: none;
      margin: 0;
      padding: 0;
      border-top: 1px solid #D6CBB8;
      padding-top: 1.25rem;
    }
    .identity .item {
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #1E1914;
      padding: 0 0 0 1.25rem;
      position: relative;
    }
    .identity .item::before {
      content: "—";
      position: absolute;
      left: 0;
      top: 0;
      color: #B8860B;
    }
    @media (min-width: 640px) {
      .identity {
        padding: 4rem 2rem;
      }
      .identity .title {
        font-size: 2.125rem;
      }
      .identity .lead {
        font-size: 1.125rem;
      }
    }

.people-behind {
      background: var(--inverse-bg, #2A241E);
      color: var(--inverse-fg, #FEFCF5);
      padding: 3rem 1.5rem;
    }

    .people-behind .body {
      max-width: 900px;
      margin: 0 auto;
    }

    .people-behind .section-title {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
    }

    .people-behind .section-subtitle {
      font-size: 1rem;
      line-height: 1.55;
      margin: 0 0 2.5rem 0;
      color: var(--inverse-fg, #FEFCF5);
      opacity: 0.85;
      max-width: 680px;
    }

    .people-behind .team-members {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .people-behind .member {
      border-left: 3px solid var(--accent-bg, #D4A017);
      padding-left: 1.25rem;
    }

    .people-behind .member-role {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--accent-bg, #D4A017);
      margin-bottom: 0.2rem;
      font-weight: 500;
    }

    .people-behind .member-name {
      display: block;
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 0.35rem;
    }

    .people-behind .member-text {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.9;
    }

    .people-behind .team-link {
      display: inline-block;
      background: var(--accent-bg, #D4A017);
      color: var(--accent-fg, #1E1914);
      padding: 0.6rem 1.6rem;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s ease;
      margin-top: 0.5rem;
    }

    .people-behind .team-link:hover {
      background: var(--accent-hover, #C4910F);
    }

    /* асимметрия: левая граница у member, разная длина текста */
    @media (min-width: 640px) {
      .people-behind .team-members {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
      }

      .people-behind .member:last-child {
        grid-column: 1 / 3;
        max-width: 70%;
      }

      .people-behind .section-title {
        font-size: 2rem;
      }
    }

    @media (min-width: 900px) {
      .people-behind {
        padding: 4.5rem 2rem;
      }

      .people-behind .team-members {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .people-behind .member:last-child {
        grid-column: auto;
        max-width: 100%;
      }

      .people-behind .member-text {
        font-size: 0.9rem;
      }
    }

.why-choose {
      background: var(--page-bg, #FEFCF5);
      color: var(--page-fg, #1E1914);
      padding: 3.5rem 1.5rem;
      
    }
    .why-choose .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.25;
      margin: 0 0 1.25rem;
      color: var(--page-fg, #1E1914);
    }
    .why-choose p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.25rem;
      color: var(--page-fg, #1E1914);
    }
    .why-choose p:last-of-type {
      margin-bottom: 0;
    }
    .why-choose a {
      display: inline-block;
      margin-top: 1.5rem;
      background: var(--primary-bg, #B8860B);
      color: var(--primary-fg, #FEFCF5);
      padding: 0.6rem 1.4rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background 0.2s;
    }
    .why-choose a:hover {
      background: var(--primary-hover, #A07509);
    }
    /* small screens */
    @media (max-width: 600px) {
      .why-choose {
        padding: 2.5rem 1.25rem;
      }
      .why-choose h2 {
        font-size: 1.5rem;
      }
    }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }

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

    .faq h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 2rem;
      line-height: 1.2;
    }

    .faq .q {
      margin-bottom: 1.75rem;
    }

    .faq .q h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.35rem;
      line-height: 1.3;
    }

    .faq .q p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
    }

    .faq .more {
      margin: 2rem 0 0;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .faq .more a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .faq .more a:hover {
      color: var(--primary-hover);
    }

.mission {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .mission .inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .mission h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem;
      line-height: 1.2;
    }

    .mission p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1.25rem;
    }

    .mission p:last-child {
      margin-bottom: 0;
    }

    @media (min-width: 640px) {
      .mission {
        padding: 5rem 2rem;
      }

      .mission h2 {
        font-size: 2rem;
      }

      .mission p {
        font-size: 1.0625rem;
      }
    }

.timeline {
      background: var(--inverse-bg, #2A241E);
      color: var(--inverse-fg, #FEFCF5);
      padding: 3rem 1.5rem;
    }
    .timeline .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .timeline .section-title {
      font-size: 1.8rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
    }
    .timeline .section-subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2.5rem 0;
      opacity: 0.85;
      max-width: 600px;
    }
    .timeline .entry-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-left: 2px solid var(--brand-primary-bg, #B8860B);
      padding-left: 1.2rem;
      margin: 0;
    }
    .timeline .entry {
      padding: 1.2rem 0 1.2rem 0.8rem;
      position: relative;
    }
    .timeline .entry::before {
      content: '';
      position: absolute;
      left: -1.45rem;
      top: 1.5rem;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--brand-primary-bg, #B8860B);
      border: 2px solid var(--inverse-bg, #2A241E);
    }
    .timeline .entry + .entry {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .timeline .entry-date {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--brand-accent-bg, #D4A017);
      margin-bottom: 0.3rem;
    }
    .timeline .entry-text {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.9;
    }
    /* plain dividers, no decorative containers */
    @media (min-width: 640px) {
      .timeline {
        padding: 4rem 2rem;
      }
      .timeline .section-title {
        font-size: 2.2rem;
      }
      .timeline .section-subtitle {
        font-size: 1.05rem;
      }
      .timeline .entry-list {
        padding-left: 1.5rem;
      }
      .timeline .entry {
        padding: 1.5rem 0 1.5rem 1rem;
      }
      .timeline .entry::before {
        left: -1.7rem;
        top: 1.8rem;
        width: 12px;
        height: 12px;
      }
      .timeline .entry-date {
        font-size: 0.9rem;
      }
      .timeline .entry-text {
        font-size: 1rem;
      }
    }

.partners {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .partners .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .partners h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 1.25rem;
      line-height: 1.2;
    }
    .partners .intro {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      max-width: 640px;
      margin: 0 0 2.5rem;
    }
    .partners .list {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .partners .item {
      flex: 1 1 240px;
      min-width: 200px;
    }
    .partners .meta {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted-fg);
      margin-bottom: 0.25rem;
    }
    .partners .title {
      display: block;
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 0.4rem;
    }
    .partners .text {
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }
    .partners .link {
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--brand-primary-bg);
      text-decoration: none;
      border-bottom: 1px solid var(--brand-primary-bg);
      padding-bottom: 0.15rem;
      transition: opacity 0.2s;
    }
    .partners .link:hover {
      opacity: 0.7;
    }

.our-story {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .our-story .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .our-story h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 0 0 1rem;
      line-height: 1.2;
    }
    .our-story > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.85;
      max-width: 640px;
    }
    .our-story .steps {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .our-story .step {
      border-left: 2px solid var(--accent-bg);
      padding-left: 1.25rem;
    }
    .our-story .year {
      display: block;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--accent-bg);
      margin-bottom: 0.25rem;
    }
    .our-story .desc {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.8;
    }
    @media (min-width: 640px) {
      .our-story {
        padding: 5rem 2rem;
      }
      .our-story h2 {
        font-size: 2rem;
      }
      .our-story .steps {
        gap: 2rem;
      }
    }

.contacts {
      background: #FEFCF5;
      color: #1E1914;
      padding: 3rem 1.5rem;
      
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts .section-title {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 0 0 1rem 0;
      line-height: 1.2;
      color: #1E1914;
    }
    .contacts .context-note {
      font-size: 0.95rem;
      line-height: 1.55;
      color: #3A322A;
      margin: 0 0 1.5rem 0;
      max-width: 640px;
    }
    .contacts .context-note.secondary {
      margin-top: 1.5rem;
      margin-bottom: 0;
      font-size: 0.9rem;
      color: #5A4F42;
    }
    .contacts .info-block {
      border-top: 1px solid #D6CBB8;
      padding-top: 1.25rem;
    }
    .contacts .info-row {
      display: flex;
      flex-direction: column;
      padding: 0.7rem 0;
      border-bottom: 1px solid #E8E0D0;
    }
    .contacts .info-row:last-child {
      border-bottom: none;
    }
    .contacts .label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #7A6E5C;
      margin-bottom: 0.15rem;
    }
    .contacts .value {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #1E1914;
    }
    .contacts .value.link {
      color: #B8860B;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
    }
    .contacts .value.link:hover {
      border-bottom-color: #B8860B;
    }
    /* compact vertical rhythm */
    @media (min-width: 540px) {
      .contacts {
        padding: 4rem 2rem;
      }
      .contacts .section-title {
        font-size: 2rem;
      }
      .contacts .info-row {
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
      }
      .contacts .label {
        min-width: 130px;
        margin-bottom: 0;
      }
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem;
    }
    .clarifications p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .clarifications .notes {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
    }
    .clarifications .note {
      margin-bottom: 1.25rem;
      padding-left: 1.25rem;
      border-left: 2px solid var(--brand-primary-bg);
    }
    .clarifications .note strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }
    .clarifications .note {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
    }
    .clarifications .footnote {
      font-size: 0.95rem;
      margin: 0;
    }
    .clarifications a {
      color: var(--brand-primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .clarifications a:hover {
      color: var(--brand-primary-hover);
    }

.form {
      background: var(--page-bg, #FEFCF5);
      color: var(--page-fg, #1E1914);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form__title {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }
    .form__note {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 0.75rem 0;
      color: var(--muted-fg, #3A322A);
    }
    .form__note:last-of-type {
      margin-bottom: 1.75rem;
    }
    .form__body {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form__field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form__label {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--page-fg, #1E1914);
    }
    .form__input {
      font: inherit;
      font-size: 0.95rem;
      padding: 0.65rem 0.8rem;
      border: 1px solid var(--muted-bg, #D6CBB8);
      border-radius: 6px;
      background: var(--card-bg, #FFFDF9);
      color: var(--card-fg, #1E1914);
      transition: border-color 0.15s;
    }
    .form__input:focus {
      outline: none;
      border-color: var(--primary-bg, #B8860B);
      box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
    }
    .form__input::placeholder {
      color: var(--muted-fg, #8A7F6E);
      opacity: 0.8;
    }
    .form__submit {
      font: inherit;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.7rem 1.4rem;
      border: none;
      border-radius: 6px;
      background: var(--primary-bg, #B8860B);
      color: var(--primary-fg, #FEFCF5);
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
      margin-top: 0.25rem;
    }
    .form__submit:hover {
      background: var(--primary-hover, #A07509);
    }
    .form__submit:active {
      background: var(--primary-bg, #8B6508);
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form__title {
        font-size: 1.5rem;
      }
      .form__submit {
        width: 100%;
        text-align: center;
      }
    }

.policy-items {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3rem 1.5rem 4rem;
        }
        .policy-items .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .policy-items h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0 0 0.25rem;
            line-height: 1.2;
        }
        .policy-items .update-date {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin: 0 0 2rem;
        }
        .policy-items h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.8rem 0 0.6rem;
            line-height: 1.3;
        }
        .policy-items p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 1rem;
        }
        .policy-items a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .policy-items a:hover {
            color: var(--primary-hover);
        }
        .policy-items .note {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--card-border);
        }
        @media (min-width: 640px) {
            .policy-items {
                padding: 4rem 2rem 5rem;
            }
            .policy-items h2 {
                font-size: 2rem;
            }
            .policy-items h3 {
                font-size: 1.25rem;
            }
            .policy-items p {
                font-size: 1rem;
            }
        }

.terms-items {
            background: var(--inverse-bg, #2A241E);
            color: var(--inverse-fg, #FEFCF5);
            padding: 3rem 1.5rem;
            
        }

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

        .terms-items .section-title {
            font-size: 1.75rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            color: inherit;
        }

        .terms-items .section-subtitle {
            font-size: 1rem;
            line-height: 1.5;
            margin: 0 0 2rem 0;
            opacity: 0.85;
            max-width: 720px;
            color: inherit;
        }

        .terms-items .terms-body {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 640px) {
            .terms-items .terms-body {
                flex-direction: row;
                gap: 2.5rem;
            }
            .terms-items .terms-column {
                flex: 1;
            }
        }

        .terms-items .terms-heading {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            line-height: 1.3;
            color: var(--accent-bg, #D4A017);
        }

        .terms-items .terms-text {
            font-size: 0.9375rem;
            line-height: 1.6;
            margin: 0;
            color: inherit;
            opacity: 0.9;
        }

        .terms-items .terms-footer {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .terms-items .terms-note {
            font-size: 0.875rem;
            line-height: 1.5;
            margin: 0;
            opacity: 0.75;
            color: inherit;
        }

        .terms-items .terms-contact {
            color: var(--accent-bg, #D4A017);
            font-weight: 500;
        }

        /* light-on-dark overrides for readability */
        .terms-items .section-title,
        .terms-items .section-subtitle,
        .terms-items .terms-text,
        .terms-items .terms-note {
            color: inherit;
        }

.thank {
      background: var(--inverse-bg, #2A241E);
      color: var(--inverse-fg, #FEFCF5);
      padding: 3rem 1.5rem;
      box-sizing: border-box;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank__title {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .thank__text {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem;
      color: inherit;
      opacity: 0.9;
    }
    .thank__text:last-of-type {
      margin-bottom: 2rem;
    }
    .thank__contact {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.5rem 0.75rem;
      font-size: 1rem;
      line-height: 1.5;
      border-top: 1px solid rgba(254, 252, 245, 0.2);
      padding-top: 1.5rem;
    }
    .thank__contact-label {
      font-weight: 500;
      opacity: 0.8;
      margin-right: 0.25rem;
    }
    .thank__contact-sep {
      opacity: 0.5;
      font-size: 0.9rem;
    }
    .thank__link {
      color: var(--accent-bg, #D4A017);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }
    .thank__link:hover {
      color: var(--accent-hover, #C4910F);
      text-decoration: underline;
    }
    @media (max-width: 480px) {
      .thank {
        padding: 2rem 1rem;
      }
      .thank__title {
        font-size: 1.5rem;
      }
      .thank__contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
      }
      .thank__contact-sep {
        display: none;
      }
    }

.page-404 {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 5rem 1.5rem;
}
.page-404 .inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}
.page-404 h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}
.page-404 p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    color: var(--muted-fg);
}
.page-404 .note {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    color: var(--muted-fg);
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.5rem;
}
.page-404 .actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.page-404 .actions a {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: var(--primary-bg);
    color: var(--primary-fg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s;
}
.page-404 .actions a:hover {
    background: var(--primary-hover);
}
.page-404 .actions .link-muted {
    background: transparent;
    color: var(--muted-fg);
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
}
.page-404 .actions .link-muted:hover {
    color: var(--page-fg);
    background: transparent;
}

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