
    :root {
      --bg: #DCE9E4;
      --bg-soft: #C7D8D2;
      --accent-mid: #8BAFA3;
      --primary: #598F79;
      --primary-dark: #063629;
      --card-bg: #ffffff;
      --border: #C7D8D2;
      --text-main: #063629;
      --text-muted: #4b5563;
      --radius: 14px;
      --shadow: 0 12px 24px rgba(15,23,42,0.12);
    }

    *{margin:0; padding:0; box-sizing:border-box;}
    body{
      font-family:"Inter",sans-serif;
      background:var(--bg);
      color:var(--text-main);
      line-height:1.6;
    }
    .wrapper{
      max-width:1100px;
      margin:0 auto;
      padding:24px 16px 40px;
    }

    .page-header{margin-bottom:20px;}
    .page-kicker{
      font-size:13px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color:var(--text-muted);
      margin-bottom:6px;
    }
    .page-title{
      font-family:"Playfair Display",serif;
      font-size:26px;
      color:var(--primary-dark);
      margin-bottom:6px;
    }
    .page-subtitle{
      font-size:14px;
      color:var(--text-muted);
      max-width:640px;
    }
    .accent-line{
      width:60px;
      height:3px;
      background:var(--accent-mid);
      border-radius:2px;
      margin:14px 0 16px;
    }

    .card{
      background:var(--card-bg);
      border-radius:var(--radius);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:16px;
    }

    /* about + timeline */
    .about-row{
      display:grid;
      grid-template-columns:1.3fr 1.1fr;
      gap:14px;
      margin-bottom:18px;
    }
    .about-row h2{
      font-size:18px;
      margin-bottom:6px;
      color:var(--primary-dark);
    }
    .about-row p{
      font-size:14px;
    }

    .timeline{
      list-style:none;
      font-size:13px;
      position:relative;
      padding-left:18px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:7px;
      top:2px;
      bottom:2px;
      width:2px;
      background:#8BAFA3;
    }
    .timeline li{
      margin-bottom:8px;
      position:relative;
    }
    .timeline li::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:#598F79;
      position:absolute;
      left:-2px;
      top:4px;
    }
    .timeline span{
      font-weight:600;
      display:block;
      margin-bottom:2px;
    }

    /* focus cards */
    .focus-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .focus-card{
      background:#f4faf7;
      border-radius:12px;
      border:1px solid #d4e4dd;
      padding:12px;
      font-size:13px;
    }
    .focus-icon{
      width:30px;
      height:30px;
      border-radius:999px;
      background:#e1efe9;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--primary-dark);
      margin-bottom:6px;
      font-size:14px;
    }
    .focus-title{
      font-weight:600;
      margin-bottom:4px;
    }

    @media(max-width:880px){
      .about-row{grid-template-columns:1fr;}
      .focus-grid{grid-template-columns:1fr 1fr;}
    }
    @media(max-width:600px){
      .focus-grid{grid-template-columns:1fr;}
      .page-title{font-size:22px;}
    }
  