:root {
  --font-family: "Source Serif 4", sans-serif;
  --font-size-base: 17.2px;
  --line-height-base: 1.67;

  --max-w: 1360px;
  --space-x: 2.47rem;
  --space-y: 1.5rem;
  --gap: 2.49rem;
  --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.01rem;
  --radius-lg: 0.87rem;
  --radius-md: 0.45rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.11);
  --shadow-md: 0 12px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 28px 40px rgba(0,0,0,0.17);

  --overlay: rgba(18, 16, 14, 0.72);
  --anim-duration: 490ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #E8A33D;
  --brand-contrast: #1A1815;
  --accent: #E8A33D;
  --accent-contrast: #1A1815;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F2EC;
  --neutral-300: #D6CFC4;
  --neutral-600: #8A8178;
  --neutral-800: #3A352F;
  --neutral-900: #1F1C18;

  --page-bg: #12100E;
  --page-fg: #EDE6DC;
  --muted-bg: #1A1815;
  --muted-fg: #D6CFC4;
  --card-bg: #1F1C18;
  --card-fg: #EDE6DC;
  --card-border: #3A352F;
  --inverse-bg: #F5F2EC;
  --inverse-fg: #1F1C18;
  --primary-bg: #E8A33D;
  --primary-fg: #1A1815;
  --primary-hover: #D18F2C;
  --accent-bg: #E8A33D;
  --accent-fg: #1A1815;
  --accent-hover: #D18F2C;
  --gradient-hero-bg: linear-gradient(135deg, #12100E 0%, #2A2620 50%, #1A1815 100%);
  --gradient-hero-fg: #EDE6DC;
  --gradient-accent-bg: linear-gradient(135deg, #E8A33D 0%, #D18F2C 100%);
  --gradient-accent-fg: #1A1815;

  --ring: #E8A33D;

  --link: #E8A33D;
  --link-hover: #E8A33D;

  --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(--card-border);
    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;
    gap: var(--gap);
  }

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

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

  .site-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: var(--font-size-sm);
    color: var(--page-fg);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    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);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent-bg);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--page-fg);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .site-logo {
      font-size: var(--font-size-h3);
    }

    .nav-toggle {
      display: flex;
    }

    .site-nav {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-y);
      padding-top: var(--space-y);
      border-top: 1px solid var(--card-border);
      margin-top: var(--space-y);
    }

    .site-nav.is-open {
      display: flex;
    }

    .nav-link {
      font-size: var(--font-size-md);
      width: 100%;
      padding: 0.5rem 0;
      border-bottom: none;
      border-left: 2px solid transparent;
      padding-left: 0.5rem;
    }

    .nav-link:hover {
      border-bottom: none;
      border-left-color: var(--accent-bg);
    }
  }

.site-footer {
    background: var(--inverse-bg, #0f172a);
    color: var(--inverse-fg, #f8fafc);
    padding: var(--space-section-y, 4rem) 0 2rem;
    font-family: var(--font-family, 'Inter', sans-serif);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.6);
  }

  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1.5rem);
  }

  .footer-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
    padding: var(--space-block, 2rem);
    background: var(--card-bg, #1e293b);
    border-radius: var(--radius-lg, 12px);
    margin-bottom: var(--space-y, 2.5rem);
    border: 1px solid var(--card-border, rgba(255,255,255,0.1));
  }

  .newsletter-content {
    flex: 1 1 300px;
  }

  .newsletter-title {
    font-size: var(--font-size-h3, 1.5rem);
    margin: 0 0 0.5rem;
    color: var(--inverse-fg, #f8fafc);
  }

  .newsletter-text {
    margin: 0;
    color: var(--muted-fg, #94a3b8);
    font-size: var(--font-size-sm, 0.875rem);
  }

  .newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex: 1 1 300px;
  }

  .newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--card-border, rgba(255,255,255,0.2));
    border-radius: var(--radius-md, 8px);
    background: var(--page-bg, #0f172a);
    color: var(--page-fg, #f8fafc);
    font-size: var(--font-size-sm, 0.875rem);
  }

  .newsletter-input::placeholder {
    color: var(--input-placeholder, #64748b);
  }

  .newsletter-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-bg, #3b82f6);
    color: var(--primary-fg, #ffffff);
    border: none;
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .newsletter-button:hover {
    background: var(--primary-hover, #2563eb);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--gap, 2rem);
    padding-bottom: var(--space-y, 2.5rem);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

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

  .footer-description {
    margin: 1rem 0 0;
    color: var(--muted-fg, #94a3b8);
    font-size: var(--font-size-sm, 0.875rem);
    max-width: 280px;
  }

  .footer-heading {
    font-size: var(--font-size-md, 1.125rem);
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--inverse-fg, #f8fafc);
  }

  .footer-menu,
  .footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-menu li,
  .footer-legal-links li {
    margin-bottom: 0.5rem;
  }

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

  .footer-menu a:hover,
  .footer-legal-links a:hover {
    color: var(--link-hover, #60a5fa);
  }

  .footer-contacts {
    font-style: normal;
  }

  .footer-address {
    color: var(--muted-fg, #94a3b8);
    font-size: var(--font-size-sm, 0.875rem);
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

  .footer-phone,
  .footer-email {
    margin: 0.5rem 0;
  }

  .footer-phone a,
  .footer-email a {
    color: var(--muted-fg, #94a3b8);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.875rem);
    transition: color var(--anim-duration,);}

.cookie-notice {
    position: fixed;
    bottom: var(--space-y, 1rem);
    right: var(--space-x, 1rem);
    width: calc(100% - 2 * var(--space-x, 1rem));
    max-width: 420px;
    background: var(--card-bg, #ffffff);
    color: var(--card-fg, #1a1a1a);
    border: 1px solid var(--card-border, #e5e5e5);
    border-radius: var(--radius-md, 8px);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    padding: var(--space-card, 1rem);
    font-family: var(--font-family, sans-serif);
    font-size: var(--font-size-sm, 0.875rem);
    line-height: var(--line-height-base, 1.5);
    z-index: 1000;
  }

  .cookie-notice__inner {
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.5rem);
  }

  .cookie-notice__title {
    margin: 0;
    font-size: var(--font-size-md, 1rem);
    font-weight: 600;
  }

  .cookie-notice__text {
    margin: 0;
    color: var(--muted-fg, #666666);
  }

  .cookie-notice__actions {
    display: flex;
    align-items: center;
    gap: var(--gap, 0.5rem);
    flex-wrap: wrap;
  }

  .cookie-notice__btn {
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--card-border, #e5e5e5);
    border-radius: var(--radius-sm, 4px);
    background: var(--card-bg, #ffffff);
    color: var(--card-fg, #1a1a1a);
    font-size: var(--font-size-sm, 0.875rem);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cookie-notice__btn:hover {
    background: var(--muted-bg, #f5f5f5);
  }

  .cookie-notice__btn--primary {
    background: var(--primary-bg, #0066cc);
    color: var(--primary-fg, #ffffff);
    border-color: var(--primary-bg, #0066cc);
  }

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

  .cookie-notice__link {
    background: none;
    border: none;
    padding: 0.375rem 0.5rem;
    color: var(--link, #0066cc);
    font-size: var(--font-size-sm, 0.875rem);
    cursor: pointer;
    text-decoration: underline;
  }

  .cookie-notice__link:hover {
    color: var(--link-hover, #004499);
  }

.intro-focus {
    background: linear-gradient(135deg, #12100E 0%, #2A2620 50%, #1A1815 100%);
    color: #EDE6DC;
    padding: 72px 24px;
  }

  .intro-focus .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
  }

  .intro-focus .note {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E8A33D;
    margin: 0 0 16px;
  }

  .intro-focus h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 20px;
    max-width: 540px;
  }

  .intro-focus .subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #D6CFC4;
    margin: 0 0 16px;
    max-width: 520px;
  }

  .intro-focus .description {
    font-size: 16px;
    line-height: 1.6;
    color: #D6CFC4;
    margin: 0 0 28px;
    max-width: 520px;
  }

  .intro-focus .cta {
    display: inline-block;
    background: #E8A33D;
    color: #1A1815;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .intro-focus .cta:hover {
    background: #D18F2C;
  }

  .intro-focus .visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    display: block;
  }

  @media (max-width: 768px) {
    .intro-focus {
      padding: 48px 20px;
    }

    .intro-focus .inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .intro-focus h1 {
      font-size: 32px;
    }

    .intro-focus .visual img {
      height: 280px;
    }
  }

.identity {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .identity .inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .identity h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .identity .lead p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 16px;
    color: var(--muted-fg);
  }

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

  .identity .note {
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 28px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .identity .note p {
    margin: 0;
  }

  @media (max-width: 800px) {
    .identity {
      padding: 48px 20px;
    }

    .identity .inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .identity h2 {
      font-size: 1.7rem;
    }
  }

.identity .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.identity .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.recommendations {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4rem 1.5rem;
  }

  .recommendations .inner {
    max-width: 68rem;
    margin: 0 auto;
  }

  .recommendations h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
  }

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

  .recommendations .media {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
  }

  .recommendations .media__body {
    max-width: 52rem;
  }

  .recommendations .media__body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: var(--inverse-fg);
  }

  .recommendations .media__body p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0 0 1.5rem 0;
    max-width: 46rem;
  }

  .recommendations .media__body a {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-bg);
    padding-bottom: 0.15rem;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .recommendations .media__body a:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
  }

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

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

    .social-proof h2 {
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
      color: var(--page-fg);
    }

    .social-proof .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2.5rem 0;
      max-width: 60ch;
    }

    .social-proof .entries {
      display: block;
      border-top: 1px solid var(--muted-bg);
    }

    .social-proof .entry {
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }

    .social-proof .entry:last-child {
      border-bottom: none;
    }

    .social-proof .text {
      font-size: 1.1rem;
      line-height: 1.65;
      margin: 0 0 0.8rem 0;
      color: var(--page-fg);
      font-style: normal;
    }

    .social-proof .meta {
      font-size: 0.9rem;
      line-height: 1.4;
      color: var(--muted-fg);
      margin: 0;
      letter-spacing: 0.02em;
    }

    @media (max-width: 640px) {
      .social-proof {
        padding: 3rem 1.2rem;
      }

      .social-proof h2 {
        font-size: 1.6rem;
      }

      .social-proof .text {
        font-size: 1rem;
      }
    }

.social-proof .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.social-proof .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.our-story {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 96px 24px;
    }
    .our-story .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .our-story h2 {
      font-size: 2.4rem;
      line-height: 1.2;
      font-weight: 600;
      margin: 0 0 32px;
      letter-spacing: -0.01em;
    }
    .our-story p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 24px;
      color: var(--muted-fg);
    }
    .our-story p:last-child {
      margin-bottom: 0;
    }
    @media (max-width: 640px) {
      .our-story {
        padding: 64px 20px;
      }
      .our-story h2 {
        font-size: 1.8rem;
      }
    }

.partners {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 72px 0 80px;
    }

    .partners .inner {
        max-width: 1080px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .partners h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 16px;
        font-weight: 600;
        max-width: 480px;
    }

    .partners .lead {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 620px;
        margin: 0 0 48px;
    }

    .partners .entries {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid var(--card-border);
    }

    .partners .entry {
        padding: 28px 0;
        border-bottom: 1px solid var(--card-border);
    }

    .partners .meta {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin: 0 0 8px;
        color: var(--muted-fg);
    }

    .partners .entry h3 {
        font-size: 1.3rem;
        margin: 0 0 10px;
        font-weight: 600;
    }

    .partners .entry p:last-child {
        margin: 0;
        line-height: 1.55;
        max-width: 640px;
    }

    .partners .note {
        margin: 40px 0 0;
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 560px;
        color: var(--muted-fg);
    }

    .partners .note a {
        color: var(--primary-bg);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .partners .note a:hover {
        color: var(--primary-hover);
    }

    @media (min-width: 640px) {
        .partners .entries {
            grid-template-columns: 1fr 1fr;
            column-gap: 48px;
        }

        .partners .entry:nth-child(3) {
            grid-column: 1 / -1;
        }
    }

    @media (min-width: 900px) {
        .partners .entries {
            grid-template-columns: 1fr 1fr 1fr;
            column-gap: 40px;
        }

        .partners .entry:nth-child(3) {
            grid-column: auto;
        }
    }

.identity {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 80px 24px;
  }

  .identity .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .identity .lead h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .identity .lead p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
  }

  .identity .note {
    border-left: 3px solid var(--primary-bg);
    padding-left: 28px;
  }

  .identity .note h2 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px;
    font-weight: 600;
  }

  .identity .note p {
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    color: var(--muted-fg);
  }

  @media (max-width: 768px) {
    .identity {
      padding: 56px 20px;
    }

    .identity .inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .identity .lead h1 {
      font-size: 32px;
    }

    .identity .lead p {
      font-size: 16px;
    }

    .identity .note {
      border-left: none;
      border-top: 3px solid var(--primary-bg);
      padding-left: 0;
      padding-top: 20px;
    }
  }

.timeline {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 72px 0 80px;
    }
    .timeline .inner {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .timeline h2 {
      font-size: 34px;
      line-height: 1.2;
      margin: 0 0 20px;
      font-weight: 600;
    }
    .timeline p {
      font-size: 16px;
      line-height: 1.7;
      margin: 0 0 16px;
    }
    .timeline .steps {
      list-style: none;
      margin: 48px 0 0;
      padding: 0;
      border-left: 1px solid var(--card-border);
    }
    .timeline .step {
      padding: 0 0 40px 32px;
      position: relative;
    }
    .timeline .step:last-child {
      padding-bottom: 0;
    }
    .timeline .step::before {
      content: "";
      position: absolute;
      left: -5px;
      top: 6px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--brand-primary-bg);
    }
    .timeline .year {
      display: block;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-primary-bg);
      margin-bottom: 8px;
      font-weight: 600;
    }
    .timeline h3 {
      font-size: 20px;
      line-height: 1.3;
      margin: 0 0 10px;
      font-weight: 600;
    }
    .timeline .step p {
      font-size: 15px;
      line-height: 1.65;
      margin: 0;
    }
    @media (max-width: 600px) {
      .timeline {
        padding: 56px 0 64px;
      }
      .timeline h2 {
        font-size: 28px;
      }
      .timeline .step {
        padding-left: 24px;
      }
    }

.mission {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 80px 24px;
  }

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

  .mission h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .mission p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px;
    color: var(--gradient-hero-fg);
    opacity: 0.92;
  }

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

  @media (max-width: 640px) {
    .mission {
      padding: 56px 20px;
    }

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

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

.capabilities {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 0;
  }

  .capabilities .inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .capabilities h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .capabilities .inner > p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
    max-width: 640px;
    margin: 0 0 48px;
  }

  .capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--card-border);
  }

  .capability-item {
    padding: 28px 24px 28px 0;
    border-bottom: 1px solid var(--card-border);
  }

  .capability-item:nth-child(odd) {
    padding-right: 48px;
    border-right: 1px solid var(--card-border);
  }

  .capability-item:nth-child(even) {
    padding-left: 48px;
  }

  .capability-index {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-bg);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }

  .capability-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
  }

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

  .capabilities-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--primary-bg);
    padding-bottom: 2px;
  }

  .capabilities-link:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
  }

  @media (max-width: 720px) {
    .capabilities-list {
      grid-template-columns: 1fr;
    }

    .capability-item:nth-child(odd) {
      padding-right: 0;
      border-right: none;
    }

    .capability-item:nth-child(even) {
      padding-left: 0;
    }
  }

.capabilities .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.capabilities .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

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

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

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

    .faq .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 40px;
      max-width: 640px;
    }

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

    .faq .item {
      padding: 24px 0;
      border-bottom: 1px solid var(--card-border, #3A352F);
    }

    .faq .item:first-child {
      border-top: 1px solid var(--card-border, #3A352F);
    }

    .faq dt {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .faq dd {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 720px;
    }

    .faq .note {
      margin: 32px 0 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg, #D6CFC4);
    }

    .faq a {
      color: var(--primary-bg, #E8A33D);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .faq a:hover {
      color: var(--primary-hover, #D18F2C);
    }

    @media (max-width: 600px) {
      .faq {
        padding: 48px 16px;
      }

      .faq h2 {
        font-size: 1.6rem;
      }

      .faq .lead {
        font-size: 1rem;
      }

      .faq dt {
        font-size: 1.05rem;
      }
    }

.plans-overview {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 72px 0;
    }

    .plans-overview .inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .plans-overview h2 {
      font-size: 2rem;
      font-weight: 600;
      margin: 0 0 16px;
      letter-spacing: -0.01em;
    }

    .plans-overview > .inner > p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--muted-fg);
      max-width: 640px;
      margin: 0 0 48px;
    }

    .plans-overview .plan {
      border-top: 1px solid var(--card-border);
      padding: 28px 0;
      display: grid;
      grid-template-columns: 240px 1fr auto;
      gap: 32px;
      align-items: baseline;
    }

    .plans-overview .plan:last-of-type {
      border-bottom: 1px solid var(--card-border);
    }

    .plans-overview .plan h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0;
    }

    .plans-overview .plan p {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
      margin: 0;
      max-width: 480px;
    }

    .plans-overview .plan a {
      color: var(--accent-bg);
      font-size: 0.9rem;
      text-decoration: none;
      white-space: nowrap;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .plans-overview .plan a:hover {
      border-color: var(--accent-bg);
    }

    .plans-overview .closing {
      margin: 40px 0 0;
      font-size: 1rem;
      color: var(--page-fg);
      max-width: 520px;
    }

    @media (max-width: 720px) {
      .plans-overview {
        padding: 48px 0;
      }

      .plans-overview .plan {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .plans-overview .plan a {
        margin-top: 4px;
      }
    }

.how-it-works {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 64px 24px;
  }

  .how-it-works .inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: flex-start;
  }

  .how-it-works .setup {
    flex: 1 1 45%;
  }

  .how-it-works .next {
    flex: 1 1 55%;
  }

  .how-it-works h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 600;
  }

  .how-it-works h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 24px;
    font-weight: 600;
  }

  .how-it-works p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 16px;
  }

  .how-it-works .closing {
    margin-top: 24px;
    font-size: 1.05rem;
  }

  .how-it-works ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
  }

  .how-it-works li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(31, 28, 24, 0.15);
  }

  .how-it-works li:last-child {
    border-bottom: none;
  }

  .how-it-works .step {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-bg);
    min-width: 32px;
    padding-top: 2px;
  }

  .how-it-works .step-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  @media (max-width: 768px) {
    .how-it-works .inner {
      flex-direction: column;
      gap: 40px;
    }

    .how-it-works h2 {
      font-size: 1.6rem;
    }
  }

.support {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 72px 24px 80px;
        }

        .support .inner {
            max-width: 1080px;
            margin: 0 auto;
        }

        .support .intro {
            max-width: 720px;
            margin-bottom: 56px;
        }

        .support h2 {
            font-size: 40px;
            line-height: 1.15;
            margin: 0 0 20px;
            font-weight: 600;
        }

        .support .intro p {
            font-size: 17px;
            line-height: 1.65;
            margin: 0;
        }

        .support .channels {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 56px;
        }

        .support .channel {
            border-top: 1px solid var(--card-border, #3A352F);
            padding-top: 24px;
        }

        .support .channel h3 {
            font-size: 20px;
            margin: 0 0 12px;
            font-weight: 600;
        }

        .support .label {
            font-size: 14px;
            line-height: 1.5;
            margin: 0 0 12px;
            color: var(--muted-fg, #D6CFC4);
        }

        .support .title {
            font-size: 18px;
            line-height: 1.4;
            margin: 0 0 12px;
            font-weight: 600;
        }

        .support .title a {
            color: var(--inverse-fg);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: var(--primary-bg, #E8A33D);
        }

        .support .title a:hover {
            color: var(--primary-bg, #E8A33D);
        }

        .support .text {
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        .support .note {
            border-top: 1px solid var(--card-border, #3A352F);
            padding-top: 24px;
            max-width: 720px;
        }

        .support .note h3 {
            font-size: 20px;
            margin: 0 0 12px;
            font-weight: 600;
        }

        .support .note p {
            font-size: 15px;
            line-height: 1.6;
            margin: 0 0 12px;
        }

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

        .support .note a {
            color: var(--primary-bg, #E8A33D);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .support .note a:hover {
            color: var(--primary-hover, #D18F2C);
        }

        @media (max-width: 768px) {
            .support {
                padding: 48px 20px 56px;
            }

            .support h2 {
                font-size: 32px;
            }

            .support .channels {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

/* базовые сбросы для фрагмента */
    * { margin: 0; padding: 0; box-sizing: border-box; }

/* ====== Секция контактов ====== */
      .contacts {
        background: var(--page-bg, #12100E);
        color: var(--page-fg, #EDE6DC);
        padding: 4rem 1.5rem 3rem;
        
      }

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

      .contacts h2 {
        font-size: 2.2rem;
        font-weight: 500;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--muted-border, #3A352F);
        padding-bottom: 1.2rem;
        color: var(--page-fg, #EDE6DC);
      }

      .contacts .lead {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--muted-fg, #D6CFC4);
        margin-bottom: 2.5rem;
        max-width: 55ch;
      }

      /* сетка контактов — компактные строки */
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-bottom: 2.5rem;
      }

      .contact-item {
        border-bottom: 1px solid var(--muted-border, #3A352F);
        padding-bottom: 1.2rem;
      }

      .contact-item .label {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--brand-primary, #E8A33D);
        margin-bottom: 0.4rem;
        font-weight: 500;
      }

      .contact-item .value {
        font-size: 1.1rem;
        line-height: 1.5;
        color: var(--page-fg, #EDE6DC);
      }

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

      .contact-item a:hover {
        border-bottom-color: var(--accent-bg, #E8A33D);
      }

      /* примечание внизу */
      .contacts .note {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--muted-fg, #D6CFC4);
        border-left: 2px solid var(--brand-primary, #E8A33D);
        padding-left: 1rem;
        margin-top: 0.5rem;
      }

      /* на узких экранах — компактнее */
      @media (min-width: 480px) {
        .contact-grid {
          grid-template-columns: 1fr 1fr;
          gap: 1.5rem 2rem;
        }
      }

      @media (min-width: 640px) {
        .contacts {
          padding: 5rem 2rem 4rem;
        }
        .contacts h2 {
          font-size: 2.5rem;
        }
        .contact-item .value {
          font-size: 1.15rem;
        }
      }

/* Секция формы — тёмная, под стать клубной эстетике */
    .form {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #12100E 0%, #2A2620 50%, #1A1815 100%));
      color: var(--gradient-hero-fg, #EDE6DC);
      padding: 4rem 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .form .inner {
      max-width: 640px;
      width: 100%;
      background: var(--card-bg, #1F1C18);
      color: var(--card-fg, #EDE6DC);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
      border: 1px solid var(--card-border, #3A352F);
    }

    /* Заголовок и вводный текст */
    .form h2 {
      margin: 0 0 0.75rem 0;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--card-fg, #EDE6DC);
    }

    .form .intro {
      margin: 0 0 2rem 0;
      font-size: 1rem;
      line-height: 1.5;
      color: var(--muted-fg, #D6CFC4);
      border-left: 3px solid var(--primary-bg, #E8A33D);
      padding-left: 1rem;
    }

    /* Поля формы — компактно, по одному */
    .form .field {
      margin-bottom: 1.5rem;
    }

    .form label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.4rem;
      color: var(--muted-fg, #D6CFC4);
      letter-spacing: 0.02em;
    }

    .form input,
    .form textarea {
      width: 100%;
      background: var(--muted-bg, #1A1815);
      border: 1px solid var(--card-border, #3A352F);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      color: var(--card-fg, #EDE6DC);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box;
    }

    .form input::placeholder,
    .form textarea::placeholder {
      color: var(--muted-fg, #D6CFC4);
      opacity: 0.7;
    }

    .form input:focus,
    .form textarea:focus {
      outline: none;
      border-color: var(--primary-bg, #E8A33D);
      box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.15);
    }

    .form textarea {
      min-height: 100px;
      resize: vertical;
    }

    /* Кнопка отправки */
    .form .submit-btn {
      background: var(--primary-bg, #E8A33D);
      color: var(--primary-fg, #1A1815);
      border: none;
      border-radius: 40px;
      padding: 0.9rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.1s ease;
      width: 100%;
      letter-spacing: 0.02em;
      margin-top: 0.5rem;
    }

    .form .submit-btn:hover {
      background: var(--primary-hover, #D18F2C);
    }

    .form .submit-btn:active {
      transform: scale(0.98);
    }

    /* Небольшая подпись под кнопкой */
    .form .note {
      margin-top: 1.25rem;
      font-size: 0.85rem;
      color: var(--muted-fg, #D6CFC4);
      text-align: center;
      border-top: 1px solid var(--card-border, #3A352F);
      padding-top: 1rem;
    }

    /* Адаптивность */
    @media (max-width: 480px) {
      .form .inner {
        padding: 2rem 1.25rem;
      }
      .form h2 {
        font-size: 1.5rem;
      }
    }

.policy-items {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 72px 24px 80px;
  }

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

  .policy-items h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .policy-items .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 48px;
    color: var(--muted-fg);
  }

  .policy-items .policy-group {
    margin-bottom: 40px;
  }

  .policy-items h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--inverse-fg);
  }

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

  .policy-items .updated {
    margin-top: 56px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--muted-fg);
  }

  @media (max-width: 640px) {
    .policy-items {
      padding: 48px 20px 56px;
    }

    .policy-items h2 {
      font-size: 1.7rem;
    }

    .policy-items .lead {
      font-size: 1rem;
      margin-bottom: 36px;
    }
  }

.terms-items {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }

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

    .terms-items h2 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin: 0 0 1.5rem 0;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .terms-items .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0 0 3rem 0;
      color: var(--inverse-fg);
      opacity: 0.85;
      max-width: 60ch;
    }

    .terms-items .rule-group {
      margin: 0 0 2.8rem 0;
      padding: 0 0 1.8rem 0;
      border-bottom: 1px solid var(--inverse-fg);
      border-bottom-color: rgba(31, 28, 24, 0.15);
    }

    .terms-items .rule-group:last-of-type {
      border-bottom: none;
      margin-bottom: 2rem;
      padding-bottom: 0;
    }

    .terms-items h3 {
      font-size: 1.4rem;
      font-weight: 500;
      margin: 0 0 0.75rem 0;
      line-height: 1.3;
      color: var(--inverse-fg);
    }

    .terms-items p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
      color: var(--inverse-fg);
      opacity: 0.9;
    }

    .terms-items .contact-note {
      margin-top: 2.5rem;
      font-size: 0.95rem;
      opacity: 0.8;
      border-top: 1px solid rgba(31, 28, 24, 0.15);
      padding-top: 1.5rem;
    }

    .terms-items .contact-note a {
      color: var(--inverse-fg);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: rgba(31, 28, 24, 0.4);
    }

    .terms-items .contact-note a:hover {
      text-decoration-color: var(--inverse-fg);
    }

    @media (max-width: 640px) {
      .terms-items {
        padding: 3rem 1.25rem;
      }

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

      .terms-items .lead {
        font-size: 1rem;
        margin-bottom: 2.5rem;
      }

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

.thank {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 80px 24px;
  }

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

  .thank h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 600;
  }

  .thank .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 32px;
    color: var(--muted-fg);
  }

  .thank .note {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 48px;
    color: var(--muted-fg);
  }

  .thank .next,
  .thank .contacts {
    border-top: 1px solid var(--card-border);
    padding-top: 32px;
    margin-bottom: 40px;
  }

  .thank h2 {
    font-size: 1.3rem;
    margin: 0 0 12px;
    font-weight: 600;
  }

  .thank p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .thank .contacts p {
    line-height: 1.8;
  }

  .thank a {
    color: var(--accent-bg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .thank a:hover {
    border-bottom-color: var(--accent-bg);
  }

.404 {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 120px 24px;
  }

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

  .404 .code {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-primary-bg, #E8A33D);
    margin: 0 0 16px;
  }

  .404 h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600;
  }

  .404 p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-fg, #D6CFC4);
    margin: 0 0 40px;
    max-width: 560px;
  }

  .404 .actions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .404 .actions a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--brand-primary-bg, #E8A33D);
    color: var(--brand-primary-fg, #1A1815);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.2s ease;
  }

  .404 .actions a:hover {
    background: var(--brand-primary-hover, #D18F2C);
  }

  .404 .actions li:last-child a {
    background: transparent;
    color: var(--page-fg);
    border: 1px solid var(--card-border, #3A352F);
  }

  .404 .actions li:last-child a:hover {
    background: var(--muted-bg, #1A1815);
  }