    :root {
      --bg: #f7f4ef;
      --text: #23211f;
      --muted: #706b64;
      --card: rgba(255, 255, 255, 0.68);
      --border: rgba(35, 33, 31, 0.12);
      --accent: #7c5c3e;
      --accent-dark: #4f3826;
      --shadow: 0 24px 70px rgba(34, 27, 20, 0.12);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(124, 92, 62, 0.16), transparent 34rem),
        linear-gradient(135deg, #f7f4ef 0%, #ede4d8 100%);
      color: var(--text);
      line-height: 1.6;
    }

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

    .page {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 16px;
      z-index: 10;
      padding: 16px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 18px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(247, 244, 239, 0.74);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 40px rgba(34, 27, 20, 0.08);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--text);
      color: var(--bg);
      font-size: 0.9rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.95rem;
      transition: background 180ms ease, color 180ms ease;
    }

    .nav-links a:hover {
      background: rgba(35, 33, 31, 0.07);
      color: var(--text);
    }

    .hero {
      min-height: calc(100vh - 90px);
      display: grid;
      align-items: center;
      padding: 72px 0 96px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      width: fit-content;
      margin-bottom: 22px;
      padding: 8px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--accent-dark);
      background: rgba(255, 255, 255, 0.44);
      font-size: 0.9rem;
    }

    h1 {
      /* max-width: 820px; */
      font-family: "Noto Sans Lao Looped", Georgia, "Times New Roman", serif;
      /* font-family: Georgia, "Times New Roman", serif; */
      /* font-size: clamp(3.2rem, 8vw, 7rem); */
      font-size: clamp(3.2rem, 8vw, 6rem);
      line-height: 0.92;
      letter-spacing: -0.07em;
      font-weight: 500;
    }

    .hero p {
      max-width: 620px;
      margin-top: 28px;
      color: var(--muted);
      font-size: clamp(1rem, 2vw, 1.18rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 650;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .button.primary {
      background: var(--text);
      color: var(--bg);
      box-shadow: 0 16px 36px rgba(35, 33, 31, 0.18);
    }

    .button.secondary {
      border: 1px solid var(--border);
      color: var(--text);
      background: rgba(255, 255, 255, 0.38);
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .profile-card {
      position: relative;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: 32px;
      background: var(--card);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .profile-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(124, 92, 62, 0.2), transparent 16rem);
      pointer-events: none;
    }

    .portrait {
      position: relative;
      min-height: 340px;
      display: grid;
      place-items: center;
      border-radius: 24px;
      background:
        linear-gradient(145deg, rgba(35, 33, 31, 0.9), rgba(124, 92, 62, 0.76)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=80");
      background-size: cover;
      background-position: center;
      color: #fff;
      isolation: isolate;
      overflow: hidden;
    }

    .portrait::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.22);
      z-index: -1;
    }

    .portrait span {
      width: 112px;
      height: 112px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(8px);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 3rem;
    }

    .card-meta {
      position: relative;
      display: grid;
      gap: 8px;
      margin-top: 20px;
    }

    .card-meta strong {
      font-size: 1.2rem;
    }

    .card-meta small {
      color: var(--muted);
      font-size: 0.95rem;
    }

    section:not(.hero) {
      padding: 96px 0;
      border-top: 1px solid var(--border);
    }

    .section-heading {
      display: grid;
      gap: 12px;
      /* max-width: 720px; */
      margin-bottom: 34px;
    }

    .section-heading h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2rem, 5vw, 3.8rem);
      line-height: 1;
      letter-spacing: -0.05em;
      font-weight: 500;
    }

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

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

    .card {
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.5);
      box-shadow: 0 16px 44px rgba(34, 27, 20, 0.08);
    }

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

    .card p {
      color: var(--muted);
    }

    .card a {
      margin-top: 22px;
      color: var(--accent-dark);
      font-weight: 700;
    }

    .journal-list {
      display: grid;
      gap: 14px;
    }

    .journal-item {
      display: grid;
      grid-template-columns: 140px 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.5);
      transition: transform 180ms ease, background 180ms ease;
    }

    .journal-item:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.72);
    }

    .journal-item time,
    .journal-item span {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .journal-item h3 {
      font-size: 1.12rem;
    }

    footer {
      padding: 42px 0 56px;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 820px) {
      .nav {
        align-items: flex-start;
        border-radius: 28px;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .hero-grid,
      .cards,
      .journal-item {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 36px;
      }

      .profile-card {
        order: -1;
      }

      .journal-item {
        gap: 8px;
      }
    }

    @media (max-width: 560px) {
      .page {
        width: min(100% - 24px, 1120px);
      }

      .nav {
        display: grid;
        gap: 12px;
      }

      .nav-links {
        justify-content: flex-start;
      }

      .nav-links a {
        padding: 8px 10px;
      }

      .portrait {
        min-height: 260px;
      }
    }

