:root {
  --font-family: "Playfair Display", sans-serif;
  --font-size-base: 16.8px;
  --line-height-base: 1.78;

  --max-w: 980px;
  --space-x: 1.4rem;
  --space-y: 1.5rem;
  --gap: 0.98rem;
  --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.87rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.32rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 14px 18px rgba(0,0,0,0.12);

  --overlay: rgba(0,0,0,0.45);
  --anim-duration: 350ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #C76B4A;
  --brand-contrast: #FFFFFF;
  --accent: #D97A5A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F5F0;
  --neutral-300: #D4C9BC;
  --neutral-600: #8C7A6B;
  --neutral-800: #4A3F36;
  --neutral-900: #2C241E;

  --page-bg: #FDFBF7;
  --page-fg: #3D2B1F;
  --muted-bg: #F5EDE4;
  --muted-fg: #3D2B1F;
  --card-bg: #FFFFFF;
  --card-fg: #3D2B1F;
  --card-border: #E0D6CA;
  --inverse-bg: #3D2B1F;
  --inverse-fg: #FDFBF7;
  --primary-bg: #C76B4A;
  --primary-fg: #FFFFFF;
  --primary-hover: #B85C3E;
  --accent-bg: #D97A5A;
  --accent-fg: #FFFFFF;
  --accent-hover: #C76B4A;
  --gradient-hero-bg: linear-gradient(135deg, #F5E6D3 0%, #C76B4A 100%);
  --gradient-hero-fg: #3D2B1F;
  --gradient-accent-bg: linear-gradient(135deg, #D97A5A 0%, #B85C3E 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #C76B4A;

  --link: #C76B4A;
  --link-hover: #D97A5A;

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

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

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--page-fg);
  border-radius: var(--radius-sm);
  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);
}

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

.nav-list a {
  font-size: var(--font-size-md);
  color: var(--page-fg);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  line-height: var(--line-height-base);
}

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

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

  .nav {
    display: none;
    width: 100%;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-list a {
    font-size: var(--font-size-lg);
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--muted-bg);
  }

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

footer {
    background-color: var(--page-bg, #faf6f0);
    color: var(--page-fg, #3a2e2a);
    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-x, 1.5rem);
    border-top: 1px solid var(--card-border, #e0d6cc);
  }
  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }
  .footer-newsletter {
    background-color: var(--muted-bg, #f0e8e0);
    padding: var(--space-block, 2rem);
    border-radius: var(--radius-lg, 12px);
    margin-bottom: var(--space-y, 2rem);
    text-align: center;
  }
  .footer-newsletter-title {
    font-size: var(--font-size-h2, 1.75rem);
    margin: 0 0 var(--space-y, 1rem);
    color: var(--primary-bg, #b85c3a);
  }
  .footer-newsletter-text {
    font-size: var(--font-size-sm, 0.9rem);
    margin: 0 0 var(--space-y, 1rem);
    color: var(--muted-fg, #6b5b53);
  }
  .footer-newsletter-form {
    display: flex;
    gap: var(--gap, 0.75rem);
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--card-border, #d6c8bc);
    border-radius: var(--radius-md, 8px);
    background-color: var(--card-bg, #ffffff);
    color: var(--card-fg, #3a2e2a);
    font-size: var(--font-size-base, 1rem);
    flex: 1 1 250px;
    max-width: 350px;
    outline: none;
  }
  .footer-newsletter-input::placeholder {
    color: var(--input-placeholder, #a09088);
  }
  .footer-newsletter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-bg, #b85c3a);
    color: var(--primary-fg, #ffffff);
    border: none;
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    cursor: pointer;
    transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .footer-newsletter-btn:hover {
    background-color: var(--primary-hover, #9e4a2e);
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap, 1.5rem);
    text-align: center;
  }
  @media (min-width: 768px) {
    .footer-bottom {
      grid-template-columns: 1fr 1fr;
      text-align: left;
    }
    .footer-logo,
    .footer-nav,
    .footer-contacts,
    .footer-legal,
    .footer-disclaimer,
    .footer-copyright {
      grid-column: span 2;
    }
    .footer-logo {
      grid-column: 1 / 2;
    }
    .footer-nav {
      grid-column: 2 / 3;
    }
    .footer-contacts {
      grid-column: 1 / 2;
    }
    .footer-legal {
      grid-column: 2 / 3;
      text-align: right;
    }
    .footer-disclaimer {
      grid-column: 1 / 3;
    }
    .footer-copyright {
      grid-column: 1 / 3;
    }
  }
  .footer-logo-link {
    font-size: var(--font-size-h3, 1.5rem);
    font-weight: bold;
    color: var(--primary-bg, #b85c3a);
    text-decoration: none;
  }
  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  @media (min-width: 768px) {
    .footer-nav-list {
      justify-content: flex-end;
    }
  }
  .footer-nav-link {
    color: var(--link, #6b5b53);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.9rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .footer-nav-link:hover {
    color: var(--link-hover, #b85c3a);
  }
  .footer-contacts-title {
    font-size: var(--font-size-md, 1.1rem);
    margin: 0 0 0.5rem;
    color: var(--primary-bg, #b85c3a);
  }
  .footer-contacts p {
    margin: 0.25rem 0;
    font-size: var(--font-size-sm, 0.9rem);
    color: var(--muted-fg, #6b5b53);
  }
  .footer-contacts-link {
    color: var(--link, #6b5b53);
    text-decoration: none;
  }
  .footer-contacts-link:hover {
    color: var(--link-hover, #b85c3a);
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
    margin-top: var(--space);}

.cookie-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  max-width: 360px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  padding: var(--space-section-y, 24px) var(--space-section-x, 20px);
  box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 0);
  z-index: 1000;
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
}
.rail-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 16px);
}
.rail-title {
  margin: 0;
  font-size: var(--font-size-lg, 20px);
  font-weight: 600;
}
.rail-text {
  margin: 0;
  font-size: var(--font-size-sm, 14px);
  opacity: 0.9;
}
.rail-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-y, 8px);
}
.choice {
  display: block;
  width: 100%;
  padding: var(--space-y, 8px) var(--space-x, 16px);
  border: none;
  border-radius: var(--radius-sm, 6px);
  font-size: var(--font-size-sm, 14px);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.choice-accept {
  background: var(--primary-bg, #0066cc);
  color: var(--primary-fg, #ffffff);
}
.choice-accept:hover {
  background: var(--primary-hover, #0052a3);
}
.choice-reject {
  background: var(--muted-bg, #e5e5e5);
  color: var(--muted-fg, #333333);
}
.choice-reject:hover {
  background: var(--btn-ghost-bg-hover, #d0d0d0);
}
.choice-manage {
  background: transparent;
  color: var(--link, #0066cc);
  text-decoration: underline;
  padding: var(--space-y, 8px) 0;
}
.choice-manage:hover {
  color: var(--link-hover, #004d99);
}

.intro-focus {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem 3rem;
      align-items: flex-start;
    }
    .intro-focus .lead {
      flex: 2 1 400px;
    }
    .intro-focus .lead h1 {
      
      font-size: 2.6rem;
      font-weight: 500;
      line-height: 1.15;
      margin: 0 0 1rem 0;
      color: var(--page-fg);
    }
    .intro-focus .subtitle {
      font-size: 1.15rem;
      line-height: 1.5;
      margin: 0 0 1.8rem 0;
      color: var(--page-fg);
      opacity: 0.85;
    }
    .intro-focus .cta {
      display: inline-block;
      background: var(--primary-bg, #C76B4A);
      color: var(--primary-fg, #FFFFFF);
      padding: 0.75rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: background 0.2s;
    }
    .intro-focus .cta:hover {
      background: var(--primary-hover, #B85C3E);
    }
    .intro-focus .note {
      flex: 1 1 220px;
      background: var(--muted-bg, #F5EDE4);
      color: var(--muted-fg, #3D2B1F);
      padding: 1.5rem 1.25rem;
      border-radius: 4px;
      font-size: 0.95rem;
      line-height: 1.55;
    }
    .intro-focus .note p {
      margin: 0;
    }
    @media (max-width: 640px) {
      .intro-focus .lead h1 {
        font-size: 2rem;
      }
      .intro-focus .inner {
        flex-direction: column;
      }
    }

.mission {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 3rem 1.5rem;
        }
        .mission .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .mission h2 {
            font-size: 1.75rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            margin: 0 0 1.25rem 0;
            line-height: 1.2;
        }
        .mission p {
            font-size: 1rem;
            line-height: 1.65;
            margin: 0;
            max-width: 65ch;
        }
        @media (min-width: 640px) {
            .mission {
                padding: 4rem 2rem;
            }
            .mission h2 {
                font-size: 2rem;
            }
            .mission p {
                font-size: 1.0625rem;
            }
        }
        @media (min-width: 1024px) {
            .mission {
                padding: 5rem 2rem;
            }
            .mission h2 {
                font-size: 2.25rem;
            }
        }

.articles {
      background: var(--page-bg, #FDFBF7);
      color: var(--page-fg, #3D2B1F);
      padding: 3rem 1.5rem;
    }

    .articles .inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .articles h2 {
      
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      letter-spacing: -0.01em;
    }

    .articles .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg, #6B5A4A);
    }

    .articles .list {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .articles .entry {
      border-bottom: 1px solid var(--card-border, #E0D6CA);
      padding-bottom: 2rem;
    }

    .articles .entry:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .articles .entry h3 {
      
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0 0 0.25rem;
    }

    .articles .entry h3 a {
      color: inherit;
      text-decoration: none;
    }

    .articles .entry h3 a:hover {
      color: var(--brand-primary-bg, #C76B4A);
    }

    .articles .summary {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--brand-primary-bg, #C76B4A);
      margin: 0 0 0.75rem;
    }

    .articles .entry p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 0.75rem;
      color: var(--page-fg, #3D2B1F);
    }

    .articles .read {
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--brand-primary-bg, #C76B4A);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .articles .read:hover {
      border-bottom-color: var(--brand-primary-bg, #C76B4A);
    }

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

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

      .articles .entry h3 {
        font-size: 1.35rem;
      }
    }

.recommendations {
      background: var(--muted-bg, #F5EDE4);
      color: var(--muted-fg, #3D2B1F);
      padding: 3rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.6rem;
      font-weight: 400;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .recommendations .intro {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      opacity: 0.85;
    }
    .recommendations .entry {
      border-top: 1px solid var(--card-border, #E0D6CA);
      padding: 1.25rem 0;
    }
    .recommendations .entry:last-child {
      border-bottom: 1px solid var(--card-border, #E0D6CA);
    }
    .recommendations .entry h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.2rem 0;
      line-height: 1.4;
    }
    .recommendations .entry h3 a {
      color: var(--page-fg, #3D2B1F);
      text-decoration: none;
    }
    .recommendations .entry h3 a:hover {
      color: var(--primary-bg, #C76B4A);
    }
    .recommendations .meta {
      font-size: 0.85rem;
      opacity: 0.7;
      margin: 0 0 0.4rem 0;
      line-height: 1.4;
    }
    .recommendations .entry p {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      opacity: 0.85;
    }

.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: 400;
      margin: 0 0 1rem;
      line-height: 1.2;
    }

    .our-story .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.85;
    }

    .our-story .steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .our-story .step {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
    }

    .our-story .year {
      flex-shrink: 0;
      width: 3.5rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--accent-bg);
      line-height: 1.4;
    }

    .our-story .body h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.35rem;
      line-height: 1.3;
    }

    .our-story .body p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.8;
    }

    .our-story .closing {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.75;
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.5rem;
    }

    @media (min-width: 600px) {
      .our-story {
        padding: 5rem 2rem;
      }

      .our-story h2 {
        font-size: 2rem;
      }

      .our-story .lead {
        font-size: 1.05rem;
      }

      .our-story .step {
        gap: 2rem;
      }

      .our-story .year {
        width: 4rem;
        font-size: 0.9rem;
      }
    }

.identity {
      background: var(--page-bg, #FDFBF7);
      color: var(--page-fg, #3D2B1F);
      padding: 4rem 1.5rem;
    }
    .identity .inner {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      align-items: flex-start;
    }
    .identity .lead {
      flex: 1 1 280px;
    }
    .identity h1 {
      
      font-size: 2.2rem;
      font-weight: 500;
      line-height: 1.2;
      margin: 0 0 0.4rem;
      color: var(--brand-primary-bg, #C76B4A);
    }
    .identity .subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg, #3D2B1F);
      opacity: 0.75;
    }
    .identity .note {
      flex: 2 1 320px;
      border-left: 2px solid var(--brand-primary-bg, #C76B4A);
      padding-left: 1.5rem;
    }
    .identity .note p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1rem;
    }
    .identity .note p:last-child {
      margin-bottom: 0;
    }
    .identity .closing {
      font-style: italic;
      opacity: 0.8;
    }
    @media (max-width: 600px) {
      .identity {
        padding: 2.5rem 1.25rem;
      }
      .identity .inner {
        gap: 1.5rem;
      }
      .identity .note {
        border-left: none;
        padding-left: 0;
      }
    }

.people-behind {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .people-behind .inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .people-behind h2 {
      font-size: 1.8rem;
      font-weight: 400;
      margin: 0 0 0.75rem;
      letter-spacing: -0.02em;
    }
    .people-behind .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.85;
      max-width: 640px;
    }
    .people-behind .team-list {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .people-behind .member {
      border-bottom: 1px solid rgba(253, 251, 247, 0.15);
      padding-bottom: 1.5rem;
    }
    .people-behind .member:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .people-behind .name {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 0.15rem;
      color: var(--inverse-fg);
    }
    .people-behind .role {
      display: block;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.6;
      margin-bottom: 0.5rem;
    }
    .people-behind .bio {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.8;
    }
    @media (min-width: 640px) {
      .people-behind {
        padding: 4rem 2rem;
      }
      .people-behind .team-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
      }
      .people-behind .member {
        border-bottom: none;
        padding-bottom: 0;
      }
    }

.form {
      background: #FDFBF7;
      color: #3D2B1F;
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form__title {
      margin: 0 0 0.75rem 0;
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .form__desc {
      margin: 0 0 1.5rem 0;
      font-size: 1rem;
      line-height: 1.5;
      color: #3D2B1F;
      opacity: 0.85;
    }
    .form__body {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      border: none;
      padding: 0;
      margin: 0;
    }
    .form__field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form__label {
      font-size: 0.9rem;
      font-weight: 500;
      color: #3D2B1F;
      letter-spacing: 0.02em;
    }
    .form__input {
      
      font-size: 1rem;
      padding: 0.7rem 0.9rem;
      border: 1px solid #E0D6CA;
      border-radius: 6px;
      background: #FFFFFF;
      color: #3D2B1F;
      transition: border-color 0.15s ease;
      outline: none;
    }
    .form__input:focus {
      border-color: #C76B4A;
      box-shadow: 0 0 0 2px rgba(199,107,74,0.15);
    }
    .form__input::placeholder {
      color: #3D2B1F;
      opacity: 0.45;
    }
    .form__submit {
      
      font-size: 1rem;
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      background: #C76B4A;
      color: #FFFFFF;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.15s ease;
      align-self: flex-start;
      margin-top: 0.25rem;
    }
    .form__submit:hover {
      background: #B85C3E;
    }
    .form__submit:active {
      background: #A84E32;
    }
    .form__note {
      margin: 1.25rem 0 0 0;
      font-size: 0.9rem;
      line-height: 1.5;
      color: #3D2B1F;
      opacity: 0.7;
      border-top: 1px solid #E0D6CA;
      padding-top: 1rem;
    }

.contacts {
      background: var(--inverse-bg, #3D2B1F);
      color: var(--inverse-fg, #FDFBF7);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .contacts h2 {
      
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: -0.01em;
      margin: 0 0 1rem 0;
      line-height: 1.2;
    }
    .contacts .context {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      opacity: 0.85;
      max-width: 520px;
    }
    .contacts .lines {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(253, 251, 247, 0.2);
      border-bottom: 1px solid rgba(253, 251, 247, 0.2);
    }
    .contacts .line {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .contacts .label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.6;
    }
    .contacts .value {
      font-size: 1rem;
      line-height: 1.5;
    }
    .contacts .value a {
      color: var(--accent-bg, #D97A5A);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .contacts .value a:hover {
      border-bottom-color: currentColor;
    }
    .contacts .channels {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 1.5rem 0 0 0;
      opacity: 0.8;
      max-width: 480px;
    }
    @media (min-width: 600px) {
      .contacts {
        padding: 4rem 2rem;
      }
      .contacts h2 {
        font-size: 2rem;
      }
      .contacts .context {
        font-size: 1rem;
      }
      .contacts .line {
        flex-direction: row;
        gap: 1rem;
      }
      .contacts .label {
        min-width: 80px;
        padding-top: 0.1rem;
      }
    }

.policy-items {
      background: #FDFBF7;
      color: #3D2B1F;
      padding: 2.5rem 1rem;
    }

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

    .policy-items h2 {
      
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0 0 0.25rem 0;
      letter-spacing: -0.01em;
    }

    .policy-items .update-date {
      font-size: 0.85rem;
      color: #7A6B5E;
      margin: 0 0 2rem 0;
    }

    .policy-items .item {
      margin-bottom: 1.75rem;
    }

    .policy-items .item:last-child {
      margin-bottom: 0;
    }

    .policy-items h3 {
      
      font-size: 1.15rem;
      font-weight: 400;
      margin: 0 0 0.4rem 0;
      color: #C76B4A;
    }

    .policy-items p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

.terms-items {
      background: var(--muted-bg);
      color: var(--muted-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0 0 1rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .terms-items .intro {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      opacity: 0.85;
    }
    .terms-items .body {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .terms-items .block {
      border-top: 1px solid var(--card-border);
      padding-top: 1.25rem;
    }
    .terms-items .block h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.5rem;
      line-height: 1.3;
    }
    .terms-items .block p {
      font-size: 0.9rem;
      line-height: 1.65;
      margin: 0;
      opacity: 0.85;
    }
    @media (min-width: 640px) {
      .terms-items {
        padding: 4rem 2rem;
      }
      .terms-items h2 {
        font-size: 2rem;
      }
      .terms-items .intro {
        font-size: 1rem;
      }
      .terms-items .block p {
        font-size: 0.95rem;
      }
    }
    @media (min-width: 1024px) {
      .terms-items .body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .terms-items .block {
        border-top: none;
        padding-top: 0;
      }
      .terms-items .block:nth-child(-n+2) {
        border-top: 1px solid var(--card-border);
        padding-top: 1.25rem;
      }
    }

.thank {
      background: var(--inverse-bg, #3D2B1F);
      color: var(--inverse-fg, #FDFBF7);
      padding: 3.5rem 1.5rem;
    }

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

    .thank h2 {
      
      font-weight: 400;
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
      color: inherit;
    }

    .thank p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: inherit;
      opacity: 0.88;
    }

    .thank .next-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      margin: 2rem 0 0;
      padding: 1.5rem 0 0;
      border-top: 1px solid rgba(253, 251, 247, 0.15);
    }

    .thank .step-item {
      flex: 1 1 180px;
      min-width: 140px;
    }

    .thank .step-item .label {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      opacity: 0.55;
      margin-bottom: 0.35rem;
    }

    .thank .step-item .value {
      display: block;
      font-size: 0.95rem;
      line-height: 1.5;
      color: inherit;
    }

    .thank .step-item .value a {
      color: var(--accent-bg, #D97A5A);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .thank .step-item .value a:hover {
      border-color: currentColor;
    }

    .thank .step-item .value a[href^="tel"] {
      color: inherit;
      opacity: 0.9;
      border-bottom: none;
    }

    .thank .step-item .value a[href^="tel"]:hover {
      opacity: 1;
    }

    .thank .back-link {
      display: inline-block;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: var(--accent-bg, #D97A5A);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
    }

    .thank .back-link:hover {
      opacity: 0.8;
    }

    @media (max-width: 480px) {
      .thank {
        padding: 2.5rem 1.25rem;
      }
      .thank h2 {
        font-size: 1.6rem;
      }
      .thank .next-steps {
        flex-direction: column;
        gap: 1.25rem;
      }
      .thank .step-item {
        flex: 1 1 auto;
        min-width: 0;
      }
    }

.404 {
      background: #FDFBF7;
      color: #3D2B1F;
      padding: 6rem 1.5rem;
    }

    .404 .inner {
      max-width: 36rem;
      margin: 0 auto;
    }

    .404 h2 {
      font-size: 2rem;
      font-weight: 400;
      line-height: 1.2;
      margin: 0 0 1.5rem;
      letter-spacing: -0.01em;
    }

    .404 p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }

    .404 p:last-of-type {
      margin-bottom: 2rem;
    }

    .404 ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .404 li {
      margin-bottom: 0.5rem;
    }

    .404 a {
      color: #C76B4A;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .404 a:hover {
      border-bottom-color: #C76B4A;
    }