html, body { height: 100%; }
* { box-sizing: border-box; }

:root{
  --bg-top: #051229;
  --bg-bottom: #0a3d92;
  --text: #ffffff;
  --muted: #c9d4ff;
  --navy-80: rgba(5, 18, 41, .8);
  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --maxw: 1100px;
  --base: #06152e;

  --glow-x: 50%;
  --glow-y: 50%;
  color-scheme: dark;
  --brand-grad: linear-gradient(135deg,#7cc8ff,#4a8bfd 55%,#2b59ff);
}

body{
  margin: 0;
  color: var(--text);
  background: var(--base);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
               Cantarell, Noto Sans, "Helvetica Neue", Arial,
               "Apple Color Emoji", "Segoe UI Emoji";
  scroll-behavior: smooth;
}

html, body, * { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.35); }
html { scrollbar-gutter: stable; }

figure { margin: 0; }

.page-shell{ min-height: 100vh; display:flex; flex-direction:column; }
.page-shell > main{ flex: 1 0 auto; }

.bg-soft{
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

a:visited {
  color: inherit;
}

a[href^="tel"], a[href^="mailto"] {
  color: inherit;
  text-decoration: none;
}
a[href^="tel"]:hover, a[href^="mailto"]:hover {
  text-decoration: underline;
}