    :root {
      --bg: #f8f4ec;
      --paper: #fffaf2;
      --ink: #2f2a24;
      --muted: #6f6558;
      --gold: #b98b3c;
      --green: #496b50;
      --soft-green: #e8efe6;
      --line: #e1d6c5;
      --shadow: 0 20px 60px rgba(47, 42, 36, 0.12);
    }

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

    body {
      font-family: Georgia, 'Times New Roman', serif;
      background: radial-gradient(circle at top, #fff7e7 0%, var(--bg) 45%, #efe4d4 100%);
      color: var(--ink);
      line-height: 1.7;
    }

    .site-wrap {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    header {
      padding: 28px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .mark {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--green), #6f8b67);
      color: white;
      font-weight: bold;
      letter-spacing: 1px;
      box-shadow: var(--shadow);
    }

    .brand h1 {
      font-size: clamp(1.1rem, 3vw, 1.45rem);
      line-height: 1.1;
    }

    .brand p {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .language-toggle {
      display: flex;
      background: rgba(255, 250, 242, 0.8);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 5px;
      box-shadow: 0 10px 30px rgba(47, 42, 36, 0.08);
    }

    .language-toggle button {
      border: 0;
      background: transparent;
      color: var(--muted);
      padding: 9px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-family: Arial, sans-serif;
    }

    .language-toggle button.active {
      background: var(--green);
      color: white;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(73, 107, 80, 0.96), rgba(47, 67, 52, 0.96)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      border-radius: 34px;
      padding: clamp(44px, 8vw, 92px);
      box-shadow: var(--shadow);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 24px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 26px;
      pointer-events: none;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-family: Arial, sans-serif;
      font-size: 0.78rem;
      color: #f3d79a;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .hero h2 {
      max-width: 780px;
      font-size: clamp(2.4rem, 7vw, 5.2rem);
      line-height: 0.98;
      margin-bottom: 24px;
    }

    .hero p {
      max-width: 720px;
      font-size: clamp(1.05rem, 2.4vw, 1.35rem);
      color: rgba(255, 255, 255, 0.88);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
      font-family: Arial, sans-serif;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.2s ease;
      gap: 8px;
    }

    .language-toggle button,
    .btn,
    .button,
    a.btn {
      cursor: pointer;
    }

    .btn.primary {
      background: #f3d79a;
      color: #2f2a24;
    }

    .btn.secondary {
      border: 1px solid rgba(255,255,255,0.4);
      color: white;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .section {
      padding: clamp(52px, 8vw, 88px) 0 0;
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-heading .eyebrow {
      color: var(--gold);
      margin-bottom: 8px;
    }

    .section-heading h3 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
      margin-bottom: 14px;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .preamble-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: clamp(28px, 5vw, 52px);
      box-shadow: var(--shadow);
      font-size: 1.1rem;
    }

    .preamble-card p + p {
      margin-top: 18px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .value-card, .principle-card {
      background: rgba(255, 250, 242, 0.86);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 26px;
      box-shadow: 0 14px 38px rgba(47, 42, 36, 0.08);
    }

    .value-card span {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--soft-green);
      color: var(--green);
      font-family: Arial, sans-serif;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .value-card h4, .principle-card h4 {
      font-size: 1.28rem;
      margin-bottom: 8px;
    }

    .value-card p, .principle-card p {
      color: var(--muted);
      font-family: Arial, sans-serif;
      line-height: 1.55;
    }

    .mission-band {
      background: var(--green);
      color: white;
      border-radius: 30px;
      padding: clamp(34px, 6vw, 62px);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 32px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .mission-band h3 {
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.05;
    }

    .mission-band p {
      color: rgba(255,255,255,0.86);
      font-size: 1.16rem;
    }

    .principles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .constitution-list {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .constitution-item {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 18px;
      padding: 26px;
      border-bottom: 1px solid var(--line);
    }

    .constitution-item:last-child {
      border-bottom: 0;
    }

    .number {
      font-family: Arial, sans-serif;
      color: var(--gold);
      font-weight: 800;
      font-size: 1.8rem;
    }

    .constitution-item h4 {
      font-size: 1.35rem;
      margin-bottom: 8px;
    }

    .constitution-item p, .constitution-item li {
      color: var(--muted);
      font-family: Arial, sans-serif;
    }

    ul {
      padding-left: 18px;
    }

    .final-message {
      text-align: center;
      background: linear-gradient(135deg, #fffaf2, #efe4d4);
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: clamp(36px, 7vw, 74px);
      box-shadow: var(--shadow);
      margin-bottom: 70px;
    }

    .final-message h3 {
      font-size: clamp(2rem, 5vw, 3.6rem);
      line-height: 1.05;
      margin-bottom: 18px;
    }

    .final-message p {
      max-width: 760px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1.17rem;
    }

    footer {
      padding: 26px 0 46px;
      text-align: center;
      color: var(--muted);
      font-family: Arial, sans-serif;
      font-size: 0.92rem;
    }

    [data-lang="es"] {
      display: none;
    }

    body.spanish [data-lang="en"] {
      display: none;
    }

    body.spanish [data-lang="es"] {
      display: revert;
    }

    body.spanish .values-grid[data-lang="es"],
    body.spanish .principles-grid[data-lang="es"] {
      display: grid;
    }

    body.spanish .constitution-list[data-lang="es"] {
      display: block;
    }

    @media (max-width: 820px) {
      header {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero {
        border-radius: 24px;
      }

      .values-grid,
      .principles-grid,
      .mission-band {
        grid-template-columns: 1fr;
      }

      .constitution-item {
        grid-template-columns: 1fr;
      }
    }
