/* ══════════════════════════════════════════════════════════════════
   FollowNow Base — CSS Variables + Reset
   Extracted from the handover templates (shared across all pages)
   ══════════════════════════════════════════════════════════════════ */

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

:root{
  --bg:#FDFBF7;--cloud:#F6F3EC;--warm:#EDE8DD;
  --ink:#1C1A15;--ink2:#3D3930;--mute:#6B6560;--sub:#706862;
  --bord:rgba(28,26,21,.06);
  --g:#177D55;--gs:#E5F7EE;--gd:#127A50;--g2:rgba(23,125,85,.08);
  --peach:#FDEBD0;--peachS:#D4652E;--lav:#EDE4FC;--lavS:#7B58CF;
  --sky:#E0F0FD;--skyS:#2E7DB8;--rose:#FCE4E4;--roseS:#C44B4B;
  --amber:#FEF3C7;--amberS:#B45309;
  --serif:'Playfair Display',Georgia,serif;
  --sans:'DM Sans',system-ui,sans-serif;
  --ease:cubic-bezier(.22,1,.36,1)
}

html{background:var(--bg);color:var(--ink);font-family:var(--sans);-webkit-font-smoothing:antialiased;scroll-behavior:smooth}
body{overflow-x:hidden}
::selection{background:var(--g);color:#fff}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
