    :root {
      --cream: #f5f1e9;
      --cream-light: #faf8f3;
      --forest: #29352d;
      --olive: #5d6855;
      --gold: #a88d62;
      --text: #30342f;
      --muted: #6d716b;
      --white: #ffffff;
      --serif: Georgia, "Times New Roman", serif;
      --sans: Arial, Helvetica, sans-serif;
      --max-width: 900px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      color: var(--text);
      background: var(--cream-light);
      line-height: 1.7;
    }

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

    .header {
      background: var(--forest);
      color: var(--white);
    }

    .nav {
      width: min(100% - 48px, 1180px);
      margin: 0 auto;
      min-height: 82px;

      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: var(--serif);
      font-size: 1.15rem;
      letter-spacing: 0.05em;
    }

    .back {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.8);
    }

    .back:hover {
      color: var(--white);
    }

    main {
      width: min(100% - 48px, var(--max-width));
      margin: 0 auto;
      padding: 120px 0;
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.72rem;
      font-weight: 600;
      margin-bottom: 18px;
    }

    h1 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 1.1;
      color: var(--forest);
      margin-bottom: 70px;
    }

    .legal-section {
      padding: 35px 0;
      border-top: 1px solid #ddd4c5;
    }

    .legal-section h2 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.8rem;
      color: var(--forest);
      margin-bottom: 20px;
    }

    .placeholder {
      color: var(--muted);
      min-height: 30px;
    }

    footer {
      background: var(--forest);
      color: rgba(255,255,255,0.7);
      padding: 35px 0;
    }

    .footer-inner {
      width: min(100% - 48px, 1180px);
      margin: 0 auto;

      display: flex;
      justify-content: space-between;
      gap: 20px;

      font-size: 0.75rem;
    }

    @media (max-width: 600px) {

      .nav {
        width: min(100% - 32px, 1180px);
      }

      main {
        width: min(100% - 32px, var(--max-width));
        padding: 80px 0;
      }

      h1 {
        font-size: 3rem;
      }

      .footer-inner {
        width: min(100% - 32px, 1180px);
        flex-direction: column;
      }
    }