:root {
  --primary:      #2563EB;
  --secondary:    #6E83AF;
  --accent:       #E6AB2A;
  --bg:           #F6F7F8;
  --text:         #171A21;
  --heading-font: 'Noto Sans', sans-serif;
  --body-font:    'Inter', sans-serif;
}

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

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

a { transition: opacity 0.15s ease; }

details[open] > summary span { transform: rotate(45deg); display: inline-block; }

/* ── WordPress resets ───────────────────────────────── */
.wp-site-blocks { padding-top: 0 !important; padding-bottom: 0 !important; }
.entry-content img { max-width: 100%; }
.alignwide { max-width: 100%; }

/* ── Nav menu ───────────────────────────────────────── */
.primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu li { display: flex; align-items: center; }
.primary-menu a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.15s ease;
}
.primary-menu a:hover { opacity: 1; }
.primary-menu .current-menu-item > a { opacity: 1; font-weight: 600; }

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.footer-menu a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.footer-menu a:hover { color: #fff; }

/* ── Form base ──────────────────────────────────────── */
input, textarea, select {
  font-family: var(--body-font);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 76,110,245), 0.12);
}

/* ── Hover cards ────────────────────────────────────── */
[data-hover-lift] {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
[data-hover-lift]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .primary-menu { display: none; }
  .site-header-inner { flex-wrap: wrap; }
}
