/* Rutland — global styles */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #0f1626;
  color: #f2ede0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.page { min-height: 100vh; display: flex; flex-direction: column; }
a { color: #c9a463; text-decoration: none; }
a:hover { color: #e5c988; }
img { max-width: 100%; }

/* SECTORS dropdown — pure CSS, no JavaScript */
.sectors-menu { position: relative; }
.sectors-dropdown {
  display: none;
  position: absolute;
  top: 26px;
  left: 0;
  background: #141c30;
  border: 1px solid #2a3450;
  padding: 10px 0;
  min-width: 230px;
  flex-direction: column;
  z-index: 20;
}
.sectors-menu:hover .sectors-dropdown,
.sectors-menu:focus-within .sectors-dropdown { display: flex; }

@media (max-width: 720px) {
  .site-header { flex-direction: column; gap: 16px; padding: 24px 24px !important; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 12px 16px !important; font-size: 11px !important; }
  section { padding-left: 24px !important; padding-right: 24px !important; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
  /* On touch/narrow screens the hover menu is unreachable; hide it and rely on the Sectors page */
  .sectors-dropdown { display: none !important; }
  .thesis-grid { grid-template-columns: 1fr !important; }
}
