/* ==========================================================================
   Design tokens dùng chung cho toàn bộ dự án (landing page + admin)
   ========================================================================== */
:root{
  /* Thương hiệu */
  --green-900:#013427;
  --green-800:#0a4536;
  --green-700:#124c3c;
  --green-050:#eef4f1;
  --gold:#c9a15a;
  --gold-dark:#a9803e;
  --amber:#e2883f;

  /* Nền / chữ */
  --cream:#faf6ee;
  --paper:#fffdf9;
  --ink:#1c211e;
  --ink-soft:#4d574f;
  --line:#e4ddcd;

  /* Bố cục */
  --radius:14px;
  --shadow:0 18px 40px -18px rgba(1,52,39,.35);
  --maxw:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream);color:var(--ink);font-family:'Be Vietnam Pro',system-ui,sans-serif;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:'Playfair Display',serif;margin:0 0 .5em;color:var(--green-900);line-height:1.18}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font-family:inherit}
