/* ===== BASE RESET & VARIABLES ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0F2B46;
  --navy-light:#1B4B7A;
  --gold:#C78B37;
  --gold-dark:#A97120;
  --green:#2D8F5E;
  --txt:#1a1a1a;
  --txt-mid:#555;
  --txt-light:#888;
  --bg:#fff;
  --bg-warm:#f8f7f4;
  --bg-blue:#f0f4f8;
  --border:#e8e8e8;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--txt);-webkit-font-smoothing:antialiased;overflow-x:hidden;line-height:1.6}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
.container{max-width:1200px;margin:0 auto;padding-left:clamp(20px,4vw,64px);padding-right:clamp(20px,4vw,64px)}
