:root {
  --font-family: "Space Grotesk", sans-serif;
  --font-size-base: 19.5px;
  --line-height-base: 1.74;

  --max-w: 1520px;
  --space-x: 2.02rem;
  --space-y: 1.5rem;
  --gap: 2.16rem;
  --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.16rem;
  --radius-lg: 0.83rem;
  --radius-md: 0.55rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.11);
  --shadow-md: 0 10px 18px rgba(0,0,0,0.14);
  --shadow-lg: 0 26px 46px rgba(0,0,0,0.17);

  --overlay: rgba(30, 25, 20, 0.6);
  --anim-duration: 470ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #C06C4A;
  --brand-contrast: #FFFFFF;
  --accent: #C06C4A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F3F0;
  --neutral-300: #D6D2CC;
  --neutral-600: #7A736A;
  --neutral-800: #3D3833;
  --neutral-900: #1E1A16;

  --page-bg: #FBF9F7;
  --page-fg: #2C2824;
  --muted-bg: #F0EDE8;
  --muted-fg: #2C2824;
  --card-bg: #FFFFFF;
  --card-fg: #2C2824;
  --card-border: #E0DBD4;
  --inverse-bg: #2C2824;
  --inverse-fg: #FBF9F7;
  --primary-bg: #C06C4A;
  --primary-fg: #FFFFFF;
  --primary-hover: #A85A3A;
  --accent-bg: #C06C4A;
  --accent-fg: #FFFFFF;
  --accent-hover: #A85A3A;
  --gradient-hero-bg: linear-gradient(135deg, #F5F3F0 0%, #E8E4DE 50%, #D6D2CC 100%);
  --gradient-hero-fg: #2C2824;
  --gradient-accent-bg: linear-gradient(135deg, #C06C4A 0%, #A85A3A 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #C06C4A;

  --link: #C06C4A;
  --link-hover: #C06C4A;

  --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(--primary-bg, #1a2a3a);
  color: var(--primary-fg, #ffffff);
  width: 100%;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  box-sizing: border-box;
}

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

.logo {
  font-size: var(--font-size-h3, 1.5rem);
  font-weight: 700;
  color: var(--primary-fg, #ffffff);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-list a {
  color: var(--primary-fg, #ffffff);
  text-decoration: none;
  font-size: var(--font-size-md, 1rem);
  padding: 0.25rem 0;
  transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.nav-list a:hover {
  opacity: 0.8;
}

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

.cta-button {
  display: inline-block;
  background: var(--accent-bg, #f0b429);
  color: var(--accent-fg, #1a2a3a);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.cta-button:hover {
  background: var(--accent-hover, #d49a1a);
}

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

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

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

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

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

@media (max-width: 767px) {
  .header-wrapper {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    justify-content: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    padding: var(--space-y, 0.75rem) 0;
  }

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-lg, 1.125rem);
  }

  .cta-area {
    order: 2;
    margin-left: auto;
  }

  .burger {
    display: flex;
    order: 1;
  }
}

footer {
  background-color: var(--inverse-bg, #1a1a2e);
  color: var(--inverse-fg, #e0e0e0);
  padding: var(--space-section-y, 3rem) var(--space-section-x, 2rem);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.6);
}

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

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

.contact-item a {
  color: var(--link, #4a90d9);
  text-decoration: none;
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.contact-item a:hover {
  color: var(--link-hover, #2c6cb5);
}

.footer-brand .logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  color: var(--primary-fg, #ffffff);
  letter-spacing: 0.02em;
}

.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(--muted-fg, #b0b0b0);
  text-decoration: none;
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

.footer-legal a {
  color: var(--muted-fg, #b0b0b0);
  text-decoration: none;
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

.footer-disclaimer p {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #9e9e9e);
  margin: 0;
  line-height: var(--line-height-base, 1.6);
}

.footer-copyright p {
  margin: 0;
  color: var(--muted-fg, #9e9e9e);
  font-size: var(--font-size-sm, 0.875rem);
}

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

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

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

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

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

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

  .footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
  }
}

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

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

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

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

  .footer-nav ul {
    justify-content: flex-end;
  }

  .footer-legal {
    grid-column: 1 / -1;
    justify-content: center;
  }

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

  .footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
  }
}

.cookie-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: var(--space-y, 16px);
  background: var(--card-bg, #ffffff);
  box-shadow: var(--shadow-lg, 0 -4px 20px rgba(0,0,0,0.1));
  border-top: 1px solid var(--card-border, #e0e0e0);
  font-family: var(--font-family, sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  color: var(--card-fg, #1a1a1a);
}

.cookie-sheet__inner {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 12px);
}

.cookie-sheet__header {
  display: flex;
  align-items: center;
}

.cookie-sheet__title {
  margin: 0;
  font-size: var(--font-size-lg, 18px);
  font-weight: 600;
}

.cookie-sheet__copy {
  margin: 0;
}

.cookie-sheet__text {
  margin: 0;
  font-size: var(--font-size-sm, 14px);
  color: inherit;
}

.cookie-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 12px);
  align-items: center;
}

.cookie-sheet__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-md, 6px);
  font-size: var(--font-size-sm, 14px);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

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

.cookie-sheet__btn--primary:hover {
  background: var(--primary-hover, #003bb3);
}

.cookie-sheet__btn--ghost {
  background: var(--btn-ghost-bg, transparent);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #d0d0d0);
}

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

.cookie-sheet__btn--link {
  background: transparent;
  color: var(--link, #0055ff);
  padding: 8px 12px;
  text-decoration: underline;
}

.cookie-sheet__btn--link:hover {
  color: var(--link-hover, #003bb3);
}

@media (max-width: 600px) {
  .cookie-sheet {
    padding: var(--space-y, 12px);
  }
  .cookie-sheet__inner {
    max-width: 100%;
  }
  .cookie-sheet__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-sheet__btn {
    width: 100%;
    text-align: center;
  }
}

.intro-focus {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4rem 1.5rem;
  }
  .intro-focus .body {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
  }
  .intro-focus h1 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
  }
  .intro-focus .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    opacity: 0.85;
  }
  .intro-focus .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
  }
  .intro-focus .action:hover {
    background: var(--primary-hover);
  }

.identity {
      background: linear-gradient(135deg, #F5F3F0 0%, #E8E4DE 50%, #D6D2CC 100%);
      color: #2C2824;
      padding: 4rem 1.5rem;
    }
    .identity .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .identity .section-title {
      font-size: 2rem;
      font-weight: 500;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .identity .section-description {
      font-size: 1.0625rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 720px;
      color: #2C2824;
    }
    .identity .note-block {
      border-left: 3px solid #C06C4A;
      padding-left: 1.5rem;
    }
    .identity .note-title {
      font-size: 1.125rem;
      font-weight: 500;
      margin: 0 0 0.5rem;
      color: #2C2824;
    }
    .identity .note-text {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem;
      color: #2C2824;
    }
    .identity .note-tagline {
      font-size: 0.9375rem;
      line-height: 1.5;
      margin: 0;
      color: #2C2824;
      font-weight: 400;
    }
    @media (min-width: 640px) {
      .identity {
        padding: 5rem 2rem;
      }
      .identity .section-title {
        font-size: 2.5rem;
      }
      .identity .section-description {
        font-size: 1.125rem;
      }
      .identity .note-block {
        padding-left: 2rem;
      }
    }
    @media (min-width: 960px) {
      .identity .inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
      }
      .identity .section-title {
        grid-column: 1 / -1;
      }
      .identity .section-description {
        max-width: none;
        margin-bottom: 0;
      }
      .identity .note-block {
        margin-top: 0;
      }
    }

.people-behind {
      background: var(--page-bg, #FBF9F7);
      color: var(--page-fg, #2C2824);
      padding: 5rem 1.5rem;
    }
    .people-behind .inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .people-behind h2 {
      font-size: 2.2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0 0 0.5rem;
    }
    .people-behind .subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      color: var(--muted-fg, #6B6560);
      max-width: 640px;
      margin: 0 0 3rem;
    }
    .people-behind .team-list {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem 3rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .people-behind .team-item {
      flex: 1 1 280px;
      border-top: 1px solid var(--card-border, #E0DBD4);
      padding-top: 1.5rem;
    }
    .people-behind .team-item .role {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--brand-primary-bg, #C06C4A);
      margin-bottom: 0.4rem;
      font-weight: 500;
    }
    .people-behind .team-item .name {
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 1.3;
      margin: 0 0 0.4rem;
    }
    .people-behind .team-item .note {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg, #6B6560);
      margin: 0;
    }
    .people-behind .cta-link {
      display: inline-block;
      margin-top: 3rem;
      padding: 0.75rem 2rem;
      background: var(--brand-primary-bg, #C06C4A);
      color: var(--brand-primary-fg, #FFFFFF);
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      border-radius: 4px;
      transition: background 0.2s;
    }
    .people-behind .cta-link:hover {
      background: var(--brand-primary-hover, #A85A3A);
    }
    @media (max-width: 640px) {
      .people-behind {
        padding: 3rem 1.2rem;
      }
      .people-behind h2 {
        font-size: 1.8rem;
      }
      .people-behind .team-list {
        gap: 1.8rem;
      }
      .people-behind .team-item {
        flex: 1 1 100%;
      }
    }

.why-choose {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 80px 24px;
    }
    .why-choose .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 16px 0;
      line-height: 1.2;
    }
    .why-choose .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 48px 0;
      max-width: 680px;
      opacity: 0.85;
    }
    .why-choose .items {
      display: flex;
      flex-direction: column;
      gap: 32px;
      border-top: 1px solid rgba(251, 249, 247, 0.15);
      padding-top: 40px;
    }
    .why-choose .item {
      border-bottom: 1px solid rgba(251, 249, 247, 0.08);
      padding-bottom: 28px;
    }
    .why-choose .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .why-choose .item h3 {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 8px 0;
      line-height: 1.3;
    }
    .why-choose .item p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      opacity: 0.8;
      max-width: 720px;
    }
    .why-choose .link {
      display: inline-block;
      margin-top: 40px;
      font-size: 0.95rem;
      color: var(--accent-bg, #C06C4A);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .why-choose .link:hover {
      border-color: currentColor;
    }
    @media (min-width: 640px) {
      .why-choose {
        padding: 100px 40px;
      }
      .why-choose h2 {
        font-size: 2.4rem;
      }
      .why-choose .items {
        gap: 40px;
      }
    }

.recommendations {
      background: var(--page-bg, #FBF9F7);
      color: var(--page-fg, #2C2824);
      padding: 3rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }
    .recommendations > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      color: var(--muted-fg, #5A544C);
      max-width: 640px;
    }
    .recommendations .entry {
      border-top: 1px solid var(--muted-bg, #E0DBD4);
      padding: 1.5rem 0;
    }
    .recommendations .entry:last-of-type {
      border-bottom: 1px solid var(--muted-bg, #E0DBD4);
    }
    .recommendations .entry h3 {
      font-size: 1.125rem;
      font-weight: 500;
      margin: 0 0 0.4rem 0;
      line-height: 1.3;
    }
    .recommendations .entry h3 a {
      color: var(--page-fg, #2C2824);
      text-decoration: none;
    }
    .recommendations .entry h3 a:hover {
      color: var(--brand-primary-bg, #C06C4A);
    }
    .recommendations .entry p {
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg, #5A544C);
    }
    @media (max-width: 600px) {
      .recommendations {
        padding: 2rem 1rem;
      }
      .recommendations h2 {
        font-size: 1.5rem;
      }
      .recommendations .entry {
        padding: 1.25rem 0;
      }
    }

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

    .mission .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .mission .content {
      max-width: 720px;
    }

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

    .mission p {
      font-size: 1.125rem;
      line-height: 1.7;
      margin: 0;
      opacity: 0.85;
    }

    .mission .notes {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 3rem;
    }

    .mission .note {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .mission .note-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.5;
    }

    .mission .note-text {
      font-size: 1rem;
      line-height: 1.5;
    }

    @media (min-width: 768px) {
      .mission .inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
      }

      .mission .content {
        flex: 0 0 60%;
      }

      .mission .notes {
        flex: 1;
        flex-direction: column;
        gap: 1.75rem;
        padding-top: 0.5rem;
      }
    }

.timeline {
      background: var(--page-bg, #FBF9F7);
      color: var(--page-fg, #2C2824);
      padding: 4rem 1.5rem;
    }
    .timeline .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .timeline h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      letter-spacing: -0.02em;
    }
    .timeline .subtitle {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: var(--muted-fg, #5A5550);
    }
    .timeline .steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .timeline .step {
      border-left: 2px solid var(--brand-primary-bg, #C06C4A);
      padding-left: 1.25rem;
    }
    .timeline .date {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--brand-primary-bg, #C06C4A);
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .timeline .step h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
    }
    .timeline .result {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg, #5A5550);
    }
    @media (min-width: 640px) {
      .timeline {
        padding: 5rem 2rem;
      }
      .timeline h2 {
        font-size: 2rem;
      }
      .timeline .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
      }
      .timeline .step {
        padding-left: 1.5rem;
      }
    }
    @media (min-width: 960px) {
      .timeline {
        padding: 6rem 2rem;
      }
      .timeline .steps {
        grid-template-columns: 1fr 1fr;
      }
    }

.our-story {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 5rem 1.5rem;
    }
    .our-story .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .our-story h2 {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem;
      line-height: 1.2;
    }
    .our-story p {
      font-size: 1.05rem;
      line-height: 1.65;
      margin: 0 0 1.25rem;
    }
    .our-story .link {
      display: inline-block;
      margin-top: 0.5rem;
      padding: 0.6rem 1.8rem;
      background: var(--accent-bg);
      color: var(--accent-fg);
      text-decoration: none;
      font-size: 0.95rem;
      border-radius: 4px;
      transition: background 0.2s;
    }
    .our-story .link:hover {
      background: var(--accent-hover);
    }
    @media (max-width: 600px) {
      .our-story {
        padding: 3rem 1.25rem;
      }
      .our-story h2 {
        font-size: 1.6rem;
      }
      .our-story p {
        font-size: 1rem;
      }
    }

.contacts {
      background: var(--page-bg, #FBF9F7);
      color: var(--page-fg, #2C2824);
      padding: 3rem 1.5rem;
    }

    .contacts .inner {
      max-width: 640px;
      margin: 0 auto;
    }

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

    .contacts .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      color: var(--muted-fg, #5A524A);
    }

    .contacts .entry {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--card-border, #E0DBD4);
    }

    .contacts .entry:last-of-type {
      border-bottom: none;
    }

    .contacts .label {
      flex: 0 0 8rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--muted-fg, #5A524A);
    }

    .contacts .value {
      font-size: 1rem;
      line-height: 1.4;
      color: var(--page-fg, #2C2824);
    }

    .contacts a.value {
      color: var(--primary-bg, #C06C4A);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
    }

    .contacts a.value:hover {
      border-bottom-color: var(--primary-bg, #C06C4A);
    }

    .contacts .note {
      margin: 1.5rem 0 0 0;
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg, #5A524A);
      padding-top: 0.5rem;
      border-top: 1px solid var(--card-border, #E0DBD4);
    }

    @media (max-width: 480px) {
      .contacts {
        padding: 2rem 1rem;
      }

      .contacts .entry {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.6rem 0;
      }

      .contacts .label {
        flex: none;
        font-size: 0.8rem;
      }
    }

.clarifications {
      background: var(--inverse-bg, #2C2824);
      color: var(--inverse-fg, #FBF9F7);
      padding: 3rem 1.5rem;
    }

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

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

    .clarifications .note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.25rem 0;
      color: inherit;
    }

    .clarifications .note:last-of-type {
      margin-bottom: 0;
    }

    .clarifications a {
      color: var(--accent-bg, #C06C4A);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
      transition: opacity 0.15s ease;
    }

    .clarifications a:hover {
      opacity: 0.75;
    }

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

      .clarifications h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
      }

      .clarifications .note {
        font-size: 1rem;
        line-height: 1.7;
      }
    }

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

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

.form {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 0.75rem;
      line-height: 1.2;
    }
    .form p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .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;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--muted-fg);
    }
    .form input,
    .form select,
    .form textarea {
      font: inherit;
      font-size: 0.95rem;
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--card-border);
      border-radius: 4px;
      background: var(--card-bg);
      color: var(--card-fg);
      transition: border-color 0.15s;
    }
    .form input:focus,
    .form select:focus,
    .form textarea:focus {
      outline: none;
      border-color: var(--accent-bg);
    }
    .form textarea {
      resize: vertical;
      min-height: 3.5rem;
    }
    .form button {
      font: inherit;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 4px;
      background: var(--accent-bg);
      color: var(--accent-fg);
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--accent-hover);
    }
    .form .note {
      font-size: 0.8rem;
      margin: 1rem 0 0;
      color: var(--muted-fg);
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form h2 {
        font-size: 1.4rem;
      }
      .form button {
        width: 100%;
        text-align: center;
      }
    }

.support {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 5rem 1.5rem;
    }
    .support .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 1rem;
    }
    .support .lead {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 640px;
    }
    .support .channels {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .support .channel {
      flex: 1 1 240px;
      background: transparent;
      padding: 0;
    }
    .support .channel h3 {
      font-size: 1.125rem;
      font-weight: 500;
      margin: 0 0 0.5rem;
      color: var(--accent-bg);
    }
    .support .channel p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }
    .support .contact-link {
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .support .contact-link:hover {
      border-color: var(--accent-bg);
    }
    .support .faq-note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .support .faq-note a {
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .support .faq-note a:hover {
      border-color: var(--accent-bg);
    }

.policy-items {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .policy-items .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .policy-items .section-title {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 0 0 0.5rem;
      line-height: 1.2;
    }
    .policy-items .section-note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.8;
    }
    .policy-items .policy-group {
      border-top: 1px solid rgba(251, 249, 247, 0.15);
      padding: 1.75rem 0;
    }
    .policy-items .policy-group:first-of-type {
      border-top: none;
    }
    .policy-items .group-title {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .policy-items .group-text {
      font-size: 0.9rem;
      line-height: 1.65;
      margin: 0 0 0.75rem;
      opacity: 0.85;
    }
    .policy-items .group-text:last-child {
      margin-bottom: 0;
    }
    @media (min-width: 768px) {
      .policy-items {
        padding: 5rem 2rem;
      }
      .policy-items .section-title {
        font-size: 2rem;
      }
      .policy-items .group-title {
        font-size: 1.25rem;
      }
      .policy-items .group-text {
        font-size: 0.95rem;
      }
    }

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .terms-items .note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }
    .terms-items .item {
      border-top: 1px solid var(--muted-bg);
      padding: 1.5rem 0;
    }
    .terms-items .item:first-of-type {
      border-top: none;
    }
    .terms-items .item h3 {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 0.5rem;
    }
    .terms-items .item p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }
    .terms-items .contact-note {
      font-size: 0.9rem;
      margin: 2rem 0 0;
      padding-top: 1rem;
      border-top: 1px solid var(--muted-bg);
    }

.thank {
      background: var(--inverse-bg, #2C2824);
      color: var(--inverse-fg, #FBF9F7);
      padding: 4rem 1.5rem;
    }
    .thank .inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 0.75rem;
      line-height: 1.2;
    }
    .thank .intro {
      font-size: 1.05rem;
      line-height: 1.55;
      margin: 0 0 2.5rem;
      opacity: 0.88;
      max-width: 640px;
    }
    .thank .steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .thank .step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .thank .step-num {
      flex-shrink: 0;
      width: 2.4rem;
      height: 2.4rem;
      background: var(--accent-bg, #C06C4A);
      color: var(--accent-fg, #FFFFFF);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1;
      margin-top: 0.15rem;
    }
    .thank .step-body h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.25rem;
      line-height: 1.3;
    }
    .thank .step-body p {
      margin: 0;
      line-height: 1.5;
      opacity: 0.85;
      font-size: 0.95rem;
    }
    .thank .contact-note {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.75rem;
      margin-top: 0.5rem;
    }
    .thank .contact-note p {
      margin: 0 0 0.5rem;
      line-height: 1.5;
      font-size: 0.95rem;
      opacity: 0.85;
    }
    .thank .contact-line {
      font-size: 1.05rem;
      opacity: 1;
    }
    .thank .contact-line a {
      color: var(--accent-bg, #C06C4A);
      text-decoration: none;
      font-weight: 450;
    }
    .thank .contact-line a:hover {
      text-decoration: underline;
    }
    .thank .sep {
      margin: 0 0.6rem;
      opacity: 0.4;
    }
    @media (min-width: 640px) {
      .thank {
        padding: 5rem 2rem;
      }
      .thank h2 {
        font-size: 2.4rem;
      }
      .thank .steps {
        gap: 1.75rem;
      }
      .thank .step {
        gap: 1.25rem;
      }
      .thank .step-num {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1rem;
      }
    }

.not-found {
            background: var(--page-bg, #FBF9F7);
            color: var(--page-fg, #2C2824);
            padding: 4rem 1.5rem;
            
        }
        .not-found .inner {
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
        }
        .not-found h1 {
            font-size: 2.8rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin: 0 0 1.25rem;
            color: var(--page-fg, #2C2824);
        }
        .not-found p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0 0 2rem;
            color: var(--page-fg, #2C2824);
            opacity: 0.8;
        }
        .not-found .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            align-items: center;
        }
        .not-found .actions a {
            display: inline-block;
            padding: 0.7rem 1.6rem;
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.4;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            background: var(--primary-bg, #C06C4A);
            color: var(--primary-fg, #FFFFFF);
        }
        .not-found .actions a:hover {
            background: var(--primary-hover, #A85A3A);
            color: var(--primary-fg, #FFFFFF);
        }
        .not-found .actions a.secondary {
            background: transparent;
            color: var(--page-fg, #2C2824);
            border: 1px solid var(--muted-bg, #E0DBD4);
        }
        .not-found .actions a.secondary:hover {
            background: var(--muted-bg, #F0EDE8);
            border-color: var(--muted-bg, #E0DBD4);
        }
        .not-found .note {
            margin-top: 2rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--page-fg, #2C2824);
            opacity: 0.55;
        }
        .not-found .note a {
            color: var(--accent-bg, #C06C4A);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .not-found .note a:hover {
            opacity: 0.8;
        }
        @media (max-width: 480px) {
            .not-found h1 {
                font-size: 2.2rem;
            }
            .not-found p {
                font-size: 1rem;
            }
            .not-found .actions {
                flex-direction: column;
                width: 100%;
            }
            .not-found .actions a {
                width: 100%;
                text-align: center;
            }
        }

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