  :root {
    --bg: #fdfaf3;
    --ink: #1c1730;
    --ink-soft: #4d4566;
    --purple: #7c3aed;
    --pink: #ec4899;
    --orange: #fb923c;
    --yellow: #facc15;
    --teal: #14b8a6;
    --blue: #3b82f6;
    --card-border: #1c1730;
  }

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

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px;
  }

  /* ---------- HERO ---------- */
  header.hero {
    position: relative;
    padding: 130px 0 110px;
    background: linear-gradient(120deg, #7c3aed 0%, #ec4899 45%, #fb923c 100%);
    overflow: hidden;
  }

  header.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    top: -180px;
    right: -120px;
  }

  header.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -140px;
    left: -80px;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 34px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero-title {
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 3px 3px 0 rgba(28, 23, 48, 0.25);
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.94);
    max-width: 640px;
    font-weight: 500;
  }

  .hero-chips {
    margin-top: 44px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .chip {
    background: #ffffff;
    border: 2px solid var(--ink);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
  }

  /* ---------- SECTION SHELL ---------- */
  section {
    padding: 100px 0;
  }

  .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
  }

  .section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    max-width: 680px;
    margin-bottom: 22px;
  }

  .section-lead {
    font-size: 1.08rem;
    color: var(--ink-soft);
    max-width: 680px;
    font-weight: 500;
  }

  /* ---------- MISSION (cards) ---------- */
  .mission { background: var(--bg); }
  .mission .section-label { background: var(--teal); color: #ffffff; }

  .grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
  }

  .card {
    background: #ffffff;
    border: 3px solid var(--ink);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .card .dot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    border: 2px solid var(--ink);
  }

  .card:nth-child(1) .dot { background: var(--purple); }
  .card:nth-child(2) .dot { background: var(--pink); }
  .card:nth-child(3) .dot { background: var(--orange); }
  .card:nth-child(4) .dot { background: var(--teal); }

  .card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* ---------- PRACTICES ---------- */
  .practices { background: #f2ecff; }
  .practices .section-label { background: var(--purple); color: #ffffff; }

  .practice-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .practice-row {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 3px solid var(--ink);
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .practice-row .letter-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
  }

  .practice-row:nth-child(1) .letter-box { background: var(--blue); }
  .practice-row:nth-child(2) .letter-box { background: var(--pink); }
  .practice-row:nth-child(3) .letter-box { background: var(--orange); }

  .practice-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .practice-text p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* ---------- VALUES ---------- */
  .values { background: var(--bg); }
  .values .section-label { background: var(--orange); color: #ffffff; }

  .values-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }

  .value-item {
    border: 3px solid var(--ink);
    border-radius: 18px;
    padding: 26px 24px;
    background: #ffffff;
  }

  .value-item:nth-child(1) { background: #fff4d6; }
  .value-item:nth-child(2) { background: #ffe3ef; }
  .value-item:nth-child(3) { background: #e2f7f2; }
  .value-item:nth-child(4) { background: #e8e0ff; }

  .value-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .value-item p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* ---------- CONTACT ---------- */
  footer.contact {
    background: var(--ink);
    color: #ffffff;
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
  }

  footer.contact::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 70%);
    top: -140px;
    right: -60px;
  }

  .contact-inner { position: relative; z-index: 1; }

  .contact-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--ink);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
  }

  footer.contact h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    font-weight: 800;
    max-width: 600px;
    margin-bottom: 54px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }

  .contact-block {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 24px 22px;
  }

  .contact-block .k {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .contact-block .v {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
  }

  .colophon {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  @media (max-width: 640px) {
    header.hero { padding: 100px 0 80px; }
    section { padding: 70px 0; }
    .practice-row { grid-template-columns: 1fr; }
  }
