@keyframes pageReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Variables ── */
:root {
  --primary: #C4161C;
  --teal:    #C4161C;
  --accent:  #FFD700;
  --text:    #1a1a1a;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
  padding-top: 68px;
  font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 30px;
}

html { scroll-behavior: smooth; }

.page-main { min-height: 60vh; }

section { width: 100%; padding: 30px 5%; }

/* ── Header & Footer font size ── */
.site-header,
.site-footer { font-size: 15px; }