/* ── Material Symbols icon font default settings ─────────────────────── */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ── Bento card primitive (from Stitch design) ──────────────────────── */
.bento-card {
  background-color: #ffffff;
  border: 1px solid rgba(37, 46, 38, 0.1);
  transition: all 0.2s ease;
}
.bento-card:hover {
  border-color: #735c00;
}

/* ── Hard-shadow action button (primary CTAs) ───────────────────────── */
.action-button {
  box-shadow: 4px 4px 0px 0px #1a1c1b;
  transition: transform 0.1s, box-shadow 0.1s;
}
.action-button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #1a1c1b;
}
.action-button:hover {
  box-shadow: 6px 6px 0px 0px #1a1c1b;
  transform: translate(-1px, -1px);
}

/* ── Page baseline ──────────────────────────────────────────────────── */
html, body { height: 100%; }
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f7;
  color: #1a1c1b;
  font-family: "Inter", system-ui, sans-serif;
}
main { flex: 1 1 auto; }

::selection { background-color: #ffe088; color: #241a00; }

/* ── Smooth dropdown reveal in nav (CSS-only, no JS) ────────────────── */
nav .group:focus-within > div[class*="invisible"] {
  opacity: 1 !important;
  visibility: visible !important;
}
