  :root{
    --paper:#F7F6F1;
    --card:#FFFFFF;
    --ink:#211E1A;
    --ink-soft:#5C564C;
    --line:#E4E0D5;

    --pine:#2F5233;
    --pine-dark:#1F3A24;
    --pine-tint:#E1E8E0;
    --amber:#C98A2C;
    --amber-tint:#F6E8CE;
    --slate:#46545A;
  }
  *{box-sizing:border-box;}
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  html{ overflow-x:hidden; }
  body{ overflow-x:hidden; width:100%; }
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:1140px; margin:0 auto; padding:0 28px;}
  @media (max-width:480px){ .wrap{padding:0 18px;} }
  .display{font-family:'Archivo', sans-serif;}

  /* ---------- header ---------- */
  header{padding:22px 0; border-bottom:1px solid var(--line);}
  .header-row{display:flex; align-items:center; justify-content:space-between; gap:20px;}
  .logo{display:flex; align-items:center; gap:9px; font-weight:800; font-size:18px; letter-spacing:-0.2px;}
  .logo svg{flex:none;}
  nav.primary-nav{display:flex; gap:28px; font-size:14.5px; color:var(--ink-soft); font-weight:500;}
  nav.primary-nav a:hover{color:var(--ink);}
  @media (max-width:760px){ nav.primary-nav{display:none;} }
  .header-actions{font-size:13.5px; color:var(--ink-soft); flex:none;}
  .header-actions a{border-bottom:1px solid var(--line);}
  .header-actions a:hover{color:var(--ink); border-color:var(--ink);}

  /* ---------- hero ---------- */
  .hero{
    padding:64px 0 60px;
    display:grid;
    grid-template-columns:1fr 0.92fr;
    gap:56px;
    align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    background:#ffca0e; color:var(--pine-dark);
    padding:7px 14px; border-radius:999px; font-size:13px; font-weight:600;
    margin-bottom:22px;
  }
  .hero h1{
    font-weight:800; font-size:clamp(30px,4.2vw,44px); line-height:1.14;
    letter-spacing:-0.5px; margin:0 0 18px;
  }
  .hero p.lede{
    font-size:16.5px; line-height:1.65; color:var(--ink-soft);
    max-width:48ch; margin:0 0 28px;
  }

  .capture-form{
    display:flex; gap:10px; max-width:440px; flex-wrap:wrap;
  }
  .capture-form input{
    flex:1; min-width:180px; border:1px solid var(--line); border-radius:8px;
    padding:14px 16px; font-family:'Inter',sans-serif; font-size:15px; outline:none; color:var(--ink);
    background:var(--card);
  }
  .capture-form input:focus{ border-color:var(--pine); }
  .capture-form button{
    border:none; border-radius:8px; background:var(--pine); color:#fff;
    padding:14px 22px; font-size:15px; font-weight:700; cursor:pointer; flex:none;
    white-space:nowrap;
  }
  .capture-form button:hover{ background:var(--pine-dark); }
  @media (max-width:480px){
    .capture-form{ flex-direction:column; max-width:100%; }
    .capture-form input{ width:100%; min-width:0; }
    .capture-form button{ width:100%; }
  }
  .form-note{ margin-top:12px; font-size:13px; color:var(--ink-soft); }
  .form-note svg{ vertical-align:-2px; margin-right:5px; }

  .form-success{
    display:none; align-items:center; gap:10px; max-width:440px;
    background:var(--pine-tint); border:1px solid var(--pine); border-radius:8px;
    padding:16px 18px; font-size:14.5px; color:var(--pine-dark); font-weight:600;
  }
  @media (max-width:480px){ .form-success{ max-width:100%; } }

  /* checklist mock */
  .checklist-mock{
    background:var(--card); border:1px solid var(--line); border-radius:14px;
    padding:26px 28px 22px;
    box-shadow:0 24px 48px -24px rgba(33,30,26,0.22);
    transform:rotate(1.2deg);
    position:relative;
  }
  .checklist-mock::before{
    content:"";
    position:absolute; inset:0; border-radius:14px;
    background:var(--card); border:1px solid var(--line);
    transform:rotate(-2.4deg);
    z-index:-1;
  }
  .checklist-badge{
    position:absolute; top:-14px; right:18px;
    background:#e0ff2b; color:#2A1B04;
    font-size:12.5px; font-weight:700; padding:7px 12px; border-radius:999px;
    transform:rotate(-3deg);
    box-shadow:0 6px 14px -6px rgba(0,0,0,0.3);
  }
  .checklist-mock h4{ font-weight:800; font-size:13px; letter-spacing:0.03em; color:var(--pine); margin:0 0 4px; }
  .checklist-mock .doc-title{ font-weight:800; font-size:19px; margin:0 0 16px; }
  .cl-row{
    display:flex; align-items:flex-start; gap:10px; padding:9px 0; border-bottom:1px dashed var(--line);
    font-size:14px;
  }
  .cl-row:last-child{ border-bottom:none; }
  .cl-box{
    width:16px; height:16px; border-radius:4px; border:1.5px solid var(--ink-soft);
    flex:none; margin-top:2px;
  }
  .cl-box.checked{ background:var(--pine); border-color:var(--pine); position:relative; }
  .cl-box.checked::after{
    content:""; position:absolute; left:3px; top:0px; width:4px; height:8px;
    border-right:2px solid #fff; border-bottom:2px solid #fff; transform:rotate(40deg);
  }
  .cl-row .item{ color:var(--ink); }
  .cl-row .qty{ color:var(--ink-soft); font-size:12.5px; }
  .cl-more{ text-align:center; font-size:12.5px; color:var(--ink-soft); padding-top:12px; }

  @media (max-width:900px){
    .hero{grid-template-columns:1fr; padding:48px 0 52px;}
    .checklist-mock{ order:-1; max-width:380px; margin:0 auto 10px; transform:rotate(0.6deg); }
  }

  /* ---------- stat bar ---------- */
  .stat-bar{
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:36px 0;
    display:grid; grid-template-columns:repeat(3,1fr); gap:24px; text-align:center;
  }
  .stat-bar .num{ font-family:'Archivo',sans-serif; font-weight:800; font-size:32px; color:var(--pine); }
  .stat-bar .label{ font-size:13.5px; color:var(--ink-soft); margin-top:4px; }
  @media (max-width:640px){ .stat-bar{grid-template-columns:1fr; gap:22px;} }

  /* ---------- categories ---------- */
  .section-head{ text-align:center; padding:64px 0 12px; }
  .section-head h2{ font-weight:800; font-size:28px; margin:0 0 12px; }
  .section-head p{ color:var(--ink-soft); font-size:15px; max-width:52ch; margin:0 auto; }

  .cat-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding:40px 0 8px;
  }
  .cat-card{
    background:var(--card); border:1px solid var(--line); border-radius:12px;
    padding:22px 18px;
  }
  .cat-card .icn{
    width:38px; height:38px; border-radius:10px; background:var(--pine-tint); color:var(--pine-dark);
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  }
  .cat-card h4{ font-weight:700; font-size:14.5px; margin:0 0 4px; }
  .cat-card .count{ font-size:12.5px; color:var(--ink-soft); }
  @media (max-width:900px){ .cat-grid{grid-template-columns:repeat(3,1fr);} }
  @media (max-width:600px){ .cat-grid{grid-template-columns:repeat(2,1fr);} }

  /* ---------- why section ---------- */
  .why{
    display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
    padding:70px 0;
  }
  .why h2{ font-weight:800; font-size:27px; line-height:1.25; margin:0 0 18px; }
  .why p{ color:var(--ink-soft); font-size:15px; line-height:1.7; margin:0 0 16px; max-width:46ch; }
  .why-list{ list-style:none; margin:22px 0 0; padding:0; display:flex; flex-direction:column; gap:14px; }
  .why-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
  .why-list .check{
    width:20px; height:20px; border-radius:50%; background:var(--pine); color:#fff; flex:none;
    display:flex; align-items:center; justify-content:center; margin-top:1px;
  }
  .why-visual{
    background:var(--pine-dark); border-radius:16px; padding:34px; color:#fff;
    display:flex; flex-direction:column; gap:16px;
  }
  .why-visual .row{ display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid rgba(255,255,255,0.12); padding-bottom:14px; }
  .why-visual .row:last-child{ border-bottom:none; padding-bottom:0; }
  .why-visual .row .k{ font-size:13.5px; color:#C7D2C8; }
  .why-visual .row .v{ font-family:'Archivo',sans-serif; font-weight:700; font-size:15px; }
  @media (max-width:900px){ .why{grid-template-columns:1fr;} .why-visual{order:-1;} }

  /* ---------- articles ---------- */
  .article-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:28px; padding:40px 0 8px;
  }
  .article-card{
    background:var(--card); border:1px solid var(--line); border-radius:12px;
    padding:24px; display:flex; flex-direction:column;
  }
  .article-card .art{
    aspect-ratio:16/10; border-radius:8px; margin-bottom:18px;
    display:flex; align-items:flex-end; padding:14px;
  }
  .article-card .art.a1{background:linear-gradient(150deg,var(--pine-tint),#fff 70%);}
  .article-card .art.a2{background:linear-gradient(150deg,var(--amber-tint),#fff 70%);}
  .article-card .art.a3{background:linear-gradient(150deg,#E4E9EA,#fff 70%);}
  .article-card .art.a4{background:linear-gradient(150deg,var(--pine-tint),var(--amber-tint));}
  .article-card .art.a5{background:linear-gradient(150deg,#E4E9EA,var(--pine-tint));}
  .article-card .art.a6{background:linear-gradient(150deg,var(--amber-tint),#E4E9EA);}
  .article-card .cat-label{
    font-size:12px; font-weight:700; color:var(--pine); letter-spacing:0.02em;
  }
  .article-card h4{ font-weight:700; font-size:16.5px; line-height:1.35; margin:10px 0 8px; }
  .article-card p{ color:var(--ink-soft); font-size:13.5px; line-height:1.6; margin:0 0 14px; flex:1; }
  .article-card .meta{ font-size:12px; color:var(--ink-soft); opacity:0.85; }
  @media (max-width:900px){ .article-grid{grid-template-columns:1fr 1fr;} }
  @media (max-width:600px){ .article-grid{grid-template-columns:1fr;} }

  .view-all-row{ text-align:center; margin:36px 0 12px; }
  .btn-outline-pine{
    display:inline-flex; align-items:center; justify-content:center;
    padding:11px 22px; border-radius:8px; font-size:14.5px; font-weight:600;
    border:1px solid var(--ink); color:var(--ink); background:transparent; cursor:pointer;
  }
  .btn-outline-pine:hover{ background:var(--ink); color:var(--paper); }

  /* ---------- cta band ---------- */
  .cta-band{
    background:var(--pine-dark); color:#fff; border-radius:20px;
    padding:54px 44px; margin:20px 0 90px;
    text-align:center;
  }
  .cta-band h3{ font-weight:800; font-size:28px; margin:0 0 12px; }
  .cta-band p{ color:#C7D2C8; font-size:15px; margin:0 0 28px; max-width:48ch; margin-left:auto; margin-right:auto; }
  .cta-band .capture-form{ margin:0 auto; }
  .cta-band .capture-form input{ background:#28422C; border-color:#3B5540; color:#fff; }
  .cta-band .capture-form input::placeholder{ color:#9AAB9C; }
  .cta-band .capture-form button{ background:#f6ff00; color:#2A1B04; }
  .cta-band .capture-form button:hover{ background:#B87B24; }
  .cta-band .form-note{ color:#9AAB9C; }
  .cta-band .form-success{ margin:0 auto; }
  @media (max-width:600px){ .cta-band{padding:40px 24px;} }

  /* ---------- footer ---------- */
  footer{ background:var(--ink); color:#B9B4AA; }
  .footer-row{
    padding:52px 0 32px; display:grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,1fr) minmax(0,1fr);
    gap:40px;
  }
  .footer-brand, .footer-links{ min-width:0; padding-left:20px; padding-right:20px; }
  .footer-brand .logo{ color:#fff; margin-bottom:14px; }
  .footer-brand p{ font-size:13.5px; line-height:1.7; color:#8C877D; margin:0; max-width:34ch; }
  .footer-links h5{ color:#fff; font-size:13px; font-weight:700; margin:0 0 16px; }
  .footer-links ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; font-size:14px; }
  .footer-links a{ color:#8C877D; }
  .footer-links a:hover{ color:#fff; }
  .footer-bottom{
    border-top:1px solid #33302A; padding:22px 0 max(22px, env(safe-area-inset-bottom));
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px 20px;
    align-items:center; font-size:13px; color:#6E6A61;
  }
  @media (max-width:700px){ .footer-row{grid-template-columns:1fr; gap:30px;} }
  @media (max-width:600px){ .footer-bottom{flex-direction:column; gap:12px; align-items:flex-start;} }

  :focus-visible{ outline:2px solid var(--pine); outline-offset:2px; }

  /* ---------- article page ---------- */
  .article-head{ max-width:720px; margin:0 auto; padding:52px 0 32px; }
  .article-head h1{
    font-weight:800; font-size:clamp(28px,4.2vw,40px); line-height:1.18;
    letter-spacing:-0.4px; margin:14px 0 16px;
  }
  .article-head .dek{ font-size:16.5px; line-height:1.6; color:var(--ink-soft); margin:0 0 24px; max-width:56ch; }
  .byline{ display:flex; align-items:center; gap:12px; padding-top:20px; border-top:1px solid var(--line); }
  .byline .avatar{ width:36px; height:36px; border-radius:50%; flex:none; background:linear-gradient(135deg, var(--pine), var(--amber)); }
  .byline .who{ font-size:14px; font-weight:600; }
  .byline .meta{ font-size:13px; color:var(--ink-soft); }

  .article-hero-card{
    max-width:820px; margin:0 auto; background:var(--card); border:1px solid var(--line);
    border-radius:14px; padding:26px 28px; text-align:center;
  }
  .article-hero-card .stat-row{ display:flex; justify-content:center; gap:36px; flex-wrap:wrap; }
  .article-hero-card .stat-row .n{ font-family:'Archivo',sans-serif; font-weight:800; font-size:26px; color:var(--pine); }
  .article-hero-card .stat-row .l{ font-size:12.5px; color:var(--ink-soft); margin-top:2px; }

  .article-body{ max-width:680px; margin:0 auto; padding:44px 0 8px; font-size:17px; line-height:1.78; color:var(--ink); }
  .article-body p{ margin:0 0 24px; }
  .article-body h2{ font-family:'Archivo',sans-serif; font-weight:800; font-size:23px; margin:40px 0 16px; }
  .article-body ul.plain{ margin:0 0 26px; padding-left:20px; }
  .article-body ul.plain li{ margin-bottom:10px; line-height:1.6; }

  .pull-quote{
    margin:34px 0; padding-left:20px; border-left:3px solid var(--amber);
    font-family:'Archivo', sans-serif; font-weight:700; font-size:20px; line-height:1.4; color:var(--ink);
  }

  .step-list{ list-style:none; margin:0 0 28px; padding:0; counter-reset:step; }
  .step-list li{ counter-increment:step; display:grid; grid-template-columns:32px 1fr; gap:16px; padding:15px 0; border-bottom:1px solid var(--line); }
  .step-list li:first-child{ padding-top:0; }
  .step-list li::before{
    content:counter(step); font-family:'Archivo', sans-serif; font-weight:700; font-size:13px;
    width:28px; height:28px; border-radius:50%; background:var(--pine-tint); color:var(--pine-dark);
    display:flex; align-items:center; justify-content:center;
  }
  .step-list strong{ display:block; font-size:15px; margin-bottom:3px; }
  .step-list span.step-text{ font-size:14px; color:var(--ink-soft); line-height:1.6; }

  .article-tags{ max-width:680px; margin:0 auto; padding:8px 0 40px; display:flex; gap:10px; flex-wrap:wrap; }
  .article-tags a{ font-size:13px; padding:7px 13px; border-radius:999px; border:1px solid var(--line); color:var(--ink-soft); }
  .article-tags a:hover{ border-color:var(--ink); color:var(--ink); }

  .related-head{ max-width:1140px; margin:0 auto; }

  .article-nav{
    max-width:1140px; margin:20px auto 0; display:grid; grid-template-columns:1fr 1fr;
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .article-nav a{ padding:24px 4px; }
  .article-nav a.prev{ border-right:1px solid var(--line); }
  .article-nav .dir{ font-size:12.5px; color:var(--ink-soft); margin-bottom:6px; }
  .article-nav .entry-title{ font-weight:700; font-size:15px; line-height:1.3; }
  .article-nav a.next{ text-align:right; }

  @media (max-width:760px){
    .article-nav{ grid-template-columns:1fr; }
    .article-nav a.prev{ border-right:none; border-bottom:1px solid var(--line); }
    .article-nav a.next{ text-align:left; }
  }


  /* ---------- simple content pages (about/privacy/contact) ---------- */
  .content-page{ max-width:720px; margin:0 auto; padding:56px 0 90px; }
  .content-page h1{ font-weight:800; font-size:clamp(28px,4vw,38px); margin:0 0 20px; letter-spacing:-0.4px; }
  .content-page h2{ font-family:'Archivo',sans-serif; font-weight:800; font-size:21px; margin:36px 0 14px; }
  .content-page p{ font-size:16px; line-height:1.75; color:var(--ink-soft); margin:0 0 20px; }
  .content-page a.inline-link{ color:var(--pine); border-bottom:1px solid var(--pine-tint); }
  .content-page a.inline-link:hover{ border-color:var(--pine); }
  .content-page .updated{ font-size:13px; color:var(--ink-soft); margin-bottom:34px; }

  /* nav active state */
  nav.primary-nav a.active{ color:var(--ink); font-weight:600; }
