
  :root {
    --paper: #f8f6f1;
    --ink: #171411;
    --muted: #61574d;
    --line: #ded6c8;
    --red: #a43323;
    --gold: #f2c46f;
    --green: #242722;
    --cream: #fffaf3;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ::selection {
    background: var(--red);
    color: var(--cream);
  }

  .ds-page {
    min-height: 100vh;
    background: var(--paper);
    color: var(--ink);
  }

  .ds-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 5;
  }

  .ds-nav {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ds-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
  }

  .ds-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
  }

  .ds-nav-links a:hover {
    color: white;
  }

  .ds-hero {
    min-height: 76svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 92px 20px 52px;
    background: var(--ink);
    color: white;
  }

  .ds-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .ds-hero-shade,
  .ds-hero-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .ds-hero-shade {
    background: linear-gradient(90deg, rgba(16, 15, 13, 0.9) 0%, rgba(16, 15, 13, 0.65) 38%, rgba(16, 15, 13, 0.24) 72%, rgba(16, 15, 13, 0.46) 100%);
  }

  .ds-hero-fade {
    top: auto;
    height: 128px;
    background: linear-gradient(180deg, rgba(248, 246, 241, 0) 0%, var(--paper) 100%);
  }

  .ds-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
    gap: 40px;
    align-items: end;
  }

  .ds-kicker {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
  }

  .ds-title {
    margin: 0;
    font-size: 78px;
    line-height: 1.02;
    font-weight: 700;
  }

  .ds-lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.6;
  }

  .ds-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .ds-button {
    min-height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  }

  .ds-button-primary {
    background: var(--gold);
    color: var(--ink);
  }

  .ds-button-primary:hover {
    background: #ffd47f;
  }

  .ds-button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: white;
  }

  .ds-button-ghost:hover {
    background: white;
    color: var(--ink);
  }

  .ds-hero-aside {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.75;
  }

  .ds-band {
    padding: 76px 20px;
  }

  .ds-band-dark {
    background: var(--green);
    color: var(--cream);
  }

  .ds-container {
    width: min(100%, 1280px);
    margin: 0 auto;
  }

  .ds-two-col {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
  }

  .ds-two-col-balanced {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .ds-section-label {
    margin: 0;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
  }

  .ds-band-dark .ds-section-label {
    color: var(--gold);
  }

  .ds-heading {
    max-width: 620px;
    margin: 12px 0 0;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
  }

  .ds-copy-large {
    margin: 0;
    color: #3a332d;
    font-size: 20px;
    line-height: 1.8;
  }

  .ds-copy {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
  }

  .ds-note-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ds-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    padding: 12px 16px;
    color: #3a332d;
    font-size: 14px;
    font-weight: 700;
  }

  .ds-card-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .ds-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    padding: 24px;
  }

  .ds-card-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    object-fit: cover;
  }

  .ds-card h3,
  .ds-link-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
  }

  .ds-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
  }

  .ds-card a {
    display: inline-flex;
    margin-top: 24px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
  }

  .ds-card a:hover {
    color: #ffd47f;
  }

  .ds-link-stack {
    display: grid;
    gap: 16px;
  }

  .ds-link-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 24px;
    transition: border-color 160ms ease;
  }

  .ds-link-card:hover {
    border-color: var(--red);
  }

  .ds-link-card .ds-section-label {
    margin-bottom: 8px;
  }

  .ds-link-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .ds-contact {
    border-top: 1px solid var(--line);
    padding: 56px 20px;
  }

  .ds-contact-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .ds-contact h2 {
    margin: 8px 0 0;
    font-size: 30px;
    line-height: 1.2;
  }

  .ds-contact p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .ds-domain {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .ds-domain:hover {
    color: var(--red);
  }

  .ds-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
  }

  @media (max-width: 920px) {
    .ds-hero-inner,
    .ds-two-col,
    .ds-two-col-balanced,
    .ds-card-grid {
      grid-template-columns: 1fr;
    }

    .ds-hero-aside {
      display: none;
    }

    .ds-title {
      font-size: 62px;
    }
  }

  @media (max-width: 640px) {
    .ds-nav-links {
      display: none;
    }

    .ds-hero {
      min-height: 82svh;
      padding: 84px 20px 38px;
    }

    .ds-title {
      font-size: 42px;
    }

    .ds-lead {
      font-size: 17px;
    }

    .ds-band {
      padding: 60px 20px;
    }

    .ds-heading {
      font-size: 36px;
    }

    .ds-note-grid {
      grid-template-columns: 1fr;
    }

    .ds-contact-inner {
      align-items: flex-start;
      flex-direction: column;
    }

    .ds-footer-links {
      justify-content: flex-start;
    }
  }



  :root {
    --paper: #f8f6f1;
    --ink: #171411;
    --muted: #61574d;
    --line: #ded6c8;
    --red: #a43323;
    --gold: #f2c46f;
    --green: #242722;
    --cream: #fffaf3;
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
  }

  a {
    color: inherit;
  }

  .legal-page {
    min-height: 100vh;
    background: var(--paper);
  }

  .legal-header {
    background: var(--green);
    color: var(--cream);
    padding: 28px 20px 72px;
  }

  .legal-nav,
  .legal-main,
  .legal-footer {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
  }

  .legal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .legal-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .legal-nav-links {
    display: flex;
    gap: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
  }

  .legal-nav-links a {
    text-decoration: none;
  }

  .legal-nav-links a:hover {
    color: white;
  }

  .legal-hero {
    width: min(100% - 40px, 980px);
    margin: 58px auto 0;
  }

  .legal-kicker {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
  }

  .legal-title {
    margin: 0;
    font-size: 58px;
    line-height: 1.05;
  }

  .legal-intro {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
  }

  .legal-main {
    padding: 64px 0 72px;
  }

  .legal-section {
    border-top: 1px solid var(--line);
    padding: 34px 0;
  }

  .legal-section:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .legal-section h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.25;
  }

  .legal-section h3 {
    margin: 26px 0 10px;
    font-size: 20px;
  }

  .legal-section p,
  .legal-section li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
  }

  .legal-section p {
    margin: 0 0 14px;
  }

  .legal-section ul {
    margin: 0;
    padding-left: 20px;
  }

  .legal-address {
    margin: 0;
    color: #3a332d;
    font-size: 17px;
    line-height: 1.75;
    font-style: normal;
  }

  .legal-warning {
    border: 1px solid rgba(164, 51, 35, 0.28);
    border-radius: 8px;
    background: rgba(164, 51, 35, 0.08);
    padding: 16px;
    color: #6b271d;
    font-size: 15px;
    line-height: 1.6;
  }

  .legal-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
  }

  .legal-footer a {
    color: var(--ink);
    font-weight: 700;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  @media (max-width: 640px) {
    .legal-nav,
    .legal-footer {
      align-items: flex-start;
      flex-direction: column;
    }

    .legal-nav-links {
      flex-wrap: wrap;
    }

    .legal-title {
      font-size: 42px;
    }

    .legal-header {
      padding-bottom: 56px;
    }

    .legal-main {
      padding-top: 48px;
    }
  }

